@font-face {
    font-family: 'Druk Wide Cyr';
    src: url('/fonts/Druk Wide Cyr.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Halvar Breitschrift';
    src: url('/fonts/Halvar-Breitschrift-Regular-Demo.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

.vip-page {
    margin: 0 auto;
    padding: 0 40px;
}

.vip-cashback-banner {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 24px;
    padding: 30px 32px;
    border-radius: 18px;
    background: linear-gradient(135deg, #AA076B 0%, #61045F 100%);
    box-shadow: 0 24px 44px rgba(97, 4, 95, 0.28);
    overflow: hidden;
    position: relative;
}

.vip-cashback-banner::before,
.vip-cashback-banner::after {
    content: '';
    position: absolute;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    pointer-events: none;
}

.vip-cashback-banner::before {
    width: 220px;
    height: 220px;
    top: -110px;
    right: 180px;
}

.vip-cashback-banner::after {
    width: 320px;
    height: 320px;
    right: -140px;
    bottom: -170px;
}

.vip-cashback-main,
.vip-cashback-art {
    position: relative;
    z-index: 1;
}

.vip-cashback-main {
    display: flex;
    flex: 1 1 auto;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    min-width: 0;
}

.vip-cashback-copy {
    max-width: 520px;
}

.vip-cashback-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    margin-bottom: 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.94);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.vip-cashback-copy h3 {
    margin: 0 0 8px;
    color: #fff;
    font-size: 32px;
    font-weight: 800;
    line-height: 1.05;
}

.vip-cashback-copy p {
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 15px;
    line-height: 1.55;
}

.vip-cashback-copy .vip-tooltip-trigger {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
}

.vip-cashback-copy .vip-tooltip-trigger:hover {
    background: rgba(255, 255, 255, 0.28);
}

.vip-cashback-actions {
    display: flex;
    align-items: stretch;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.vip-cashback-claim-btn {
    min-width: 152px;
    padding: 0 26px;
    border: none;
    border-radius: 14px;
    background: #fff;
    color: #1A1A1A;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
    box-shadow: 0 16px 32px rgba(15, 15, 20, 0.22);
}

.vip-cashback-claim-btn:hover:not(:disabled) {
    transform: translateY(-1px);
}

.vip-cashback-claim-btn.is-loading,
.vip-cashback-claim-btn.is-disabled,
.vip-cashback-claim-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

.vip-cashback-stat {
    min-width: 190px;
    padding: 16px 18px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.vip-cashback-stat-label {
    display: block;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.vip-cashback-stat strong {
    display: block;
    color: #fff;
    font-size: 24px;
    font-weight: 800;
    line-height: 1.15;
}

.vip-cashback-stat-note {
    display: block;
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 12px;
    line-height: 1.45;
}

.vip-cashback-art {
    flex: 0 0 240px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vip-cashback-art-image {
    display: block;
    width: 100%;
    max-width: 240px;
    height: auto;
    object-fit: contain;
}

.vip-cashback-art-fallback {
    position: relative;
    width: 220px;
    height: 180px;
}

.vip-cashback-art-ring {
    position: absolute;
    inset: 16px 28px;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    transform: rotate(-11deg);
}

.vip-cashback-art-ring.ring-small {
    inset: 44px 56px;
    transform: rotate(14deg);
    opacity: 0.7;
}

.vip-cashback-art-chip {
    position: absolute;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 74px;
    height: 74px;
    padding: 0 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 0.02em;
    box-shadow: 0 12px 24px rgba(33, 10, 37, 0.18);
}

.vip-cashback-art-chip.chip-top {
    top: 4px;
    left: 18px;
    transform: rotate(-12deg);
}

.vip-cashback-art-chip.chip-mid {
    top: 48px;
    right: 16px;
    transform: rotate(10deg);
}

.vip-cashback-art-chip.chip-bottom {
    left: 76px;
    bottom: 6px;
    transform: rotate(-5deg);
}

.vip-header {
    display: flex;
    align-items: center;
    position: relative;
    gap: 30px;
    margin-bottom: 40px;
    padding: 40px 36px;
    background-color: var(--background-navbar);
    background-size: cover;
    background-position: center calc(60% + 45px);
    background-repeat: no-repeat;
    border-radius: 10px;
    overflow: hidden;
    min-height: 200px;
}

.vip-header-overlay {
    position: absolute;
    inset: 0;
    background: transparent;
    z-index: 1;
    pointer-events: none;
}

.vip-header-left {
    position: relative;
    z-index: 2;
    flex: 0 1 55%;
    min-width: 0;
}

@media (max-width: 768px) {
    .vip-header {
        flex-direction: column;
        padding: 30px 20px;
    }
    .vip-header-overlay {
        background: transparent;
    }
    .vip-header-left {
        flex: 1;
    }
}

.vip-header-icon {
    flex-shrink: 0;
}

.vip-crown-icon {
    width: 64px;
    height: 64px;
    object-fit: contain;
    filter: drop-shadow(0 0 12px rgba(178, 95, 78, 0.5));
}

.vip-header-text {
    text-align: left;
    width: 100%;
}

.vip-header-text h2 {
    font-family: 'Druk Wide Cyr', sans-serif;
    font-size: 55px;
    font-weight: 900;
    color: #fff;
    margin: 0 0 6px 0;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.8);
    text-stroke: 1px rgba(255, 255, 255, 0.8);
}

.vip-header-text p {
    font-size: 15px;
    color: #fff;
    margin: 0;
}

.h2-vip {
    color: #ffffff;
}

.vip-levels {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

@media (max-width: 768px) {
    .vip-levels {
        grid-template-columns: 1fr;
    }
}

.vip-level-card {
    background: #0B0B0F;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.vip-level-card:hover {
    transform: translateY(-2px);
    border-color: rgba(178, 95, 78, 0.3);
}

.vip-level-badge {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 24px;
    position: relative;
}

.vip-level-badge.bronze {
    background: linear-gradient(135deg, rgba(205, 127, 50, 0.15), rgba(205, 127, 50, 0.05));
}

.vip-level-badge.silver {
    background: linear-gradient(135deg, rgba(192, 192, 192, 0.15), rgba(192, 192, 192, 0.05));
}

.vip-level-badge.gold {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 215, 0, 0.05));
}

.vip-level-badge.diamond {
    background: linear-gradient(135deg, rgba(185, 242, 255, 0.15), rgba(185, 242, 255, 0.05));
}

.vip-level-crown {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.vip-level-badge.bronze .vip-level-crown {
    filter: sepia(1) saturate(2) hue-rotate(-10deg) brightness(0.8);
}

.vip-level-badge.silver .vip-level-crown {
    filter: saturate(0) brightness(1.5);
}

.vip-level-badge.gold .vip-level-crown {
    filter: sepia(1) saturate(3) hue-rotate(15deg) brightness(1.1);
}

.vip-level-badge.diamond .vip-level-crown {
    filter: sepia(1) saturate(2) hue-rotate(160deg) brightness(1.3);
}

.vip-level-name {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
}

.vip-level-info {
    padding: 20px 24px;
}

.vip-level-requirement {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.vip-req-label {
    font-size: 13px;
    color: #6D7285;
}

.vip-req-value {
    font-size: 14px;
    font-weight: 600;
    color: var(--main-color, #B25F4E);
}

.vip-perks {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.vip-perks li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #9CA3AF;
}

.vip-perk-icon {
    color: var(--main-color, #B25F4E);
    font-weight: 700;
    font-size: 12px;
    flex-shrink: 0;
}

.top-nav a.vip-nav-link {
    display: flex;
    align-items: center;
    gap: 4px;
    background: linear-gradient(135deg, rgba(178, 95, 78, 0.2), rgba(178, 95, 78, 0.08));
    border: none !important;
    border-radius: 10px;
    padding: 6px 12px 6px 6px;
    transition: all 0.2s ease;
    overflow: visible;
}

.top-nav li:has(.vip-nav-link) {
    overflow: visible;
}

.top-nav a.vip-nav-link {
    background: linear-gradient(to right, #FD746C80, #FF906880) !important;
    border-color: transparent !important;
}

.top-nav a.vip-nav-link:hover {
    background: linear-gradient(to right, #FD746C80, #FF906880) !important;
    border-color: transparent !important;
}

.top-nav a.vip-nav-link:hover .vip-nav-crown {
    transform: rotate(-15deg) scale(1.15);
}

.top-nav a.vip-nav-link.isActive {
    background: linear-gradient(to right, #FD746C80, #FF906880) !important;
    border-color: transparent !important;
}

.top-nav a.vip-nav-link span {
    font-family: 'Druk Wide Cyr', sans-serif;
    color: #FFE5DF !important;
    font-weight: 600 !important;
    font-size: 11px;
    letter-spacing: 0.5px;
    opacity: 1 !important;
    transition: color .3s ease, transform .3s ease;
    display: inline-block;
}

.top-nav a.vip-nav-link:hover span {
    color: #fff !important;
    transform: translateX(4px);
}

.vip-nav-crown {
    width: 58px;
    height: 58px;
    object-fit: contain;
    margin: -20px -2px -20px -6px;
    transform: rotate(-10deg);
    transition: transform .3s ease, opacity .3s ease;
}

.sidebar-nav-link.sidebar-vip-link {
    position: relative;
}

.sidebar-nav-link.sidebar-vip-link .sidebar-nav-text {
    color: #F5C563;
    font-weight: 600;
}

.vip-progress-block {
    width: 100%;
    margin: 20px 0 0;
    background: rgba(22, 25, 34, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 10px;
    padding: 20px 24px;
}

@media (max-width: 768px) {
    .vip-progress-block {
        width: 100%;
    }
}

.vip-progress-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.vip-progress-level {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.vip-progress-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
}

.vip-next-badge {
    opacity: 0.7;
}

.vip-progress-exp {
    text-align: center;
    flex: 1;
}

.vip-progress-exp span {
    color: #6D7285;
    font-size: 13px;
    font-weight: 600;
}

.vip-progress-next {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.vip-progress-max {
    color: #22c55e;
    font-size: 11px;
    font-weight: 600;
    white-space: nowrap;
}

.vip-progress-tooltip-wrap {
    position: relative;
    cursor: pointer;
}

.vip-progress-tooltip {
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) scale(0.95) translateY(4px);
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: #18181b;
    font-size: 12px;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 6px;
    white-space: nowrap;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    animation: vip-tooltip-out 0.15s ease forwards;
}

.vip-progress-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: #fff;
}

.vip-progress-tooltip-wrap:hover .vip-progress-tooltip {
    opacity: 1;
    visibility: visible;
    animation: vip-tooltip-in 0.15s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.vip-progress-tooltip-wrap .vip-progress-tooltip {
    color: #18181b;
}

.vip-progress-bar-wrapper {
    width: 100%;
}

.vip-progress-bar {
    width: 100%;
    height: 14px;
    background: #202430;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.vip-progress-fill {
    height: 100%;
    border-radius: 10px;
    background: linear-gradient(90deg, #CC6651, #e8856f);
    transition: width 0.5s ease;
    min-width: 4px;
    position: relative;
    overflow: hidden;
}

.vip-progress-fill::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(
        -45deg,
        rgba(255, 255, 255, 0.15) 25%,
        transparent 25%,
        transparent 50%,
        rgba(255, 255, 255, 0.15) 50%,
        rgba(255, 255, 255, 0.15) 75%,
        transparent 75%,
        transparent
    );
    background-size: 24px 24px;
    animation: vip-stripes 1.5s linear infinite;
}

@keyframes vip-stripes {
    from { background-position: 0 0; }
    to { background-position: -24px 0; }
}

.vip-steps {
    display: flex;
    align-items: center;
    max-width: 900px;
    margin: 0 auto 15px;
    padding: 0 30px;
}

.vip-step-node {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.vip-step-icon {
    width: 32px;
    height: 32px;
}

.vip-step-line {
    flex: 1;
    height: 4px;
    background: #2a2d3a;
    border-radius: 2px;
    overflow: hidden;
    margin: 0 4px;
}

.vip-step-line-fill {
    height: 100%;
    background: #22c55e;
    border-radius: 2px;
    transition: width 0.5s ease;
}

.vip-cards-grid {
    display: flex;
    gap: 12px;
    margin-bottom: 40px;
    justify-content: center;
    overflow: visible;
}

.vip-cards-grid .vip-card {
    flex: 1 1 0;
    max-width: 260px;
    min-width: 0;
}

.vip-card {
    background: #16161D;
    border-radius: 10px;
    overflow: visible;
    padding: 30px 18px 28px;
    text-align: center;
    transition: border-color 0.2s ease;
}

.vip-card-active {
    border-color: transparent;
    position: relative;
}

.vip-card-active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 12px solid #22c55e;
    z-index: 2;
}

.vip-card-title {
    font-size: 18px;
    font-weight: 800;
    font-style: italic;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.vip-title-bronze  { color: #CD7F32; }
.vip-title-platinum { color: #B0B8C8; }
.vip-title-master  { color: #5EC4E8; }
.vip-title-elite   { color: #8BDD3C; }

.vip-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 10px;
    margin: 0 auto 18px;
    position: relative;
    overflow: visible;
}
.vip-card-icon-img {
    position: absolute;
    width: 100px;
    height: 100px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: contain;
    pointer-events: none;
    z-index: 1;
}
.vip-icon-bronze   { background: linear-gradient(135deg, #CD7F32, #a16133); }
.vip-icon-platinum { background: linear-gradient(135deg, #B0B8C8, #8a94a8); }
.vip-icon-master   { background: linear-gradient(135deg, #5EC4E8, #3a9ec0); }
.vip-icon-elite    { background: linear-gradient(135deg, #8BDD3C, #5fa020); }

.vip-card-xp {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 2px;
}

.vip-card-xp-label {
    font-size: 12px;
    color: #6D7285;
    margin-bottom: 16px;
}

.vip-card-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.06);
    margin-bottom: 16px;
}

.vip-card-perks {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
}

.vip-card-perks li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
}

.vip-perk-active {
    color: #d1d5db;
}
.vip-perk-active .vip-perk-check {
    color: #22c55e;
    font-weight: 700;
    font-size: 11px;
    flex-shrink: 0;
}

.vip-perk-inactive {
    color: #3b3f4d;
}
.vip-perk-inactive .vip-perk-check {
    color: #3b3f4d;
    font-weight: 700;
    font-size: 11px;
    flex-shrink: 0;
}

.vip-card-locked {
    opacity: 0.5;
}

.vip-card-top.lvl-0,
.vip-progress-badge.lvl-0 {
    background: linear-gradient(135deg, #4a5568, #718096);
}

.vip-card-top.lvl-1,
.vip-progress-badge.lvl-1 {
    background: linear-gradient(135deg, #a16e47, #c4915e);
}

.vip-card-top.lvl-2,
.vip-progress-badge.lvl-2 {
    background: linear-gradient(135deg, #7b7fa8, #a5a9d0);
}

.vip-card-top.lvl-3,
.vip-progress-badge.lvl-3 {
    background: linear-gradient(135deg, #3a9ec0, #5ec4e8);
}

.vip-card-top.lvl-4,
.vip-progress-badge.lvl-4 {
    background: linear-gradient(135deg, #5fa020, #8bdd3c);
}


@keyframes vip-tooltip-in {
    from {
        opacity: 0;
        transform: translateX(-50%) scale(0.95) translateY(4px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) scale(1) translateY(0);
    }
}

@keyframes vip-tooltip-out {
    from {
        opacity: 1;
        transform: translateX(-50%) scale(1) translateY(0);
    }
    to {
        opacity: 0;
        transform: translateX(-50%) scale(0.95) translateY(4px);
    }
}

.vip-perk-tooltip-wrap {
    display: inline;
    position: relative;
}

.vip-tooltip-trigger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #9CA3AF;
    font-size: 10px;
    font-weight: 700;
    cursor: pointer;
    position: relative;
    margin-left: 4px;
    vertical-align: middle;
    transition: background 0.15s, color 0.15s;
}

.vip-tooltip-trigger:hover {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
}

.vip-tooltip-text {
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) scale(0.95) translateY(4px);
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: #18181b;
    font-size: 12px;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 6px;
    white-space: nowrap;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    animation: vip-tooltip-out 0.15s ease forwards;
}

.vip-tooltip-text::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: #fff;
}

.vip-tooltip-trigger:hover .vip-tooltip-text {
    opacity: 1;
    visibility: visible;
    animation: vip-tooltip-in 0.15s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.vip-tooltip-box {
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) scale(0.95) translateY(4px);
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    padding: 8px;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    animation: vip-tooltip-out 0.15s ease forwards;
}

.vip-tooltip-box::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: #fff;
}

.vip-tooltip-img-trigger:hover .vip-tooltip-box {
    opacity: 1;
    visibility: visible;
    animation: vip-tooltip-in 0.15s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.vip-tooltip-preview {
    display: block;
    max-width: 200px;
    border-radius: 6px;
}

.vip-earn-section {
    margin-bottom: 40px;
}

.vip-earn-wrapper {
    background: var(--background-navbar, #161922);
    border-radius: 10px;
    padding: 30px;
}

.vip-earn-title {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 20px 0;
    text-align: center;
}

.vip-earn-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
@media (max-width: 480px) {
    .vip-earn-grid {
        grid-template-columns: 1fr;
    }
}

.vip-earn-card {
    background: #202430;
    border-radius: 10px;
    padding: 24px 20px;
    text-align: center;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.vip-earn-card:hover {
    transform: translateY(-2px);
    border-color: rgba(178, 95, 78, 0.25);
}

.vip-earn-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(204, 102, 81, 0.12);
    border-radius: 10px;
    color: #CC6651;
}

.vip-earn-name {
    font-size: 15px;
    color: #fff;
    margin-bottom: 8px;
}

.vip-earn-desc {
    font-size: 13px;
    color: #6D7285;
    line-height: 1.5;
}

.vip-daily-section {
    margin-top: 40px;
}

.vip-daily-wrapper {
    background: var(--background-navbar, #161922);
    border-radius: 10px;
    padding: 36px 32px;
    overflow: hidden;
}

.vip-daily-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 28px;
}

.vip-daily-title {
    font-size: 42px;
    font-weight: 900;
    line-height: 1;
    color: #CC6651;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.vip-daily-title span {
    color: #fff;
}

.vip-daily-subtitle {
    font-size: 13px;
    color: #6D7285;
    margin: 12px 0 0 0;
    line-height: 1.5;
}

.dr-row {
    display: flex;
    align-items: stretch;
    gap: 0;
    margin-bottom: 0;
}

.dr-row-label {
    writing-mode: vertical-lr;
    transform: rotate(180deg);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 14px 6px;
    border-radius: 10px;
    min-width: 36px;
    justify-content: center;
    flex-shrink: 0;
}

.dr-label-basic {
    background: linear-gradient(to top, #16a34a, #22c55e);
    color: #fff;
}
.dr-label-premium {
    background: linear-gradient(to top, #7c3aed, #a855f7);
    color: #fff;
}

.dr-cards {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
    flex: 1;
    margin-left: 10px;
}

.dr-card {
    background: #151829;
    border: 2px solid rgba(255,255,255,0.06);
    border-radius: 10px;
    padding: 14px 8px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    transition: border-color 0.3s, box-shadow 0.3s, transform 0.25s, background 0.3s;
}

.dr-card-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.dr-card.dr-done {
    border-color: rgba(34,197,94,0.35);
    background: linear-gradient(160deg, rgba(34,197,94,0.08) 0%, #151829 100%);
}
.dr-card.dr-done .dr-bar { background: #22c55e; }

.dr-card.dr-active {
    border-color: rgba(34,197,94,0.8);
    background: linear-gradient(160deg, rgba(34,197,94,0.12) 0%, #151829 100%);
    box-shadow: 0 0 20px rgba(34,197,94,0.18);
    transform: translateY(-2px);
}
.dr-card.dr-active .dr-bar { background: #22c55e; }
.dr-card.dr-active .dr-xp { color: #4ade80; }

.dr-card-premium.dr-active {
    border-color: rgba(168,85,247,0.8);
    background: linear-gradient(160deg, rgba(168,85,247,0.12) 0%, #151829 100%);
    box-shadow: 0 0 20px rgba(168,85,247,0.18);
}
.dr-card-premium.dr-active .dr-bar { background: #a855f7; }
.dr-card-premium.dr-active .dr-xp { color: #c084fc; }

.dr-card-premium.dr-done {
    border-color: rgba(168,85,247,0.35);
    background: linear-gradient(160deg, rgba(168,85,247,0.08) 0%, #151829 100%);
}
.dr-card-premium.dr-done .dr-bar { background: #a855f7; }

.dr-card.dr-locked {
    opacity: 0.5;
}
.dr-card.dr-locked .dr-xp { color: #4a4f65; }

.dr-check {
    position: absolute;
    top: 7px;
    right: 7px;
    width: 20px;
    height: 20px;
    background: #22c55e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}
.dr-check-premium { background: #a855f7; }

.dr-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dr-xp {
    font-size: 13px;
    font-weight: 700;
    color: #F5A623;
    white-space: nowrap;
}
.dr-card-premium .dr-xp { color: #c084fc; }
.dr-card-premium.dr-locked .dr-xp { color: #4a4f65; }

.dr-bar {
    width: 50%;
    height: 4px;
    border-radius: 2px;
    background: #2a2e42;
    margin-top: 10px;
    transition: background 0.3s;
}

.dr-steps {
    display: flex;
    align-items: center;
    gap: 0;
    margin: 16px 0 16px 46px;
}

.dr-step-label {
    font-size: 12px;
    font-weight: 700;
    color: #6D7285;
    text-transform: uppercase;
    letter-spacing: 1px;
    flex-shrink: 0;
    margin-right: 10px;
}

.dr-step-track {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
    flex: 1;
    align-items: center;
}

.dr-step-cell {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.dr-step-cell::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 50%;
    width: calc(100% + 10px);
    height: 3px;
    background: #2a2e42;
    transform: translateY(-50%);
    z-index: 0;
    border-radius: 2px;
}

.dr-step-cell:first-child::before {
    display: none;
}

.dr-step-cell.dr-cell-done::before {
    background: #CC6651;
}

.dr-step-num {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: #1e2236;
    border: 2px solid #2a2e42;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: #4a4f65;
    flex-shrink: 0;
    transition: all 0.3s;
    position: relative;
    z-index: 1;
}

.dr-step-num.dr-step-done {
    background: #CC6651;
    border-color: #CC6651;
    color: #fff;
}

.dr-step-num.dr-step-active {
    background: #CC6651;
    border-color: #CC6651;
    color: #fff;
    box-shadow: 0 0 14px rgba(204,102,81,0.4);
}

.vip-daily-claim-btn {
    display: block;
    width: 100%;
    margin-top: 28px;
    padding: 16px 0;
    border: none;
    border-radius: 10px;
    background: linear-gradient(135deg, #f97316, #ec4899, #a855f7);
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.15s, box-shadow 0.25s;
    box-shadow: 0 4px 24px rgba(236, 72, 153, 0.25);
}

.vip-daily-claim-btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
    box-shadow: 0 6px 32px rgba(236, 72, 153, 0.35);
}

.vip-daily-claim-btn:active {
    transform: translateY(0) scale(0.98);
}

.vip-daily-claim-btn.claimed,
.vip-daily-claim-btn:disabled {
    background: linear-gradient(135deg, #374151, #4b5563);
    color: #9ca3af;
    cursor: not-allowed;
    box-shadow: none;
    opacity: 0.7;
    transform: none;
}

@media (max-width: 680px) {
    .dr-cards {
        grid-template-columns: repeat(3, 1fr);
    }
    .vip-daily-wrapper {
        padding: 20px 14px;
    }
    .vip-daily-title {
        font-size: 28px;
    }
    .dr-steps {
        margin-left: 0;
        flex-wrap: wrap;
    }
    .vip-daily-claim-btn {
        font-size: 15px;
        padding: 14px 0;
    }
}

@media (max-width: 420px) {
    .dr-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

.vip-faq-section {
    margin-bottom: 40px;
}

.vip-faq-wrapper {
    width: 100%;
}

.vip-faq-title {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 20px 0;
    text-align: left;
}

.vip-faq-list {
    display: flex;
    flex-direction: column;
    background: #16161D;
    border-radius: 12px;
    overflow: hidden;
}

.vip-faq-item {
    background: transparent;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    overflow: hidden;
    transition: background 0.15s ease;
}

.vip-faq-item:last-child {
    border-bottom: none;
}

.vip-faq-item.vip-faq-open {
}

.vip-faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    cursor: pointer;
    user-select: none;
    transition: background 0.15s ease;
}

.vip-faq-item:hover {
    background: rgba(255,255,255,0.02);
}

.vip-faq-question:hover {
    background: transparent;
}

.vip-faq-question span {
    font-size: 15px;
    font-weight: 500;
    color: #e5e7eb;
    line-height: 1.5;
}

.vip-faq-arrow {
    flex-shrink: 0;
    color: #6D7285;
    transition: transform 0.2s ease;
}

.vip-faq-open .vip-faq-arrow {
    transform: rotate(180deg);
}

.vip-faq-answer {
    overflow: hidden;
    transition: height 0.2s ease-out;
    height: 0;
}

.vip-faq-answer-inner {
    padding: 0 20px 16px;
}

.vip-faq-open .vip-faq-answer {
}

.vip-faq-answer p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #9CA3AF;
}


.vip-exp-mobile { display: none; }

@media (max-width: 820px) {
    .vip-page {
        padding: 0 16px;
    }

    .vip-cashback-banner {
        flex-direction: column;
        gap: 20px;
        padding: 22px 18px;
    }

    .vip-cashback-main {
        flex-direction: column;
        align-items: stretch;
    }

    .vip-cashback-copy h3 {
        font-size: 28px;
    }

    .vip-cashback-copy p {
        font-size: 14px;
    }

    .vip-cashback-actions {
        justify-content: stretch;
    }

    .vip-cashback-claim-btn,
    .vip-cashback-stat {
        width: 100%;
    }

    .vip-cashback-claim-btn {
        min-height: 54px;
    }

    .vip-cashback-art {
        flex-basis: auto;
        min-height: 140px;
    }

    .vip-header {
        min-height: 140px;
        padding: 20px 16px;
        background-position: center center;
        background-size: cover;
    }

    .vip-header-text h2 {
        font-size: 32px;
    }

    .vip-header-text p {
        font-size: 13px;
    }

    .vip-exp-desktop { display: none; }
    .vip-exp-mobile {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2px;
    }
    .vip-exp-mobile-label {
        color: #6D7285;
        font-size: 12px;
        font-weight: 600;
    }
    .vip-exp-mobile-value {
        color: #fff;
        font-size: 14px;
        font-weight: 700;
    }

    .vip-steps {
        display: none;
    }

    .vip-cards-grid {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-bottom: 40px;
    }

    .vip-cards-grid .vip-card {
        max-width: none;
        flex: none;
        box-sizing: border-box;
    }

    .vip-cards-grid.vip-carousel-ready {
        position: relative;
        overflow: hidden;
        display: block;
    }

    .vip-carousel-ready .vip-card {
        position: absolute;
        top: 0;
        left: 0;
        width: 78%;
        transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                    opacity 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        will-change: transform, opacity;
    }

    .vip-carousel-ready .vip-card.vip-slide-center {
        z-index: 3;
        opacity: 1;
        pointer-events: auto;
    }

    .vip-carousel-ready .vip-card.vip-slide-left {
        z-index: 2;
        opacity: 0.45;
        pointer-events: none;
    }

    .vip-carousel-ready .vip-card.vip-slide-right {
        z-index: 2;
        opacity: 0.45;
        pointer-events: none;
    }

    .vip-carousel-ready .vip-card.vip-slide-hidden {
        z-index: 1;
        opacity: 0;
        pointer-events: none;
    }
}
