/* ============================================
   MAXDROP - Original MaxDrop Theme
   Dark premium with cyan/purple gradients
   ============================================ */

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Original MaxDrop Colors */
    --font-base: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-pixel: 'Press Start 2P', cursive;
    --bg-dark: #0a1628;
    --bg-darker: #0f1f38;
    --bg-card: #1a2f4d;
    --bg-card-light: #213a5c;
    --cyan: #00d4ff;
    --cyan-dark: #0099cc;
    --purple: #7c3aed;
    --gold: #ffd700;
    --gold-dark: #cc9900;
    --green: #22c55e;
    --green-light: #10b981;
    --text: #ffffff;
    --text-muted: #8b9cb8;
    --text-dim: #5a6b85;
    --border: rgba(255,255,255,0.05);
    --border-light: rgba(255,255,255,0.1);
    --glow-cyan: rgba(0,212,255,0.3);
    --glow-purple: rgba(124,58,237,0.3);
    --glow-gold: rgba(255,215,0,0.25);
    --gradient-primary: linear-gradient(135deg, #00d4ff 0%, #7c3aed 100%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-base);
    background: var(--bg-dark);
    color: var(--text);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Hide scrollbars but keep scrolling */
html, body {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
    width: 0;
    height: 0;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    outline: none;
}

/* ============================================
   FLOATING BACKGROUND ICONS (like LuxDrop's brand watermarks)
   ============================================ */
.bg-floaters {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.floater {
    position: absolute;
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 120px;
    color: rgba(255,255,255,0.015);
    transform: rotate(-15deg);
    user-select: none;
}

.f1 { top: 5%; left: 5%; font-size: 180px; }
.f2 { top: 25%; right: 10%; font-size: 140px; }
.f3 { top: 50%; left: 8%; font-size: 100px; }
.f4 { top: 70%; right: 5%; font-size: 160px; }
.f5 { bottom: 15%; left: 20%; font-size: 120px; }
.f6 { bottom: 5%; right: 25%; font-size: 90px; }

/* ============================================
   HEADER
   ============================================ */
.lux-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: linear-gradient(180deg, rgba(10,22,40,0.98), rgba(10,22,40,0.95));
    border-bottom: 1px solid rgba(0,212,255,0.15);
    backdrop-filter: blur(12px);
}

.header-inner {
    max-width: 100%;
    margin: 0;
    padding: 0 8px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
}

.lux-logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.lux-logo .logo-icon {
    display: block;
    width: 48px;
    height: 48px;
}

.footer-brand .logo-icon {
    display: none;
}

.lux-logo .logo-text {
    font-family: var(--font-pixel);
    font-size: 22px;
    letter-spacing: 2.5px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px var(--glow-cyan);
}

.lux-nav {
    display: flex;
    align-items: center;
    gap: 0;
    margin-left: 4px;
}

.nav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 12px 14px;
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.2s;
    border-radius: 8px;
}

.nav-link:hover {
    color: var(--text);
    background: rgba(255,255,255,0.05);
}

.nav-link .nav-icon {
    width: 26px;
    height: 26px;
    opacity: 0.7;
}

.nav-link:hover .nav-icon {
    opacity: 1;
}

.nav-link.vip-link {
    color: var(--gold);
}

.nav-link.vip-link .nav-icon {
    opacity: 1;
    color: var(--gold);
}

.header-auth {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
}

.btn-signup {
    padding: 12px 24px;
    background: var(--gradient-primary);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    border-radius: 8px;
    transition: transform 0.15s, box-shadow 0.15s;
    box-shadow: 0 4px 20px var(--glow-cyan);
}

.btn-signup:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 30px var(--glow-cyan);
}

/* Attention-grabbing glow animation for Sign Up button */
@keyframes signupGlow {
    0% {
        box-shadow: 0 0 50px rgba(0,212,255,0.9), 0 0 80px rgba(124,58,237,0.7);
        transform: scale(1.06);
    }
    8% {
        box-shadow: 0 0 40px rgba(0,212,255,0.75), 0 0 60px rgba(124,58,237,0.55);
        transform: scale(1.04);
    }
    16% {
        box-shadow: 0 4px 20px var(--glow-cyan);
        transform: scale(1);
    }
    100% {
        box-shadow: 0 4px 20px var(--glow-cyan);
        transform: scale(1);
    }
}

.btn-signup.glow-attention {
    animation: signupGlow 3s ease-in-out infinite;
}

.btn-login {
    padding: 12px 20px;
    background: transparent;
    color: var(--text);
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    transition: background 0.15s;
}

.btn-login:hover {
    background: rgba(255,255,255,0.08);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    background: transparent;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: 0.2s;
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    top: 70px;
    background: rgba(10,22,40,0.98);
    z-index: 99;
    padding: 24px;
}

