:root {
    --mirror-primary: #00C853;
    --mirror-secondary: #0067FF;
    --mirror-accent: #FF6B00;
    --mirror-text: #eeeeee;
    --mirror-title: #ffffff;
    --mirror-bg: linear-gradient(135deg, #20242d 0%, #232D4D 100%);

    --vip-platinum: #00D1C1;
    --vip-silver: #C0C0C0;
    --vip-bronze: #CD7F32;
    --vip-gold: #FFD700;
    --vip-text: #FFFFFF;
    --vip-secondary: #AAAAAA;
    --vip-accent: #0047B3;
    --vip-blue: #0047B3;
    --vip-bg: #20242D;
    --vip-border: #2D3440;
    --vip-card-bg: linear-gradient(145deg, #252B36 0%, #1A1E26 100%);
    --vip-glow: 0 0 15px rgba(0, 71, 179, 0.5);

}

.social-text, .vip-header, .vip-title {
    text-align: center
}

.mirror-btn, .social-icon, .support-button {
    text-decoration: none
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px)
    }
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes shine {
    0% {
        background-position: -200% 0
    }
    100% {
        background-position: 200% 0
    }
}

.section-wrapper {
    display: flex;
    align-items: stretch;
    width: 100%;
    height: 500px;
    gap: 20px;
    margin-bottom: 30px;
    border-radius: 5px;
    background-color: #20242d
}

.banner-container {
    flex: 1;
    animation: .8s ease-in-out forwards fadeIn;
    position: relative;
    backdrop-filter: blur(2px);
    border: 1px solid rgba(0, 103, 255, .1);
    border-radius: 12px;
    padding: 2.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0
}

.banner-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 12px;
    border: 1px solid transparent;
    background: linear-gradient(135deg, rgba(0, 103, 255, .1), rgba(0, 103, 255, 0)) border-box;
    mask-composite: exclude;
    pointer-events: none
}

.logo-container {
    margin-bottom: 1.25rem;
    height: 60px;
    display: flex;
    align-items: center
}

.register-btn, .slogan-text {
    color: #fff;
    margin-bottom: 2rem;
    font-family: Roboto, sans-serif;
    position: relative
}

.logo-img {
    height: 100%;
    width: auto;
    object-fit: contain
}

.slogan-text {
    font-size: 1.25rem;
    font-weight: 500
}

.slogan-text::after, .slogan-text::before {
    content: '✦';
    color: #0067ff;
    font-size: .8em;
    margin: 0 10px;
    opacity: .7
}

.register-btn {
    background: linear-gradient(135deg, #0067ff 0, #0052cc 100%);
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(0, 103, 255, .3);
    transition: .3s;
    overflow: hidden;
    border: none;
    z-index: 1;
    border-radius: .5rem;
    padding: .75rem 2.5rem;
    cursor: pointer
}

.register-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, .2) 50%, rgba(255, 255, 255, 0) 100%);
    transform: translateX(-100%);
    transition: transform .6s;
    z-index: -1
}

.divider {
    border-top: 1px solid rgba(0, 103, 255, .3);
    position: relative;
    padding-top: 2rem
}

.divider::after, .divider::before {
    content: '';
    position: absolute;
    top: -5px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #0067ff;
    opacity: .5
}

.divider::before {
    left: 30%
}

.divider::after {
    right: 30%
}

.social-text {
    color: #aaa;
    font-family: Roboto, sans-serif;
    font-size: .875rem;
    position: relative;
    margin-bottom: 1.5rem
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1rem
}

.social-icon {
    width: 40px;
    height: 40px;
    transition: .3s;
    color: #fff;
    background: rgba(255, 255, 255, .1);
    border-radius: 50%;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center
}

.game-image, .promo-bg {
    background-size: cover;
    background-position: center
}

.characters-container {
    flex: 1;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center
}

.characters-img {
    max-height: 100%;
    width: auto;
    object-fit: contain
}

