
.faq-page {
    margin: 0 auto;
    padding: 30px 45px;
    width: 100%;
    position: relative;
    animation: none !important;
}

.faq-support-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 20px;
}
.faq-support-card {
    height: 240px;
    border-radius: 16px;
    padding: 32px 28px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}
.faq-support-card.online {
    background: linear-gradient(90deg, #673AB7 0%, #512DA8 100%);
}
.faq-support-card.telegram {
    background: linear-gradient(90deg, #396AFC 0%, #2948FF 100%);
}
.faq-support-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    max-width: 55%;
    position: relative;
    z-index: 1;
}
.faq-support-title {
    font-family: 'Druk Wide Cyr', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 10px;
    letter-spacing: 0.3px;
}
.faq-support-desc {
    font-size: 13px;
    color: rgba(255,255,255,0.70);
    margin: 0 0 20px;
    line-height: 1.5;
}
.faq-support-btn {
    width: 170px;
    height: 40px;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.15s, transform 0.1s;
    white-space: nowrap;
    flex-shrink: 0;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.faq-support-btn:active {
    transform: scale(0.96);
}
.faq-support-btn.online {
    background: #fff;
    color: #0F0F14;
}
.faq-support-btn.online:hover {
    opacity: 0.9;
}
.faq-support-btn.telegram {
    background: #fff;
    color: #0F0F14;
}
.faq-support-btn.telegram:hover {
    opacity: 0.9;
}
.faq-support-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: calc(50% - 15px) center;
    pointer-events: none;
    z-index: 0;
}

@keyframes faqShimmer {
    0% { background-position: -400px 0; }
    100% { background-position: 400px 0; }
}

.faq-skeleton {
    position: relative;
    z-index: 2;
    transition: opacity 170ms ease;
}

.faq-skeleton-hide {
    opacity: 0;
}

.faq-skeleton-title {
    width: 220px;
    height: 28px;
    border-radius: 8px;
    margin-bottom: 18px;
    background: linear-gradient(90deg, #23243a 25%, #2e2f4a 50%, #23243a 75%);
    background-size: 800px 100%;
    animation: faqShimmer 1.2s infinite ease-in-out;
}

.faq-skeleton-item {
    width: 100%;
    height: 52px;
    border-radius: 10px;
    margin-bottom: 10px;
    background: linear-gradient(90deg, #23243a 25%, #2e2f4a 50%, #23243a 75%);
    background-size: 800px 100%;
    animation: faqShimmer 1.2s infinite ease-in-out;
}

.faq-skeleton-item:nth-child(2) { animation-delay: 0.1s; }
.faq-skeleton-item:nth-child(3) { animation-delay: 0.2s; }
.faq-skeleton-item:nth-child(4) { animation-delay: 0.3s; }
.faq-skeleton-item:nth-child(5) { animation-delay: 0.4s; }
.faq-skeleton-item:nth-child(6) { animation-delay: 0.5s; }

#faqContent {
    transition: opacity 170ms ease;
}

.faq-page .vip-faq-section {
    margin-bottom: 0;
}

.faq-top-tabs {
    display: flex;
    align-items: center;
    height: 55px;
    padding: 0 8px;
    background: #16161D;
    border-radius: 14px;
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 16px;
    position: relative;
}

.faq-tab-slider {
    position: absolute;
    height: 39px;
    background: #85FF83;
    border-radius: 10px;
    transition: left .35s cubic-bezier(.4,0,.2,1), width .35s cubic-bezier(.4,0,.2,1);
    z-index: 0;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    left: 8px;
    width: calc((100% - 16px) / var(--faq-tab-count, 4));
}

.faq-top-tab {
    flex: 1;
    height: 55px;
    border: none;
    background: transparent;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255,255,255,0.50);
    cursor: pointer;
    transition: color .25s ease;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    z-index: 1;
    padding: 0;
}

.faq-top-tab:hover {
    color: rgba(255,255,255,0.75);
}

.faq-top-tab.active {
    color: #0F0F14;
    background: transparent;
}

@media (max-width: 768px) {
    .faq-page {
        padding: 20px 16px;
    }
    .faq-skeleton {
        top: 20px;
        left: 16px;
        right: 16px;
    }
    .faq-support-row {
        grid-template-columns: 1fr;
    }
    .faq-support-card {
        height: 200px;
        padding: 24px 20px;
    }
    .faq-support-text {
        max-width: 55%;
    }
    .faq-support-img {
        left: auto;
        right: 0;
        width: auto;
        height: 100%;
        object-fit: contain;
        object-position: right center;
    }
    .faq-top-tabs {
        overflow-x: auto;
        padding: 0 6px;
        height: 55px;
        margin-bottom: 12px;
    }
    .faq-top-tab {
        font-size: 13px;
        height: 55px;
        min-width: 0;
    }
    .faq-top-tab.active {
        height: 37px;
    }
}

@media (max-width: 480px) {
    .faq-support-card {
        height: 180px;
        padding: 20px 16px;
    }
    .faq-support-title {
        font-size: 16px;
        margin-bottom: 6px;
    }
    .faq-support-desc {
        font-size: 12px;
        margin-bottom: 14px;
        line-height: 1.4;
    }
    .faq-support-btn {
        width: 140px;
        height: 36px;
        font-size: 13px;
    }
}