.mobile-nav-overlay.active {
    display: block;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mobile-nav a {
    display: block;
    padding: 16px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-muted);
    border-radius: 8px;
    transition: all 0.2s;
}

.mobile-nav a:hover {
    background: rgba(255,255,255,0.05);
    color: var(--text);
}

.mobile-nav-auth {
    display: flex;
    gap: 12px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.mobile-nav-auth .btn-signup,
.mobile-nav-auth .btn-login {
    flex: 1;
    text-align: center;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    position: relative;
    z-index: 1;
    padding: 60px 24px 40px;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto 48px;
}

.hero-crown {
    margin-bottom: 24px;
}

.hero-crown svg {
    width: 60px;
    height: 50px;
    filter: drop-shadow(0 4px 20px var(--glow-cyan));
}

.hero-title {
    font-family: var(--font-pixel);
    font-size: clamp(28px, 4.6vw, 52px);
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 16px;
    color: var(--text);
    letter-spacing: 2px;
    text-shadow: 0 0 24px rgba(0, 212, 255, 0.35);
}

.hero-title .hero-highlight {
    display: inline-block;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Hero Carousel */
.hero-carousel {
    max-width: 900px;
    margin: 0 auto;
}

.carousel-wrapper {
    position: relative;
    background: linear-gradient(180deg, var(--bg-card-light) 0%, var(--bg-card) 100%);
    border-radius: 16px;
    padding: 32px 24px 24px;
    border: 1px solid rgba(0,212,255,0.2);
    margin-bottom: 24px;
}

.carousel-pointer {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 14px solid transparent;
    border-right: 14px solid transparent;
    border-bottom: 14px solid var(--cyan);
    filter: drop-shadow(0 0 8px var(--glow-cyan));
}

.carousel-track {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

.carousel-item {
    width: 140px;
    height: 120px;
    background: rgba(255,255,255,0.03);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    transition: transform 0.3s, border-color 0.3s;
}

.carousel-item .item-emoji {
    font-size: 56px;
    filter: grayscale(0.2);
}

.carousel-item img {
    max-width: 80px;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(0.2) drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

.carousel-item.featured {
    width: 160px;
    height: 140px;
    background: rgba(0,212,255,0.1);
    border-color: rgba(0,212,255,0.4);
    transform: scale(1.05);
    box-shadow: 0 0 20px var(--glow-cyan);
}

.carousel-item.featured .item-emoji {
    font-size: 68px;
    filter: none;
}

.carousel-item.featured img {
    max-width: 100px;
    max-height: 100px;
    filter: none;
    filter: drop-shadow(0 4px 12px rgba(0,212,255,0.4));
}

.btn-try-me {
    padding: 16px 64px;
    background: var(--gradient-primary);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    border-radius: 10px;
    transition: transform 0.15s, box-shadow 0.15s;
    box-shadow: 0 4px 20px var(--glow-cyan);
}

.btn-try-me:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--glow-cyan);
}

/* ============================================
   SIGNUP SECTION
   ============================================ */
.signup-section {
    padding: 40px 24px 60px;
    text-align: center;
}

.btn-signup-large {
    width: 100%;
    max-width: 400px;
    padding: 18px;
    background: rgba(255,255,255,0.08);
    border: 1px solid var(--border-light);
    color: var(--text);
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    margin-bottom: 20px;
    transition: background 0.2s, border-color 0.2s;
}

.btn-signup-large:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.2);
}

.social-logins {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 28px;
}

.social-btn {
    width: 80px;
    height: 50px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, border-color 0.2s;
}

.social-btn:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.2);
}

.social-btn svg {
    width: 24px;
    height: 24px;
}

.social-btn.steam svg {
    fill: #1b2838;
    color: #66c0f4;
}

.trust-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    font-size: 14px;
}

.trust-text {
    color: var(--text);
    font-weight: 600;
}

.trust-stars {
    display: flex;
    gap: 2px;
}

.trust-stars .star {
    color: #00b67a;
    font-size: 16px;
}