.register-btn:hover {
    background: linear-gradient(135deg, #0052cc 0, #0047b3 100%);
    box-shadow: 0 6px 16px rgba(0, 103, 255, .4);
    animation: 1.5s infinite pulse
}

.register-btn:hover::before {
    transform: translateX(100%)
}

.cta-button:active, .register-btn:active {
    transform: scale(.98)
}

.social-icon:hover {
    transform: scale(1.1) translateY(-3px);
    background: rgba(0, 103, 255, .2);
    color: #0067ff;
    box-shadow: 0 0 10px rgba(0, 103, 255, .3)
}

.promo-bg, .promo-overlay {
    height: 100%;
    position: absolute
}

.widget-section {
    /*background-color: #fff;*/
    /*border-radius: .75rem;*/
    /*box-shadow: 0 1px 2px 0 rgba(0, 0, 0, .05);*/
    /*padding: 1.5rem;*/
    margin-bottom: 30px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 2rem
}

.accent, .tab-item:hover:not(.active) {
    color: #0067ff
}

.promo-scroller {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1.5rem;
    padding-bottom: 1rem;
    -webkit-overflow-scrolling: touch
}

.promo-scroller::-webkit-scrollbar {
    height: 6px
}

.promo-scroller::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px
}

.promo-scroller::-webkit-scrollbar-thumb {
    background: #0067ff;
    border-radius: 10px
}

.promo-scroller-item {
    flex: 0 0 calc(50% - 0.75rem);
    scroll-snap-align: start;
    position: relative;
    border-radius: .5rem;
    overflow: hidden;
    min-height: 300px
}

.promo-bg {
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1
}

.promo-overlay {
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, .6);
    z-index: 2
}

.promo-content {
    position: relative;
    z-index: 3;
    padding: 1.25rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    color: #fff
}

.vip-container {
    /*max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px*/
}

.vip-header {
    margin-bottom: 24px
}

.vip-title {
    line-height: 1.2
}

.vip-title .accent {
    color: var(--primary-color)
}

.vip-description {
    max-width: 800px;
    margin: 0 auto 32px;
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.5
}

.vip-cta {
    display: flex;
    justify-content: center;
    margin-bottom: 40px
}

.benefit-icon, .benefit-title {
    margin-bottom: 16px;
    color: #20242d
}

.cta-button {
    width: 100%;
    max-width: 300px;
    background-color: #0067ff;
    color: #fff;
    border-radius: 8px;
    padding: 14px 24px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: .2s
}

.cta-button:hover {
    background-color: #0067ff;
    transform: scale(1.02)
}

.vip-benefits {
    display: grid;
    grid-template-columns:repeat(4, 1fr);
    gap: 24px
}

.benefit-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .08);
    transition: .3s;
    opacity: 0;
    transform: translateY(20px)
}

.game-card, .game-image-container {
    position: relative;
    border-radius: .5rem
}

.benefit-card.visible {
    opacity: 1;
    transform: translateY(0)
}

.benefit-card:hover {
    box-shadow: 0 6px 16px rgba(0, 0, 0, .12)
}

.benefit-icon {
    width: 32px;
    height: 32px;
    transition: transform .3s
}

.benefit-card:hover .benefit-icon {
    transform: rotate(-2deg)
}

.benefit-title {
    font-size: 18px;
    font-weight: 700
}

.benefit-description {
    font-size: 14px;
    color: #20242d;
    line-height: 1.5
}

.divider {
    height: 1px;
    background-color: var(--divider-color);
    margin: 24px 0
}

.promo-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: .5rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, .5)
}

.promo-link, .tab-item {
    font-weight: 500;
    font-size: .875rem
}

.promo-description, .promo-subtitle {
    color: rgba(255, 255, 255, .9);
    margin-bottom: 1rem
}

.promo-description, .promo-link, .promo-subtitle {
    text-shadow: 0 1px 2px rgba(0, 0, 0, .5)
}

.promo-subtitle {
    font-size: 1rem
}

.promo-description {
    font-size: .875rem
}

.promo-link {
    color: #f97316
}

.promo-link:hover {
    color: #ea580c
}

