.vwalt-index-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.vwalt-index-dots-loader {
    display: flex;
    gap: 5px;
}

.vwalt-index-dots-loader span {
    width: 10px;
    height: 10px;
    background: #888888;
    border-radius: 50%;
    display: inline-block;
    animation: vwaltIndexDotsBounce 0.8s infinite alternate;
}

.vwalt-index-dots-loader span:nth-child(2) {
    animation-delay: 0.2s;
}

.vwalt-index-dots-loader span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes vwaltIndexDotsBounce {
    from {
        transform: translateY(0);
        opacity: 1;
    }
    to {
        transform: translateY(-10px);
        opacity: 0.5;
    }
}

.vwalt-index-slider {
    position: relative;
    width: 100%;
    height: 512px;
    margin: 0;
    overflow: hidden;
}

.vwalt-index-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.vwalt-index-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.vwalt-index-slide.active {
    opacity: 1;
}

.multi-color-bg-1 {
    background: linear-gradient(135deg, #6a11cb, #2575fc, #1a2980, #26d0ce);
    background-size: 200% 200%;
    animation: gradientAnimation1 15s ease infinite;
}

.multi-color-bg-2 {
    background: linear-gradient(90deg, #3a0ca3, #4361ee, #4cc9f0, #3a0ca3, #4361ee, #4cc9f0);
    background-size: 400% 400%;
    animation: gradientShift 60s ease infinite;
    position: relative;
    overflow: hidden;
}

@keyframes gradientAnimation1 {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.multi-color-bg-2::before,
.multi-color-bg-2::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 200%;
    background: radial-gradient(2px 2px at 20px 20px, white 1px, transparent 1px),
                radial-gradient(3px 3px at 50px 50px, white 1px, transparent 1px),
                radial-gradient(1px 1px at 100px 100px, white 1px, transparent 1px),
                radial-gradient(2px 2px at 150px 150px, white 1px, transparent 1px),
                radial-gradient(1px 1px at 200px 200px, white 1px, transparent 1px);
    background-size: 100px 100px;
    opacity: 0.5;
    z-index: 1;
    pointer-events: none;
}

.multi-color-bg-2::before {
    animation: starMovement 100s linear infinite;
}

.multi-color-bg-2::after {
    animation: starMovementReverse 120s linear infinite;
    opacity: 0.3;
}

@keyframes starMovement {
    from {
        transform: translate(0, 0) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes starMovementReverse {
    from {
        transform: translate(0, 0) rotate(0deg);
    }
    to {
        transform: translate(50%, 50%) rotate(-360deg);
    }
}

.vwalt-index-text {
    position: absolute;
    top: 50%;
    left: 5%;
    right: 5%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    z-index: 2;
    max-width: 100rem;
    margin: auto;
}

.vwalt-text-content {
    width: 100%;
    text-align: center;
    position: relative;
    font-size: 40px;
    margin-bottom: 40px;
    text-shadow: 2px 2px 45px rgba(0, 0, 255, 0.5);
    transform: perspective(500px) rotateX(25deg) scale(0.9);
}

.vwalt-text-content h2, .vwalt-text-content p {
    margin: 0;
    padding: 0;
}

.vwalt-text-content p {
    font-size: 28px;
}

.vwalt-icon-1 {
    width: 412px;
    height: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), 0 0 0 10px rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: pulse 10s infinite alternate ease-in-out;
    display: inline-block;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.vwalt-icon-2 {
    max-width: 412px;
    height: auto;
    display: block;
    z-index: 2;
    opacity: 0.9;
}

.vwalt-index-prev, .vwalt-index-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    padding: 0;
    background-color: rgb(255 255 255 / 30%);
    border: none;
    border-radius: 50%;
    user-select: none;
    z-index: 5;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.vwalt-index-prev::before {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    border: solid #00000080;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    margin-left: 5px;
}

.vwalt-index-next::before {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    border: solid #00000080;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    margin-right: 5px;
}

.vwalt-index-prev::before {
    transform: rotate(135deg);
}

.vwalt-index-next::before {
    transform: rotate(-45deg);
}

.vwalt-index-prev {
    left: 10px;
}

.vwalt-index-next {
    right: 10px;
}

.vwalt-index-prev:hover, .vwalt-index-next:hover {
    box-shadow: 0 2px 10px rgba(0, 0, 255, 0.5);
    background-color: rgb(255 255 255 / 70%);
}

.vwalt-index-dots {
    position: absolute;
    bottom: 10px;
    width: 100%;
    text-align: center;
}

.vwalt-index-dots .dot {
    cursor: pointer;
    height: 10px;
    width: 10px;
    margin: 0 5px;
    background-color: #00000054;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.vwalt-index-dots .dot.active {
    background-color: #dae0e8a3;
}


/* category */
.category-buttons {
    position: relative;
    display: flex;
    overflow-x: auto;
    padding: 5px 0;
    gap: 0;
    margin: 20px 10px;
    scrollbar-width: none;
    justify-content: space-between;
}

.category-buttons::-webkit-scrollbar {
    display: none;
}

.category-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
}

.category-button button {
    width: 85px;
    height: 85px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-bottom: 5px;
}

.category-button span {
    font-size: 12px;
    text-align: center;
    color: #333;
}

.scroll-background {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 5px;
    width: 60%;
    background-color: #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    display: none;
}

.scroll-indicator {
    height: 100%;
    width: 20%;
    background-color: #2575fc;
    transition: left 0.3s ease;
}

.dv-lottery button {
    background: linear-gradient(135deg, #ff7f50, #ff4500);
}

.dv-lottery:hover button {
    background: linear-gradient(135deg, #ff4500, #ff7f50);
}

.google-play button {
    background: linear-gradient(135deg, #1BE2FA, #00C3FF);
}

.google-play button:hover {
    background: linear-gradient(135deg, #00C3FF, #1BE2FA);
}

.telegram button {
    background: linear-gradient(135deg, #0088cc, #0077b5);
}

.telegram button:hover {
    background: linear-gradient(135deg, #0077b5, #0088cc);
}

.app-store button {
    background: linear-gradient(135deg, #007AFF, #00C6FF);
}

.app-store button:hover {
    background: linear-gradient(135deg, #00C6FF, #007AFF);
}

.ai button {
    background: linear-gradient(135deg, #6a0dad, #9b59b6);
}

.ai button:hover {
    background: linear-gradient(135deg, #9b59b6, #6a0dad);
}

.steam button {
    background: linear-gradient(135deg, #171A21, #4A4A4A);
}

.steam button:hover {
    background: linear-gradient(135deg, #4A4A4A, #171A21);
}

.skype button {
    background: linear-gradient(135deg, #00AFF0, #0078D7);
}

.skype button:hover {
    background: linear-gradient(135deg, #0078D7, #00AFF0);
}

.playstation button {
    background: linear-gradient(135deg, #003087, #00A4EF);
}

.playstation button:hover {
    background: linear-gradient(135deg, #00A4EF, #003087);
}

.netflix button {
    background: linear-gradient(135deg, #E50914, #FF2A68);
}

.netflix button:hover {
    background: linear-gradient(135deg, #FF2A68, #E50914);
}

.xbox button {
    background: linear-gradient(135deg, #107C10, #28A745);
}

.xbox button:hover {
    background: linear-gradient(135deg, #28A745, #107C10);
}

.pubg button {
    background: linear-gradient(135deg, #FFD700, #FF8C00);
}

.pubg button:hover {
    background: linear-gradient(135deg, #FF8C00, #FFD700);
}


/* feature */
.vwalt-index-feature-header {
    text-align: center;
    margin-top: 20px;
    padding: 0 20px;
}

.vwalt-index-feature-header h2 {
    font-size: 32px;
    color: #333;
    margin-bottom: -10px;
}

.vwalt-index-feature-header p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

.vwalt-index-feature-boxes {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 0 30px;
    margin-top: 20px;
}

.vwalt-index-feature-box {
    position: relative;
    text-align: center;
    padding: 20px;
    border: none;
    border-radius: 30px;
    background: #fff;
    box-shadow: 0px 3px 50px rgb(0 0 255 / 6%);
}

.vwalt-icon-container {
    position: relative;
    margin-bottom: 10px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 0;
}

.vwalt-icon-container::before {
    content: "";
    position: absolute;
    height: calc(100% + -60px);
    width: 35px;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: #12083e;
}

.vwalt-icon-container svg {
    width: 100px;
    height: 100px;
    z-index: 1;
}

.vwalt-index-feature-box h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.vwalt-index-feature-box p {
    font-size: 14px;
    color: #666;
    margin: 5px 0 0;
}


.vwalt-index-product-list, .vwalt-index-articles-list {
    text-align: center;
    margin-top: 40px;
}

.vwalt-index-product-header, .vwalt-index-articles-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin: 0 20px;
    padding: 20px;
}

.vwalt-index-product-header h2, .vwalt-index-articles-header h2 {
    font-size: 28px;
    color: #333;
    margin: 0;
}

.vwalt-index-view-more-button, .vwalt-index-articles-button {
    font-size: 14px;
    color: #fff;
    background: rgb(75,131,255);
    background: linear-gradient(90deg, rgba(75,131,255,1) 0%, rgba(0,99,255,1) 100%);
    padding: 10px 20px;
    border-radius: 50px;
    transition: background-color 0.3s ease;
}

.vwalt-index-view-more-button:hover, .vwalt-index-articles-button:hover {
    background: linear-gradient(-90deg, rgba(75,131,255,1) 0%, rgba(0,99,255,1) 100%);
}

.vwalt-index-products-grid, .vwalt-index-articles-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 0 30px;
}

.vwalt-index-product-item {
    border: 1px solid #e5e7ef;
    padding: 15px;
    text-align: center;
    border-radius: 15px;
    background: #fff;
    transition: all 0.8s ease;
}

.vwalt-index-product-item:hover {
    box-shadow: 0px 8px 20px rgba(0, 0, 255, 0.3);
}

.vwalt-index-product-item img {
    max-width: 100%;
    width: 100%;
    height: auto;
    border-radius: 20px;
}

.vwalt-index-product-item h3 {
    text-align: center;
    font-size: 13px;
    color: #333;
    font-weight: 500;
    margin: 0;
}


.vwalt-index-article-item {
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.8s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.vwalt-index-article-item:hover {
    transform: translateY(-5px);
    box-shadow: 0px 8px 20px rgba(0, 0, 255, 0.3);
}

.vwalt-index-article-link {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.vwalt-index-article-item img {
    max-width: 100%;
    width: 100%;
    height: 200px;
    border-radius: 10px;
    object-fit: cover;
}

.vwalt-index-article-item h3 {
    text-align: right;
    font-size: 16px;
    color: #333;
    font-weight: 500;
    margin: 0;
    padding: 10px;
}

/* FAQ style */
.vwalt-index-faq-items {
    max-width: 100%;
    margin: 0 40px;
}

.vwalt-index-faq-item {
    margin-bottom: 10px;
    position: relative;
}

.vwalt-index-faq-section {
    text-shadow: 2px 2px 45px rgba(0, 0, 255, 0.5);
}

.vwalt-index-faq-question {
    width: 100%;
    padding: 15px 0;
    text-align: right;
    font-size: 16px;
    font-weight: bold;
    color: #090071;
    background: #ffffff;
    border: none;
    cursor: pointer;
    outline: none;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}

.vwalt-index-faq-text {
    flex-grow: 1;
}

.vwalt-index-faq-arrow {
    margin-left: auto;
    width: 16px;
    height: 16px;
    background-image: url('data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%201024%201024%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20fill%3D%22%23666%22%3E%3Cpath%20d%3D%22m488.832%20344.32-339.84%20356.672a32%2032%200%200%200%200%2044.16l.384.384a29.44%2029.44%200%200%200%2042.688%200l320-335.872%20319.872%20335.872a29.44%2029.44%200%200%200%2042.688%200l.384-.384a32%2032%200%200%200%200-44.16L535.168%20344.32a32%2032%200%200%200-46.336%200z%22/%3E%3C/svg%3E');
    background-size: contain;
    background-repeat: no-repeat;
    transition: transform 0.3s;
    transform: rotate(180deg);
}

.vwalt-index-faq-question.active .vwalt-index-faq-arrow {
    transform: rotate(0deg);
}

.vwalt-index-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: #fff;
    border-bottom: 1px solid rgb(229 231 239);
    border-top: none;
    padding: 0 10px;
    text-align: right;
}

.vwalt-index-faq-answer p {
    padding: 10px 0;
    margin: 0;
    color: #555;
}


.vpindex {
    margin-bottom: 5em;
}


@media (max-width: 1024px) {
    .vwalt-index-slider {
        height: 450px;
    }

    .vwalt-icon-1, .vwalt-icon-2 {
        width: 200px;
    }

    .vwalt-text-content {
        margin-bottom: 20px;
        transform: perspective(500px) rotateX(15deg) scale(0.85);
    }
    
    .vwalt-text-hone, .vwalt-text-htwo {
        font-size: 22px;
    }
    
    .vwalt-text-content p {
        font-size: 16px;
    }

    .vwalt-index-prev, .vwalt-index-next {
        font-size: 13px;
    }

    .vwalt-index-prev::before, .vwalt-index-next::before {
        width: 8px;
        height: 8px;
    }

    .vwalt-index-text {
        flex-direction: column;
        text-align: center;
        padding: 0;
        left: 0;
        right: 0;
    }

    .vwalt-index-slide {
        background-size: 300% 300%;
    }
    
    .vwalt-index-feature-boxes {
        grid-template-columns: repeat(2, 1fr);
    }

    .vwalt-index-feature-boxes {
       padding: 10px;
    }    
 
    .vwalt-index-feature-header h2, .vwalt-index-articles-header h2, .vwalt-index-product-header h2 {
       font-size: 24px;
       color: #333;
       margin-bottom: -10px;
    }

    .vwalt-index-feature-header p {
       font-size: 13px;
       color: #666;
       margin-top: 20px;
    }
    
    .vwalt-index-product-header, .vwalt-index-articles-header {
       flex-direction: column;
    }
    
    .vwalt-index-products-grid, .vwalt-index-articles-grid {
       grid-template-columns: repeat(2, 1fr);
       gap: 10px;
       padding: 20px 10px;
    }
    
    .vwalt-index-product-item img {
       border-radius: 15px;
   }
   
   .vwalt-index-faq-items {
       margin: 0 10px;
   }
   
   .vwalt-index-faq-text, .vwalt-index-faq-answer {
       font-size: 13px;
   }
       
}

@media (max-width: 600px) {
    .vwalt-index-feature-boxes, .vwalt-index-articles-grid {
        grid-template-columns: repeat(1, 1fr); 
    }
}