.trust-stars .star.half {
    background: linear-gradient(90deg, #00b67a 50%, var(--text-dim) 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.trust-reviews {
    color: var(--text-muted);
}

.trust-brand {
    color: #00b67a;
    font-weight: 600;
}

/* ============================================
   SECTION STYLING
   ============================================ */
section {
    position: relative;
    z-index: 1;
    padding: 80px 24px;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 16px;
}

.section-icon {
    font-size: 32px;
}

.section-header h2 {
    font-family: var(--font-pixel);
    font-size: clamp(18px, 3.2vw, 28px);
    font-weight: 400;
    letter-spacing: 1px;
    color: var(--text);
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 16px;
    max-width: 700px;
    margin: 0 auto 48px;
    line-height: 1.7;
}

/* ============================================
   HOW IT WORKS SECTION
   ============================================ */
.how-section {
    background: var(--bg-dark);
}

.steps-grid {
    max-width: 1100px;
    margin: 0 auto 48px;
    display: flex;
    flex-direction: column;
    gap: 64px;
}

.step-item {
    display: grid;
    grid-template-columns: auto 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.step-item.reverse {
    grid-template-columns: 1fr auto 1fr;
}

.step-number {
    width: 80px;
    height: 80px;
    background: rgba(0,212,255,0.1);
    border: 2px solid var(--cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: 800;
    color: var(--cyan);
    box-shadow: 0 0 20px var(--glow-cyan);
}

.step-content h3 {
    font-family: var(--font-pixel);
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 8px;
    color: var(--text);
}

.step-content h3.subtitle {
    color: var(--cyan);
    font-family: var(--font-pixel);
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.step-content p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.7;
}

.step-highlight {
    color: var(--cyan) !important;
    font-weight: 500;
    margin-top: 8px;
}

.step-visual {
    position: relative;
}

/* Mock Cards in Steps */
.mock-signup-card,
.mock-spin-card,
.mock-items-card {
    background: linear-gradient(180deg, var(--bg-card-light) 0%, var(--bg-card) 100%);
    border-radius: 16px;
    padding: 20px;
    border: 1px solid rgba(0,212,255,0.2);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.mock-input {
    background: rgba(255,255,255,0.05);
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 10px;
    color: var(--text-dim);
    font-size: 13px;
}

.mock-btn {
    background: var(--gradient-primary);
    color: #fff;
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    font-weight: 700;
    font-size: 14px;
    margin-top: 8px;
}

.floating-icons {
    position: absolute;
    top: -20px;
    right: -30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.floating-icons .fi {
    width: 44px;
    height: 44px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}

.mock-spin-card .spin-header {
    background: var(--cyan);
    color: #000;
    padding: 8px;
    border-radius: 8px 8px 0 0;
    text-align: center;
    font-weight: 700;
    font-size: 12px;
    margin: -20px -20px 16px;
}

.mock-spin-card .spin-items {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 16px;
}

.mock-spin-card .spin-items span {
    font-size: 36px;
}

.mock-spin-card .spin-items img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.3));
}

.mock-spin-card .spin-btn {
    background: rgba(255,255,255,0.1);
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    font-size: 13px;
    color: var(--text-muted);
}

.mock-items-card .items-header {
    color: var(--text-dim);
    font-size: 12px;
    text-align: center;
    margin-bottom: 16px;
}

.mock-items-card .items-grid {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.mock-items-card .item-box {
    flex: 1;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    padding: 16px 8px;
    text-align: center;
    font-size: 32px;
    position: relative;
}

.mock-items-card .item-box img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.3));
}

.mock-items-card .item-box span {
    display: block;
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 8px;
}

.mock-items-card .items-actions {
    display: flex;
    gap: 8px;
}

.mock-items-card .action-btn {
    flex: 1;
    padding: 10px 8px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 600;
    text-align: center;
}

.mock-items-card .action-btn.cyan {
    background: var(--cyan);
    color: #000;
}

.mock-items-card .action-btn.green {
    background: var(--green);
    color: #fff;
}

/* ============================================
   REWARDS SECTION
   ============================================ */
.rewards-section {
    background: var(--bg-darker);
}

.rewards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto 48px;
}

.reward-card {
    background: linear-gradient(180deg, var(--bg-card-light) 0%, var(--bg-card) 100%);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.reward-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0,212,255,0.4);
    box-shadow: 0 0 30px var(--glow-cyan);
}

.reward-icon {
    font-size: 56px;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 12px var(--glow-cyan));
}

.reward-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text);
}

.reward-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats-section {
    background: var(--bg-dark);
}

.big-stat {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-bottom: 48px;
}

.laurel {
    font-size: 48px;
    opacity: 0.7;
}

.laurel.right {
    transform: scaleX(-1);
}

.stat-content {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: clamp(36px, 6vw, 56px);
    font-family: var(--font-pixel);
    font-weight: 400;
    letter-spacing: 1px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    display: block;
    color: var(--cyan);
    font-size: 18px;
    font-weight: 600;
    margin-top: 8px;
}