.nav-tabs {
    margin-bottom: 20px;
}

.tabs-container {
    display: flex;
    gap: 2rem;
    border-bottom: 1px solid #e5e7eb
}

.tab-item {
    padding-bottom: .75rem;
    color: #6b7280
}

.tab-item.active {
    color: #0067ff;
    border-bottom: 2px solid #0067ff
}

.games-grid {
    display: grid;
    grid-template-columns:repeat(2, 1fr);
    gap: 1rem
}

@media (min-width: 640px) {
    .games-grid {
        grid-template-columns:repeat(3, 1fr)
    }
}

@media (min-width: 768px) {
    .games-grid {
        grid-template-columns:repeat(4, 1fr)
    }
}

@media (min-width: 1024px) {
    .games-grid {
        grid-template-columns:repeat(5, 1fr)
    }
}

.game-card {
    overflow: hidden
}

.game-image-container {
    padding-top: 100%;
    overflow: hidden
}

.game-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    transition: transform .3s
}

.game-overlay, .vip-tooltip .tooltip-text {
    opacity: 0;
    transition: opacity .3s;
    position: absolute
}

.game-overlay {
    inset: 0;
    background-color: rgba(0, 0, 0, .5);
    display: flex;
    align-items: center;
    justify-content: center
}

.game-card:hover .game-overlay {
    opacity: 1
}

.game-card:hover .game-image {
    transform: scale(1.05)
}

.new-badge {
    position: absolute;
    top: .5rem;
    right: .5rem;
    background-color: #ef4444;
    color: #fff;
    font-size: .75rem;
    padding: .25rem .5rem;
    border-radius: 9999px;
    z-index: 2
}

.mirror-feature, .support-card, .support-title, .vip-benefit, .vip-level, .vip-level-header, .vip-title, .vip-tooltip {
    position: relative
}

.game-info {
    padding: .5rem
}

.game-title {
    margin-bottom: 0;
    font-size: .875rem;
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.game-players {
    margin-bottom: 0;
    color: #6b7280;
    font-size: .75rem
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: .375rem;
    font-size: .875rem;
    font-weight: 500;
    padding: .5rem 1rem;
    transition: background-color .2s
}

.btn-secondary {
    border: 1px solid #d1d5db;
    background-color: #fff;
    color: #0067ff
}

.btn-secondary:hover {
    background-color: #f9fafb
}

.btn-primary {
    background-color: #0067ff;
    color: #fff
}

.btn-primary:hover {
    background-color: #c2410c
}

.btn-sm {
    padding: .25rem .75rem;
    font-size: .75rem
}

.btn-rounded {
    color: #000;
    border-radius: 9999px
}

.flex-icon {
    display: flex;
    align-items: flex-start
}

.icon {
    width: 1.5rem;
    height: 1.5rem;
    margin-right: .75rem;
    color: #ea580c
}

.button-group {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    margin-top: auto
}

.bonus-tier {
    display: flex;
    align-items: center;
    margin-bottom: .75rem
}

.bonus-amount {
    font-weight: 700;
    color: #f97316;
    margin-right: .5rem;
    font-size: 1.1rem
}

.bonus-condition {
    color: rgba(255, 255, 255, .9);
    font-size: .875rem
}

.hot-badge {
    background-color: #ef4444;
    color: #fff;
    font-size: .75rem;
    padding: .25rem .5rem;
    border-radius: .25rem;
    margin-left: .5rem
}

.prize-pool {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f97316;
    margin: .5rem 0
}

.scroll-indicator {
    display: flex;
    justify-content: center;
    gap: .5rem;
    margin-top: 1rem
}

.scroll-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #d1d5db;
    transition: .3s
}

.scroll-dot.active {
    background-color: #0047b3;
    width: 16px;
    border-radius: 4px
}

.mirrors-section {
    background: var(--mirror-bg);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .15)
}

.mirrors-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--mirror-title);
    margin-bottom: .5rem
}

.mirrors-subtitle {
    font-size: 16px;
    color: var(--mirror-text);
    margin-bottom: 2rem
}

