/* ===== Druk Wide Cyr Font ===== */
@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;
}

/* ===== VIP Page ===== */
.vip-page {
    /*max-width: 900px;*/
    margin: 0 auto;
    padding: 0 40px;
}

.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 Grid */
.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 */
.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 */
.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 */
.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 */
.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;
}

/* ===== VIP Nav Button (top-nav) ===== */
.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:hover {
    background: linear-gradient(135deg, rgba(178, 95, 78, 0.35), rgba(178, 95, 78, 0.15));
    border-color: transparent !important;
}

.top-nav a.vip-nav-link:hover .vip-nav-crown {
    transform: rotate(-15deg) scale(1.05);
}

.top-nav a.vip-nav-link.isActive {
    background: linear-gradient(135deg, rgba(178, 95, 78, 0.35), rgba(178, 95, 78, 0.15));
    border-color: transparent !important;
}

.top-nav a.vip-nav-link span {
    font-family: 'Druk Wide Cyr', sans-serif;
    color: #F5C563 !important;
    font-weight: 600 !important;
    font-size: 11px;
    letter-spacing: 0.5px;
    opacity: 1 !important;
}

.vip-nav-crown {
    width: 50px;
    height: 50px;
    object-fit: contain;
    margin: -16px -2px -16px -4px;
    transform: rotate(-10deg);
    transition: transform 0.2s ease;
}

/* ===== VIP Sidebar Link ===== */
.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 ===== */
.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-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;
    top: 0;
    left: -50px;
    bottom: 0;
    width: calc(100% + 100px);
    background: repeating-linear-gradient(
        -55deg,
        transparent,
        transparent 6px,
        rgba(255, 255, 255, 0.15) 6px,
        rgba(255, 255, 255, 0.15) 12px
    );
    animation: vip-stripes 3s linear infinite;
}

@keyframes vip-stripes {
    0% { transform: translateX(0); }
    100% { transform: translateX(21px); }
}

/* ===== VIP Cards Grid (centered, 4 cards) ===== */
.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: #0B0B0F;
    border-radius: 10px;
    overflow: visible;
    padding: 30px 18px 28px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: border-color 0.2s ease;
}

.vip-card-active {
    border-color: rgba(255, 255, 255, 0.12);
}

/* Level title — italic, colored per level */
.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; }

/* Colored rank icon square */
.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); }

/* XP threshold — large centered number */
.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;
}

/* Active perk — green check, white text */
.vip-perk-active {
    color: #d1d5db;
}
.vip-perk-active .vip-perk-check {
    color: #22c55e;
    font-weight: 700;
    font-size: 11px;
    flex-shrink: 0;
}

/* Inactive perk — gray check, dim text */
.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;
}

/* Gradient backgrounds for progress badges */
.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);
}

/* ===== VIP Tooltips (shadcn-style) ===== */

@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;
}

/* Tooltip with image (prefix preview) */
.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;
}

/* ===== How to earn XP ===== */
.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: 900px) {
    .vip-earn-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@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;
}

/* ===== Daily Rewards ===== */
.vip-daily-section {
    margin-top: 40px;
}

.vip-daily-wrapper {
    background: var(--background-navbar, #161922);
    border-radius: 10px;
    padding: 36px 32px;
    overflow: hidden;
}

/* Header */
.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;
}

/* ---- Row layout ---- */
.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;
}

/* ---- Card ---- */
.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;
}

/* Done */
.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; }

/* Active / current */
.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; }

/* Premium active */
.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; }

/* Locked */
.dr-card.dr-locked {
    opacity: 0.5;
}
.dr-card.dr-locked .dr-xp { color: #4a4f65; }

/* Check badge */
.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; }

/* Icon */
.dr-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* XP label */
.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; }

/* Bottom colored bar */
.dr-bar {
    width: 50%;
    height: 4px;
    border-radius: 2px;
    background: #2a2e42;
    margin-top: 10px;
    transition: background 0.3s;
}

/* ---- Day Progress Bar ---- */
.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;
}

/* Connecting lines via pseudo-elements */
.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);
}

/* ---- Claim Button ---- */
.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;
}

/* ---- Responsive ---- */
@media (max-width: 1000px) {
    .dr-cards {
        grid-template-columns: repeat(4, 1fr);
    }
}

@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 Accordion ===== */
.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;
    gap: 8px;
}

.vip-faq-item {
    background: #16161D;
    border-radius: 10px;
    border: none;
    overflow: hidden;
    transition: background 0.15s ease;
}

.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: #101016;
}

.vip-faq-question:hover {
    background: rgba(255, 255, 255, 0.03);
}

.vip-faq-question span {
    font-size: 14px;
    font-weight: 600;
    color: #d1d5db;
}

.vip-faq-arrow {
    flex-shrink: 0;
    color: #6D7285;
    transition: transform 0.25s ease;
}

.vip-faq-open .vip-faq-arrow {
    transform: rotate(180deg);
}

.vip-faq-answer {
    overflow: hidden;
    transition: height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    height: 0;
}

.vip-faq-answer-inner {
    padding: 10px 20px 16px;
}

.vip-faq-open .vip-faq-answer {
    /* height set by JS */
}

.vip-faq-answer p {
    margin: 0;
    font-size: 13px;
    line-height: 1.6;
    color: #9CA3AF;
}

/* ===== VIP Mobile Responsive ===== */
@media (max-width: 820px) {
    .vip-page {
        padding: 0 16px;
    }

    .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-cards-grid {
        display: flex;
        gap: 12px;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding-bottom: 8px;
    }

    .vip-cards-grid::-webkit-scrollbar {
        display: none;
    }

    .vip-cards-grid .vip-card {
        flex: 0 0 85%;
        max-width: 85%;
        scroll-snap-align: center;
    }
}