.stats-grid {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-icon {
    display: block;
    font-size: 32px;
    margin-bottom: 12px;
    color: var(--cyan);
}

.stat-number {
    display: block;
    font-family: var(--font-pixel);
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 1px;
    color: var(--text);
    margin-bottom: 4px;
}

.stat-text {
    color: var(--text-muted);
    font-size: 14px;
}

/* ============================================
   BOXES SECTION
   ============================================ */
.boxes-section {
    background: var(--bg-darker);
}

.boxes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.box-card {
    position: relative;
    background: linear-gradient(180deg, var(--bg-card-light) 0%, var(--bg-card) 100%);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 28px 24px;
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
    overflow: hidden;
}

.box-glow {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.box-card:hover {
    transform: translateY(-8px);
}

.box-card.bronze:hover {
    border-color: rgba(205,127,50,0.5);
    box-shadow: 0 0 50px rgba(205,127,50,0.45),
                0 0 90px rgba(205,127,50,0.25),
                0 18px 40px rgba(0,0,0,0.45);
}

.box-card.silver:hover {
    border-color: rgba(192,192,192,0.5);
    box-shadow: 0 0 50px rgba(192,192,192,0.45),
                0 0 90px rgba(192,192,192,0.25),
                0 18px 40px rgba(0,0,0,0.45);
}

.box-card.gold:hover {
    border-color: rgba(255,215,0,0.5);
    box-shadow: 0 0 55px rgba(255,215,0,0.5),
                0 0 100px rgba(255,215,0,0.3),
                0 18px 40px rgba(0,0,0,0.45);
}

.box-card.platinum:hover {
    border-color: rgba(167,139,250,0.5);
    box-shadow: 0 0 55px rgba(167,139,250,0.5),
                0 0 100px rgba(167,139,250,0.3),
                0 18px 40px rgba(0,0,0,0.45);
}

.box-card.featured {
    border-color: rgba(255,215,0,0.3);
    box-shadow: 0 0 30px rgba(255,215,0,0.15);
    transform: scale(1.02);
}

.box-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.box-popular {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: #fff;
    padding: 6px 16px;
    font-size: 10px;
    font-weight: 800;
    border-radius: 0 0 8px 8px;
}

.box-badge {
    font-family: var(--font-pixel);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
    padding-top: 8px;
}

.box-card.bronze .box-badge { color: #cd7f32; }
.box-card.silver .box-badge { color: #c0c0c0; }
.box-card.gold .box-badge { color: var(--gold); }
.box-card.platinum .box-badge {
    background: linear-gradient(135deg, #e5e4e2, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.box-icon {
    font-size: 64px;
    margin-bottom: 16px;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
}

.box-price {
    font-family: var(--font-pixel);
    font-size: 38px;
    font-weight: 400;
    letter-spacing: 1px;
    color: var(--text);
    margin-bottom: 20px;
}

.box-price span {
    font-family: var(--font-pixel);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.5px;
    color: var(--text-muted);
}

.box-prizes {
    list-style: none;
    margin-bottom: 24px;
}

.box-prizes li {
    padding: 8px 0;
    color: var(--text-muted);
    font-size: 14px;
    border-bottom: 1px solid var(--border);
}

.box-prizes li:last-child {
    border-bottom: none;
}

.box-btn {
    width: 100%;
    padding: 14px;
    background: rgba(255,255,255,0.08);
    border: 1px solid var(--border-light);
    color: var(--text);
    font-size: 14px;
    font-weight: 700;
    border-radius: 10px;
    transition: all 0.2s;
}

.box-card:hover .box-btn {
    background: var(--gradient-primary);
    border-color: var(--cyan);
    color: #fff;
    box-shadow: 0 4px 20px var(--glow-cyan);
}

/* ============================================
   DEPOSIT SECTION
   ============================================ */
.deposit-section {
    padding: 40px 24px 80px;
    background: var(--bg-dark);
}

.deposit-card {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(180deg, var(--bg-card-light) 0%, var(--bg-card) 100%);
    border: 1px solid rgba(0,212,255,0.2);
    border-radius: 24px;
    padding: 48px 40px;
    text-align: center;
}

.deposit-card h2 {
    font-family: var(--font-pixel);
    font-size: 22px;
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.deposit-card > p {
    color: var(--text-muted);
    margin-bottom: 32px;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.pay-icon {
    width: 56px;
    height: 56px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: #333;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

.pay-icon.btc { background: #f7931a; color: #fff; }
.pay-icon.eth { background: #627eea; color: #fff; }
.pay-icon.usdt { background: #26a17b; color: #fff; }

/* ============================================
   CTA BUTTON (Cyan/Purple Gradient)
   ============================================ */
.btn-cta-gold {
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    max-width: 100%;
    margin: 0 auto;
    padding: 18px 48px;
    background: var(--gradient-primary);
    color: #fff;
    font-size: 16px;
    font-weight: 800;
    border-radius: 12px;
    transition: transform 0.15s, box-shadow 0.15s;
    box-shadow: 0 4px 20px var(--glow-cyan);
}

.btn-cta-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--glow-cyan);
}

.how-section .btn-cta-gold,
.rewards-section .btn-cta-gold {
    margin: 0 auto;
}

/* ============================================
   FOOTER
   ============================================ */
.lux-footer {
    background: var(--bg-darker);
    border-top: 1px solid var(--border);
    padding: 48px 24px 32px;
}

.footer-top {
    max-width: 1200px;
    margin: 0 auto 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0;
}

.footer-brand .logo-text {
    font-family: var(--font-pixel);
    font-size: 14px;
    letter-spacing: 2px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 13px;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--text);
}

.footer-trust {
    display: flex;
    align-items: center;
    gap: 8px;
}

.trust-stars-footer {
    display: flex;
    gap: 2px;
}

.trust-stars-footer span {
    color: #00b67a;
    font-size: 18px;
}

.trust-stars-footer span.half {
    opacity: 0.5;
}

.trustpilot-text {
    color: var(--text-muted);
    font-size: 13px;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
}

.social-icon {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: background 0.2s, border-color 0.2s;
}

.social-icon:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.2);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.age-badge {
    width: 40px;
    height: 40px;
    border: 2px solid var(--text-dim);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: var(--text-dim);
    flex-shrink: 0;
}

.footer-bottom p {
    color: var(--text-dim);
    font-size: 12px;
    max-width: 600px;
}

/* ============================================
   MODALS
   ============================================ */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(4px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    width: 100%;
    max-width: 420px;
    background: linear-gradient(180deg, var(--bg-card-light) 0%, var(--bg-card) 100%);
    border: 1px solid rgba(0,212,255,0.3);
    border-radius: 20px;
    padding: 36px 32px;
    position: relative;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s;
    box-shadow: 0 0 40px var(--glow-cyan);
}

.modal-overlay.active .modal {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    color: var(--text-muted);
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.modal-close:hover {
    background: rgba(255,255,255,0.15);
    color: var(--text);
}

.modal-title {
    font-family: var(--font-pixel);
    font-size: 20px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 8px;
    letter-spacing: 1px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.modal-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 28px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.form-group input {
    width: 100%;
    padding: 14px 16px;
    background: rgba(0,0,0,0.3);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text);
    font-size: 15px;
    transition: border-color 0.2s;
}

.form-group input:focus {
    border-color: var(--cyan);
    outline: none;
}

.form-group input::placeholder {
    color: var(--text-dim);
}

.form-error {
    color: #ef4444;
    font-size: 13px;
    text-align: center;
    margin-bottom: 16px;
    min-height: 20px;
}

.btn {
    padding: 14px 24px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    transition: all 0.2s;
}

.btn-primary {
    background: var(--gradient-primary);
    color: #fff;
    box-shadow: 0 4px 20px var(--glow-cyan);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px var(--glow-cyan);
}

.btn-full {
    width: 100%;
}

.modal-footer-text {
    text-align: center;
    color: var(--text-muted);
    font-size: 14px;
    margin-top: 20px;
}

.modal-footer-text a {
    color: var(--cyan);
    font-weight: 600;
}

.modal-footer-text a:hover {
    text-decoration: underline;
}

/* ============================================
   AUTH MODAL (LuxDrop Style)
   ============================================ */
.auth-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.auth-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.auth-modal {
    width: 100%;
    max-width: 900px;
    background: linear-gradient(180deg, #1a2d4a 0%, #0f1f38 100%);
    border: 1px solid rgba(0,212,255,0.2);
    border-radius: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    position: relative;
    transform: scale(0.95) translateY(20px);
    transition: transform 0.3s;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.auth-modal-overlay.active .auth-modal {
    transform: scale(1) translateY(0);
}

.auth-modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: var(--text-muted);
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    z-index: 10;
}

.auth-modal__close:hover {
    background: rgba(255,255,255,0.2);
    color: var(--text);
}

/* Left Side - Branding */
.auth-modal__left {
    background: linear-gradient(180deg, #1a3050 0%, #0a1628 100%);
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.auth-brand {
    margin-bottom: 32px;
}

.auth-brand__logo {
    font-family: var(--font-pixel);
    font-size: 24px;
    letter-spacing: 2px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 12px;
}

.auth-brand__tagline {
    color: var(--text-muted);
    font-size: 14px;
}

.auth-promo {
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 12px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

.auth-promo__icon {
    font-size: 32px;
    background: #22c55e;
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-promo__text {
    font-size: 14px;
    color: var(--text);
    line-height: 1.5;
}

.auth-promo__text .highlight {
    color: #22c55e;
    font-weight: 700;
}

.auth-hero-img {
    position: relative;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-hero-glow {
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0,212,255,0.3) 0%, transparent 70%);
    border-radius: 50%;
}

.auth-hero-items {
    display: flex;
    gap: 16px;
    position: relative;
    z-index: 1;
}

.auth-hero-items .hero-item {
    font-size: 48px;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
    animation: float 3s ease-in-out infinite;
}

/* Image-based hero items */
img.hero-item {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.auth-hero-items .hero-item:nth-child(2) { animation-delay: 0.5s; }
.auth-hero-items .hero-item:nth-child(3) { animation-delay: 1s; }
.auth-hero-items .hero-item:nth-child(4) { animation-delay: 1.5s; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Right Side - Form */
.auth-modal__right {
    padding: 40px;
    background: linear-gradient(180deg, #1a2d4a 0%, #0f1f38 100%);
}

.auth-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 28px;
}

.auth-tab {
    flex: 1;
    padding: 14px;
    background: transparent;
    border: 1px solid var(--border-light);
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.2s;
}

.auth-tab:hover {
    border-color: rgba(0,212,255,0.3);
    color: var(--text);
}

.auth-tab.active {
    background: rgba(0,212,255,0.1);
    border-color: var(--cyan);
    color: var(--text);
}

.auth-form .form-group {
    margin-bottom: 16px;
}

.auth-form .form-group label {
    color: var(--text-muted);
    font-size: 13px;
    margin-bottom: 6px;
}

.auth-form .form-group input {
    background: rgba(0,0,0,0.4);
    border: 1px solid var(--border-light);
    padding: 12px 16px;
    font-size: 14px;
}

.password-input-wrap {
    position: relative;
}

.password-input-wrap input {
    padding-right: 48px;
}

.password-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    color: var(--text-dim);
    font-size: 18px;
    padding: 4px;
    opacity: 0.6;
    transition: opacity 0.2s;
}

.password-toggle:hover {
    opacity: 1;
}

.auth-checkboxes {
    margin: 20px 0;
}

.auth-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 13px;
    color: var(--text-muted);
}

.auth-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--cyan);
    flex-shrink: 0;
}

.auth-checkbox span strong {
    color: #ef4444;
}

.auth-checkbox a {
    color: var(--cyan);
}

.affiliate-input {
    width: 100%;
    padding: 10px 14px;
    background: rgba(0,0,0,0.4);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    color: var(--text);
    font-size: 13px;
    margin-top: 8px;
}

.auth-submit {
    width: 100%;
    padding: 16px;
    background: rgba(255,255,255,0.08);
    border: 1px solid var(--border-light);
    color: var(--text-muted);
    font-size: 16px;
    font-weight: 600;
    border-radius: 10px;
    margin-bottom: 24px;
    transition: all 0.2s;
}

.auth-submit:hover {
    background: var(--gradient-primary);
    border-color: var(--cyan);
    color: #fff;
    box-shadow: 0 4px 20px var(--glow-cyan);
}

.auth-divider {
    text-align: center;
    position: relative;
    margin-bottom: 20px;
}

.auth-divider::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 1px;
    background: var(--border-light);
}

.auth-divider span {
    background: #1a2d4a;
    padding: 0 16px;
    position: relative;
    color: var(--text-dim);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.auth-social {
    display: flex;
    gap: 12px;
}

.auth-social .social-btn {
    flex: 1;
    padding: 14px;
    background: rgba(0,212,255,0.1);
    border: 1px solid rgba(0,212,255,0.3);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.auth-social .social-btn svg {
    width: 24px;
    height: 24px;
}

.auth-social .social-btn:hover {
    background: rgba(0,212,255,0.2);
    border-color: var(--cyan);
}

/* Logged In Header Styles */
.header-logged-in {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-icon-btn {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 18px;
    transition: all 0.2s;
    position: relative;
}

.header-icon-btn:hover {
    background: rgba(255,255,255,0.1);
    color: var(--text);
}

.header-icon-btn.gift-btn {
    background: #22c55e;
    border-color: #22c55e;
    color: #fff;
}

.header-icon-btn.gift-btn:hover {
    background: #16a34a;
}

.header-icon-btn .notification-dot {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 8px;
    height: 8px;
    background: #ef4444;
    border-radius: 50%;
}

.header-balance {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
}

.balance-amount {
    padding: 10px 16px;
    font-weight: 700;
    font-size: 14px;
    color: var(--text);
}

.balance-add {
    width: 44px;
    height: 44px;
    background: #22c55e;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    transition: background 0.2s;
}

.balance-add:hover {
    background: #16a34a;
}

/* User Menu Dropdown */
.user-menu-wrap {
    position: relative;
}

.user-menu-trigger {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 12px 6px 6px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s;
}

.user-menu-trigger:hover {
    background: rgba(255,255,255,0.1);
}

.user-menu-trigger .user-avatar {
    width: 32px;
    height: 32px;
    background: var(--gradient-primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 12px;
    position: relative;
}

.user-menu-trigger .user-avatar .level-badge {
    position: absolute;
    bottom: -4px;
    right: -4px;
    background: #22c55e;
    color: #fff;
    font-size: 8px;
    padding: 2px 4px;
    border-radius: 4px;
    font-weight: 700;
}

.user-menu-trigger .username {
    font-weight: 600;
    font-size: 14px;
    color: var(--text);
}

.user-menu-trigger .dropdown-arrow {
    color: var(--text-muted);
    font-size: 12px;
    transition: transform 0.2s;
}

.user-menu-wrap.open .dropdown-arrow {
    transform: rotate(180deg);
}

.user-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 200px;
    background: linear-gradient(180deg, #1a2d4a 0%, #0f1f38 100%);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s;
    z-index: 100;
}

.user-menu-wrap.open .user-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.user-dropdown .user-level {
    padding: 12px;
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--text-muted);
}

.user-dropdown .user-level strong {
    color: var(--text);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    color: var(--text-muted);
    font-size: 14px;
    border-radius: 8px;
    transition: all 0.2s;
    width: 100%;
    text-align: left;
    background: transparent;
}

.dropdown-item:hover {
    background: rgba(255,255,255,0.05);
    color: var(--text);
}

.dropdown-item .item-icon {
    font-size: 16px;
}

.currency-toggle {
    display: flex;
    gap: 4px;
    padding: 8px;
    margin-top: 8px;
    border-top: 1px solid var(--border);
    padding-top: 12px;
}

.currency-btn {
    flex: 1;
    padding: 8px;
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.2s;
}

.currency-btn.active {
    background: var(--cyan);
    border-color: var(--cyan);
    color: #000;
}

/* Auth Modal Responsive */
@media (max-width: 900px) {
    .auth-modal {
        grid-template-columns: 1fr;
        max-width: 480px;
    }

    .auth-modal__left {
        display: none;
    }

    .auth-modal__right {
        padding: 32px 24px;
    }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
    .boxes-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .rewards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .step-item,
    .step-item.reverse {
        grid-template-columns: auto 1fr;
        gap: 24px;
    }

    .step-visual {
        display: none;
    }
}

@media (max-width: 1280px) {
    .header-inner {
        height: 72px;
        gap: 12px;
        padding: 0 10px;
    }

    .lux-logo .logo-icon {
        width: 40px;
        height: 40px;
    }

    .lux-logo .logo-text {
        font-size: 18px;
        letter-spacing: 2px;
    }

    .nav-link {
        padding: 10px 10px;
        font-size: 12px;
    }

    .nav-link .nav-icon {
        width: 22px;
        height: 22px;
    }

    .btn-signup {
        padding: 10px 18px;
        font-size: 13px;
    }

    .btn-login {
        padding: 10px 14px;
        font-size: 13px;
    }
}

@media (max-width: 900px) {
    .lux-nav {
        display: flex;
        gap: 4px;
        margin-left: 0;
    }

    .mobile-menu-toggle {
        display: none;
    }

    .header-auth {
        display: flex;
        gap: 6px;
    }

    .nav-link {
        padding: 8px;
    }

    .nav-link span {
        display: none;
    }

    .nav-link .nav-icon {
        width: 22px;
        height: 22px;
    }

    .btn-signup,
    .btn-login {
        padding: 8px 10px;
        font-size: 11px;
        border-radius: 6px;
    }

    .stats-grid {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    html, body {
        overflow-x: hidden;
        max-width: 100vw;
    }

    main {
        width: 100%;
        overflow-x: hidden;
    }

    /* Simplify logged-in header for mobile - hide most icons */
    .header-logged-in {
        gap: 6px;
    }

    .header-logged-in .header-icon-btn:not(.gift-btn) {
        display: none;
    }

    .header-logged-in .header-icon-btn.gift-btn {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .header-balance {
        display: none;
    }

    .user-menu-trigger {
        padding: 4px 8px 4px 4px;
    }

    .user-menu-trigger .user-avatar {
        width: 28px;
        height: 28px;
        font-size: 10px;
    }

    .user-menu-trigger .username {
        display: none;
    }

    .user-menu-trigger .dropdown-arrow {
        font-size: 10px;
    }

    .hero-content,
    .hero-carousel,
    .boxes-grid,
    .rewards-grid,
    .stats-grid,
    .deposit-card,
    .footer-top {
        max-width: 100%;
    }

    .carousel-track {
        gap: 10px;
    }

    .carousel-item {
        width: 80px;
        height: 70px;
    }

    .carousel-item .item-emoji {
        font-size: 32px;
    }

    .carousel-item.featured {
        width: 100px;
        height: 90px;
    }

    .carousel-item.featured .item-emoji {
        font-size: 44px;
    }

    .rewards-grid {
        grid-template-columns: 1fr;
    }

    .boxes-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .box-card.featured {
        transform: none;
    }

    .box-price {
        font-size: 32px;
    }

    .box-price span {
        font-size: 11px;
    }

    .footer-top {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }

    .big-stat {
        flex-direction: column;
        gap: 16px;
    }

    .laurel {
        display: none;
    }

    .stats-grid {
        flex-direction: column;
        gap: 32px;
    }

    .big-stat {
        gap: 12px;
        padding: 0 8px;
    }

    .stat-value {
        font-size: clamp(24px, 8.5vw, 36px);
        letter-spacing: 0;
    }

    .stat-label {
        font-size: 14px;
    }

    .how-section,
    .rewards-section,
    .stats-section,
    .deposit-section {
        text-align: center;
    }

    .how-section .btn-cta-gold,
    .rewards-section .btn-cta-gold,
    .deposit-section .btn-cta-gold {
        display: block;
        width: min(90%, 280px);
        margin: 24px auto 0;
    }
}

@media (max-width: 500px) {
    section {
        padding: 60px 16px;
    }

    .stat-value {
        font-size: clamp(14px, 4.2vw, 20px);
        letter-spacing: -0.5px;
    }

    .stat-number {
        font-size: clamp(12px, 3.8vw, 16px);
        letter-spacing: -0.5px;
    }

    .stat-label {
        font-size: 12px;
    }

    .stat-text {
        font-size: 12px;
    }

    .header-inner {
        padding: 0 6px;
        height: 60px;
        gap: 6px;
    }

    .lux-logo .logo-icon {
        width: 30px;
        height: 30px;
    }

    .lux-logo .logo-text {
        font-size: 14px;
        letter-spacing: 1.5px;
    }

    /* Hide nav on very small screens */
    .lux-nav {
        display: none;
    }

    .nav-link {
        padding: 6px;
    }

    .nav-link .nav-icon {
        width: 20px;
        height: 20px;
    }

    .btn-signup,
    .btn-login {
        padding: 6px 8px;
        font-size: 10px;
    }

    /* Even more compact logged-in header */
    .header-logged-in .header-icon-btn.gift-btn {
        display: none;
    }

    .user-menu-trigger {
        padding: 4px 6px 4px 4px;
        gap: 6px;
    }

    .user-menu-trigger .user-avatar {
        width: 26px;
        height: 26px;
        font-size: 9px;
    }

    .user-menu-trigger .level-badge {
        font-size: 7px;
        padding: 1px 3px;
    }

    .hero-section {
        padding: 40px 16px 24px;
    }

    .hero-title {
        font-size: clamp(20px, 5vw, 28px);
    }

    .hero-subtitle {
        font-size: 13px;
        padding: 0 8px;
    }

    .btn-try-me {
        padding: 14px 40px;
        font-size: 14px;
    }

    .step-item,
    .step-item.reverse {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .step-number {
        margin: 0 auto;
        width: 60px;
        height: 60px;
        font-size: 28px;
    }

    .deposit-card {
        padding: 32px 20px;
    }

    .payment-icons {
        gap: 10px;
    }

    .pay-icon {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
}

/* ============================================
   RAFFLE CARDS - Image support
   ============================================ */
.raffle-card {
    background: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: transform 0.3s, box-shadow 0.3s;
}

.raffle-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.raffle-image {
    height: 180px;
    background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-card) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 20px;
}

.raffle-image img {
    max-width: 120px;
    max-height: 120px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 8px 20px rgba(0,0,0,0.4));
}

.raffle-tier-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.raffle-tier-badge.premium {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: #000;
}

.raffle-tier-badge.medium {
    background: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-dark) 100%);
    color: #000;
}

.raffle-tier-badge.basic {
    background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
    color: #fff;
}

.raffle-content {
    padding: 20px;
}

.raffle-name {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text);
}

.raffle-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
}

.raffle-stat {
    text-align: center;
}

.raffle-stat-value {
    font-size: 14px;
    font-weight: 700;
    color: var(--cyan);
}

.raffle-stat-label {
    font-size: 11px;
    color: var(--text-muted);
}

.raffle-timer {
    text-align: center;
    padding: 12px;
    background: rgba(0,0,0,0.2);
    border-radius: 8px;
    margin-bottom: 16px;
}

.timer-value {
    font-size: 18px;
    font-weight: 700;
    color: var(--gold);
}

.timer-label {
    font-size: 11px;
    color: var(--text-muted);
}

.raffle-btn {
    width: 100%;
    padding: 14px;
    background: var(--gradient-primary);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.raffle-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 20px var(--glow-cyan);
}

#raffles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}