.mirrors-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 1rem
}

.mirror-row {
    background-color: rgba(255, 255, 255, .05);
    border-radius: 8px;
    transition: .3s
}

.mirror-row:hover {
    background-color: rgba(255, 255, 255, .1);
    transform: translateY(-2px)
}

.mirror-cell {
    padding: 1.5rem;
    border: 0 !important;
    vertical-align: middle
}

.mirror-icon {
    width: 40px;
    height: 40px;
    transition: transform .3s
}

.mirror-row:hover .mirror-icon {
    transform: scale(1.1)
}

.mirror-name {
    font-weight: 600;
    color: #fff;
    font-size: 18px
}

.mirror-feature {
    color: var(--mirror-text);
    line-height: 1.5;
    padding-left: 1.25rem
}

.mirror-feature::before {
    content: "•";
    position: absolute;
    left: 0;
    font-size: 1.25rem;
    line-height: 1
}

.primary .mirror-feature::before {
    color: var(--mirror-primary)
}

.secondary .mirror-feature::before {
    color: var(--mirror-secondary)
}

.accent .mirror-feature::before, span.tooltip-text {
    color: var(--mirror-accent)
}

.mirror-btn {
    background: linear-gradient(135deg, #0067ff 0, #0052cc 100%);
    color: #fff;
    font-weight: 500;
    font-size: 14px;
    padding: .75rem 1.5rem;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: .3s;
    width: 200px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center
}

.primary .mirror-btn {
    background: linear-gradient(135deg, #00c853 0, #009245 100%)
}

.secondary .mirror-btn {
    background: linear-gradient(135deg, #0067ff 0, #0047b3 100%)
}

.accent .mirror-btn {
    background: linear-gradient(135deg, #ff6b00 0, #c50 100%)
}

.mirror-btn:hover {
    animation: 1.5s infinite pulse;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .3)
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1)
    }
    50% {
        transform: scale(1.05)
    }
}

@media (max-width: 1024px) {
    .content-wrapper {
        height: 450px
    }

    .mirror-cell {
        padding: 1rem
    }
}

@media (max-width: 768px) {
    .content-wrapper {
        flex-direction: column;
        height: auto;
        align-items: center
    }

    .banner-container {
        width: 100%;
        max-width: 500px;
        margin-bottom: 20px;
        padding: 1.5rem
    }

    .characters-container {
        height: 300px
    }

    .logo-container {
        height: 50px
    }

    .slogan-text {
        font-size: 1.125rem
    }

    .register-btn {
        font-size: .875rem;
        padding: .625rem 1.875rem
    }

    .vip-title {
        font-size: 24px
    }

    .vip-benefits {
        grid-template-columns:repeat(2, 1fr)
    }

    .divider {
        display: none
    }

    .promo-scroller-item {
        flex: 0 0 85%
    }

    .nav-tabs {
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch
    }

    .tabs-container {
        gap: 1rem
    }

    .mirrors-table {
        display: block
    }

    .mirror-row {
        display: grid;
        grid-template-columns:60px 1fr;
        grid-template-rows:auto auto auto auto;
        gap: .5rem;
        padding: 1rem;
        margin-bottom: 1.5rem
    }

    .mirror-cell {
        display: block;
        padding: .5rem
    }

    .mirror-cell:first-child {
        grid-row: 1/span 4;
        align-self: center
    }

    .mirror-cell:nth-child(2) {
        grid-column: 2;
        grid-row: 1;
        font-weight: 700
    }

    .mirror-cell:nth-child(3), .mirror-cell:nth-child(4), .mirror-cell:nth-child(5) {
        grid-column: 2
    }

    .mirror-cell:nth-child(6) {
        grid-column: 1/span 2;
        grid-row: 5;
        text-align: center;
        margin-top: 1rem
    }

    .mirror-btn {
        width: 100%;
        max-width: 300px;
        margin: 0 auto
    }
}

.vip-section {
    margin-bottom: 30px;
    /*max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
    width: 100%*/
}

.vip-title {
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    letter-spacing: .5px
}

.support-title::after, .vip-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--vip-accent) 0, var(--vip-platinum) 100%);
    margin: 1.5rem auto 0;
    border-radius: 2px
}

.vip-levels-container {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2rem;
    scrollbar-width: thin;
    scrollbar-color: var(--vip-accent) var(--vip-silver)
}

.vip-levels-container::-webkit-scrollbar {
    height: 8px
}

.vip-levels-container::-webkit-scrollbar-track {
    background: var(--vip-bg);
    border-radius: 10px
}

.vip-levels-container::-webkit-scrollbar-thumb {
    background-color: var(--vip-accent);
    border-radius: 10px
}

.vip-levels {
    display: inline-flex;
    gap: 1.5rem;
    min-width: max-content;
    padding-right: 1.5rem
}

.vip-level {
    background: var(--vip-card-bg);
    border: 1px solid var(--vip-border);
    border-radius: 16px;
    padding: 2rem;
    transition: .3s;
    overflow: hidden;
    width: 320px;
    flex-shrink: 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, .1)
}

.support-card::before, .vip-level::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--vip-accent) 0, var(--vip-platinum) 100%)
}

.vip-level::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, .03) 0, rgba(255, 255, 255, 0) 100%);
    pointer-events: none
}

.vip-level:hover {
    transform: translateY(-8px);
    box-shadow: var(--vip-glow)
}

.vip-level-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--vip-border)
}

.vip-level-name {
    font-weight: 500;
    font-size: 1.25rem;
    color: var(--vip-text);
    display: flex;
    align-items: center;
    white-space: nowrap
}

.vip-level-name.platinum {
    color: var(--vip-platinum);
    text-shadow: 0 0 8px rgba(0, 209, 193, .3)
}

.vip-level-name.gold {
    color: var(--vip-gold);
    text-shadow: 0 0 8px rgba(255, 215, 0, .3)
}

.vip-level-name.silver {
    color: var(--vip-silver);
    text-shadow: 0 0 8px rgba(192, 192, 192, .3)
}

.vip-level-name.bronze {
    color: var(--vip-bronze);
    text-shadow: 0 0 8px rgba(205, 127, 50, .3)
}

.vip-level-badge {
    margin-right: .75rem;
    font-size: 1.25rem
}

.vip-level-requirement {
    text-align: right
}

.vip-level-requirement-text {
    font-size: .875rem;
    color: var(--vip-secondary);
    margin-bottom: .25rem;
    white-space: nowrap
}

.vip-level-requirement-value {
    font-weight: 500;
    font-size: 1.3rem;
    color: var(--mirror-accent);
    white-space: nowrap
}

.vip-benefits1 {
    list-style: none;
    padding: 0;
    margin: 0;
    min-height: 240px
}

.vip-benefit {
    display: flex;
    align-items: center;
    margin-bottom: .875rem;
    font-size: 1rem;
    padding-left: 2rem;
    line-height: 1.4;
    white-space: nowrap;
    Color: #fff
}

.vip-benefit::before {
    content: "";
    position: absolute;
    left: 0;
    width: 1.25rem;
    height: 1.25rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%230047B3'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    margin-right: .5rem
}

.vip-benefit.inactive {
    color: var(--vip-secondary)
}

.vip-benefit.inactive::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23666E7D'%3E%3Cpath d='M19 5v14H5V5h14m0-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z'/%3E%3C/svg%3E")
}

.vip-tooltip {
    display: inline-block;
    border-bottom: 1px dotted var(--vip-blue);
    cursor: help
}

.support-card-header, .support-contact-item {
    display: flex;
    align-items: center
}

.faq-question, .support-button {
    cursor: pointer;
    font-weight: 600
}

.vip-tooltip .tooltip-text {
    visibility: hidden;
    width: 220px;
    background-color: #2d3440;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: .75rem;
    z-index: 10;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    font-size: .875rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .2);
    line-height: 1.4
}

.vip-tooltip:hover .tooltip-text {
    visibility: visible;
    opacity: 1
}

.vip-level-progress {
    height: 6px;
    background: #2d3440;
    border-radius: 3px;
    margin-top: 1.5rem;
    overflow: hidden
}

.vip-level-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--vip-accent) 0, var(--vip-platinum) 100%);
    border-radius: 3px;
    position: relative
}

.vip-level-progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, .1) 0, rgba(255, 255, 255, 0) 100%)
}

.support-section {
    margin-bottom: 30px;
    /*max-width: 1200px;
    margin: 0 auto;
    width: 100%*/
}

.support-title {
    font-weight: 700;
    font-size: 2.5rem;
    /*color: var(--vip-accent);*/
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: .5px
}

.support-card-content, .support-card-header {
    margin-bottom: 1.5rem
}

.support-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center
}

.support-card {
    background: var(--vip-card-bg);
    border: 1px solid var(--vip-border);
    border-radius: 16px;
    padding: 2rem;
    width: 100%;
    max-width: 550px;
    transition: .3s;
    overflow: hidden
}

.support-card-icon {
    font-size: 2rem;
    margin-right: 1rem;
    color: var(--vip-accent)
}

.support-card-title {
    font-weight: 600;
    font-size: 1.5rem;
    color: var(--vip-text)
}

.support-card-description {
    color: var(--vip-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6
}

.support-contact-item {
    margin-bottom: 1rem
}

.support-contact-icon {
    font-size: 1.25rem;
    margin-right: .75rem;
    color: var(--vip-accent);
    width: 24px;
    text-align: center
}

.support-contact-text {
    color: var(--vip-text)
}

.support-contact-time {
    font-size: .875rem;
    color: var(--vip-secondary);
    margin-top: .25rem
}

.support-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .75rem 1.5rem;
    background: linear-gradient(90deg, var(--vip-accent) 0, var(--vip-platinum) 100%);
    color: #fff;
    border-radius: 8px;
    transition: .3s;
    border: none;
    margin-top: .5rem
}

.support-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 71, 179, .3)
}

.support-button i {
    margin-right: .5rem
}

.faq-item {
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--vip-border);
    padding-bottom: 1.5rem
}

.faq-question {
    font-size: 1.1rem;
    color: var(--vip-text);
    margin-bottom: .75rem;
    display: flex;
    justify-content: space-between;
    align-items: center
}

.faq-question::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: .9rem;
    transition: transform .3s
}

.faq-item.active .faq-question::after {
    transform: rotate(180deg)
}

.faq-answer {
    color: var(--vip-secondary);
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s
}

.faq-item.active .faq-answer {
    max-height: 200px
}

@media (max-width: 768px) {
    .support-title, .vip-title {
        font-size: 2rem
    }

    .vip-level {
        width: 280px;
        padding: 1.5rem
    }

    .vip-benefits {
        min-height: 220px
    }

    .support-card {
        padding: 1.5rem
    }

    .support-card-title {
        font-size: 1.25rem
    }
}

@media (max-width: 480px) {
    .logo-container {
        height: 40px
    }

    .slogan-text {
        font-size: 1rem
    }

    .social-icon {
        width: 36px;
        height: 36px;
        padding: 6px
    }

    .divider::after, .divider::before {
        width: 8px;
        height: 8px
    }

    .characters-container {
        height: 250px
    }

    .vip-benefits {
        grid-template-columns:1fr
    }

    .cta-button {
        max-width: 100%
    }

    .mirror-icon {
        width: 32px;
        height: 32px
    }

    .mirror-name {
        font-size: 16px
    }

    .mirror-feature {
        font-size: 14px
    }

    .support-title, .vip-title {
        font-size: 1.75rem
    }

    .vip-level {
        width: 260px;
        padding: 1.25rem
    }

    .vip-benefit {
        font-size: .875rem;
        padding-left: 1.75rem
    }

    .support-card {
        padding: 1.25rem
    }

    .support-card-icon {
        font-size: 1.5rem
    }
}