/* ═══════════════════════════════════════════════════════════════
   SPARKYMT2 ULTRA PREMIUM - 2025 Edition
═══════════════════════════════════════════════════════════════ */

/* Discord Floating Button */
.discord-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 9998;
    display: flex;
    align-items: center;
    gap: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ═══════════════════════════════════════════════════════════════
   SKELETON LOADING
═══════════════════════════════════════════════════════════════ */

.skeleton-loader {
    position: fixed;
    inset: 0;
    background: var(--bg-abyss);
    z-index: 99999;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.skeleton-loader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* Skeleton shimmer effect */
@keyframes skeletonShimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.skeleton {
    background: linear-gradient(
        90deg,
        var(--bg-surface) 0%,
        var(--bg-elevated) 20%,
        rgba(212, 175, 55, 0.08) 40%,
        var(--bg-elevated) 60%,
        var(--bg-surface) 100%
    );
    background-size: 200% 100%;
    animation: skeletonShimmer 1.5s ease-in-out infinite;
    border-radius: 8px;
}

/* Skeleton Nav */
.skeleton-nav {
    height: 70px;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--border-subtle);
}

.skeleton-logo {
    width: 140px;
    height: 36px;
}

.skeleton-nav-links {
    display: flex;
    gap: 1.5rem;
}

.skeleton-nav-link {
    width: 60px;
    height: 16px;
}

.skeleton-nav-btn {
    width: 100px;
    height: 40px;
    border-radius: 12px;
}

/* Skeleton Hero */
.skeleton-hero {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    gap: 1.5rem;
    position: relative;
}

.skeleton-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 40%;
    background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.skeleton-badge {
    width: 180px;
    height: 36px;
    border-radius: 100px;
}

.skeleton-title {
    width: 400px;
    max-width: 80%;
    height: 80px;
    border-radius: 12px;
}

.skeleton-subtitle {
    width: 300px;
    max-width: 60%;
    height: 20px;
}

.skeleton-countdown {
    width: 500px;
    max-width: 90%;
    height: 140px;
    border-radius: 24px;
    margin: 1rem 0;
}

.skeleton-buttons {
    display: flex;
    gap: 1rem;
}

.skeleton-btn {
    width: 150px;
    height: 52px;
    border-radius: 14px;
}

/* Skeleton pulse for logo */
.skeleton-center-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.02));
    border: 2px solid rgba(212, 175, 55, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: logoPulse 2s ease-in-out infinite;
}

.skeleton-center-logo::before {
    content: '⚔';
    font-size: 3rem;
    opacity: 0.5;
    animation: logoSpin 3s linear infinite;
}

@keyframes logoPulse {
    0%, 100% { 
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.3);
        transform: translate(-50%, -50%) scale(1);
    }
    50% { 
        box-shadow: 0 0 40px 20px rgba(212, 175, 55, 0);
        transform: translate(-50%, -50%) scale(1.05);
    }
}

@keyframes logoSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Loading progress bar */
.skeleton-progress {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.skeleton-progress-bar {
    width: 100%;
    height: 4px;
    background: var(--bg-surface);
    border-radius: 4px;
    overflow: hidden;
}

.skeleton-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--gold-500), var(--gold-400));
    border-radius: 4px;
    width: 0%;
    transition: width 0.3s ease;
    box-shadow: 0 0 10px var(--gold-glow);
}

.skeleton-progress-text {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    color: var(--text-muted);
    text-transform: uppercase;
}

/* Mobile skeleton */
@media (max-width: 768px) {
    .skeleton-nav-links {
        display: none;
    }
    .skeleton-title {
        height: 60px;
    }
    .skeleton-countdown {
        height: 120px;
    }
    .skeleton-buttons {
        flex-direction: column;
    }
    .skeleton-center-logo {
        width: 80px;
        height: 80px;
    }
    .skeleton-center-logo::before {
        font-size: 2rem;
    }
}

.discord-float-btn {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #5865F2, #4752C4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    box-shadow: 
        0 8px 32px rgba(88, 101, 242, 0.4),
        0 0 0 0 rgba(88, 101, 242, 0.4);
    animation: discordPulse 2s ease-in-out infinite;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.discord-float-btn:hover {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 
        0 12px 40px rgba(88, 101, 242, 0.6),
        0 0 60px rgba(88, 101, 242, 0.3);
    animation: none;
}

.discord-float-btn svg {
    width: 32px;
    height: 32px;
    fill: white;
    transition: transform 0.3s;
}

.discord-float-btn:hover svg {
    transform: scale(1.1);
}

@keyframes discordPulse {
    0%, 100% { 
        box-shadow: 
            0 8px 32px rgba(88, 101, 242, 0.4),
            0 0 0 0 rgba(88, 101, 242, 0.4);
    }
    50% { 
        box-shadow: 
            0 8px 32px rgba(88, 101, 242, 0.4),
            0 0 0 15px rgba(88, 101, 242, 0);
    }
}

/* Tooltip */
.discord-tooltip {
    position: absolute;
    right: 70px;
    background: linear-gradient(135deg, rgba(17, 17, 25, 0.98), rgba(7, 7, 12, 0.98));
    border: 1px solid rgba(88, 101, 242, 0.4);
    border-radius: 12px;
    padding: 0.75rem 1.25rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.discord-tooltip::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    border: 8px solid transparent;
    border-left-color: rgba(88, 101, 242, 0.4);
}

.discord-float-btn:hover + .discord-tooltip,
.discord-tooltip:hover {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    pointer-events: auto;
}

.discord-tooltip-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: #5865F2;
    margin-bottom: 0.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.discord-tooltip-desc {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

/* Online indicator */
.discord-online {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 16px;
    height: 16px;
    background: #22c55e;
    border-radius: 50%;
    border: 3px solid var(--bg-abyss);
    animation: onlinePulse 2s ease-in-out infinite;
}

@keyframes onlinePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .discord-float {
        bottom: 1.5rem;
        right: 1.5rem;
    }
    .discord-float.bottom-left {
        left: 1.5rem;
        right: auto;
    }
    .discord-float-btn {
        width: 54px;
        height: 54px;
    }
    .discord-float-btn svg {
        width: 28px;
        height: 28px;
    }
    .discord-tooltip {
        display: none;
    }
}

/* Position variants */
.discord-float.bottom-left {
    right: auto;
    left: 2rem;
}

.discord-float.bottom-left .discord-tooltip {
    right: auto;
    left: 70px;
}

.discord-float.bottom-left .discord-tooltip::after {
    right: auto;
    left: -8px;
    border-left-color: transparent;
    border-right-color: rgba(88, 101, 242, 0.4);
}

/* Animation variants */
.discord-float.pulse .discord-float-btn {
    animation: discordPulse 2s ease-in-out infinite;
}

.discord-float.bounce .discord-float-btn {
    animation: discordBounce 2s ease-in-out infinite;
}

.discord-float.none .discord-float-btn {
    animation: none;
}

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

:root {
    --bg-abyss: #010103;
    --bg-void: #030306;
    --bg-deep: #07070c;
    --bg-surface: #0c0c14;
    --bg-elevated: #111119;
    --bg-card: #16161f;
    --gold-300: #ffe082;
    --gold-400: #ffd54f;
    --gold-500: #d4af37;
    --gold-600: #c9a227;
    --gold-700: #b8860b;
    --gold-glow: rgba(212, 175, 55, 0.5);
    --crimson: #ef4444;
    --crimson-glow: rgba(239, 68, 68, 0.4);
    --azure: #3b82f6;
    --azure-glow: rgba(59, 130, 246, 0.4);
    --violet: #a855f7;
    --violet-glow: rgba(168, 85, 247, 0.4);
    --emerald: #22c55e;
    --emerald-glow: rgba(34, 197, 94, 0.4);
    --amber: #f59e0b;
    --amber-glow: rgba(245, 158, 11, 0.4);
    --text-white: #ffffff;
    --text-primary: #f8f8fa;
    --text-secondary: #9ca3af;
    --text-muted: #6b7280;
    --border-subtle: rgba(255, 255, 255, 0.06);
    --border-accent: rgba(212, 175, 55, 0.25);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, sans-serif;
    background: var(--bg-abyss);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}


/* Vignette + Grain */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 0%, var(--bg-abyss) 100%);
    pointer-events: none;
    z-index: 10000;
    opacity: 0.4;
}

.container { max-width: 1400px; margin: 0 auto; padding: 0 2rem; }
.gold { 
    background: linear-gradient(135deg, var(--gold-300), var(--gold-500), var(--gold-700));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
h1, h2, h3 { font-family: 'Cinzel', serif; font-weight: 700; letter-spacing: 0.03em; }

/* Particles */
.particles { position: fixed; inset: 0; pointer-events: none; z-index: 1; overflow: hidden; }
.particle {
    position: absolute;
    border-radius: 50%;
    background: var(--gold-500);
    animation: particleRise 10s linear infinite;
}
@keyframes particleRise {
    0% { transform: translateY(100vh) scale(0); opacity: 0; }
    10% { opacity: 0.8; }
    90% { opacity: 0.6; }
    100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}

/* Navigation */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 9999;
    padding: 1.5rem 0;
    transition: all 0.4s ease;
}


.nav.scrolled {
    padding: 0.75rem 0;
    background: rgba(3, 3, 6, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
}
.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    font-family: 'Cinzel', serif;
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--text-white);
}
.logo-icon {
    font-size: 2rem;
    filter: drop-shadow(0 0 15px var(--gold-glow));
    animation: logoGlow 3s ease-in-out infinite;
}
.logo-image {
    height: 40px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 10px var(--gold-glow));
}
.footer-logo-image {
    height: 50px;
    width: auto;
    object-fit: contain;
}
.hero-logo-image {
    max-width: 100%;
    max-height: 300px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 60px var(--gold-glow));
}
@keyframes logoGlow {
    0%, 100% { filter: drop-shadow(0 0 15px var(--gold-glow)); }
    50% { filter: drop-shadow(0 0 30px var(--gold-glow)); }
}
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s;
}
.nav-links a:hover { color: var(--text-white); }
.nav-btn {
    background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
    padding: 0.65rem 1.75rem;
    border-radius: 12px;
    color: var(--bg-abyss) !important;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    box-shadow: 
        0 4px 20px var(--gold-glow),
        0 0 0 1px rgba(255,255,255,0.1) inset;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}
.nav-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}
.nav-btn:hover::before {
    left: 100%;
}
.nav-btn:hover { 
    transform: translateY(-3px) scale(1.02); 
    box-shadow: 
        0 8px 35px var(--gold-glow), 
        0 0 50px rgba(212,175,55,0.3),
        0 0 0 1px rgba(255,255,255,0.2) inset;
}
.nav-btn:active {
    transform: translateY(-1px) scale(0.98);
}
.nav-btn-disabled { 
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a) !important; 
    cursor: not-allowed; 
    opacity: 0.9;
    position: relative;
    box-shadow: 
        0 4px 15px rgba(0,0,0,0.3),
        0 0 0 1px rgba(255,255,255,0.05) inset !important;
    color: var(--text-muted) !important;
}
.nav-btn-disabled::before {
    content: '🔒';
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.75rem;
    animation: lockPulse 2s ease-in-out infinite;
}
@keyframes lockPulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}
.nav-btn-disabled:hover { 
    transform: none; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.3), 0 0 0 1px rgba(255,255,255,0.05) inset !important;
}
.nav-btn-disabled:hover::before {
    left: -100%;
}

/* Closed Alert */
.closed-alert {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    background: linear-gradient(145deg, rgba(15,15,20,0.98), rgba(5,5,10,0.98));
    border: 2px solid transparent;
    border-radius: 24px;
    padding: 3rem 4rem;
    text-align: center;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 
        0 25px 80px rgba(0,0,0,0.6),
        0 0 60px rgba(212,175,55,0.15),
        inset 0 1px 0 rgba(255,255,255,0.05);
    backdrop-filter: blur(20px);
}
.closed-alert::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 26px;
    background: linear-gradient(135deg, var(--gold-500), transparent 50%, var(--gold-700));
    z-index: -1;
    opacity: 0.6;
}
.closed-alert::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(212,175,55,0.1) 0%, transparent 50%);
    animation: alertPulse 2s ease-in-out infinite;
    pointer-events: none;
}
@keyframes alertPulse {
    0%, 100% { opacity: 0.3; transform: scale(0.8); }
    50% { opacity: 0.6; transform: scale(1); }
}
.closed-alert.show { 
    opacity: 1; 
    visibility: visible;
    transform: translate(-50%, -50%) scale(1); 
}
.closed-alert-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(212,175,55,0.2), rgba(212,175,55,0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    animation: iconBounce 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.2s both;
    box-shadow: 0 0 30px rgba(212,175,55,0.2);
}
@keyframes iconBounce {
    0% { transform: scale(0); }
    100% { transform: scale(1); }
}
.closed-alert-title {
    color: var(--text-primary);
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
    font-family: 'Cinzel', serif;
}
.closed-alert-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: 0;
    opacity: 0.8;
}
.closed-alert-bar {
    width: 100%;
    height: 3px;
    background: rgba(255,255,255,0.1);
    border-radius: 3px;
    margin-top: 1.5rem;
    overflow: hidden;
}
.closed-alert-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--gold-500), var(--gold-700));
    border-radius: 3px;
    animation: alertProgress 2.5s linear forwards;
}
@keyframes alertProgress {
    0% { width: 100%; }
    100% { width: 0%; }
}

.mobile-toggle { display: none; flex-direction: column; gap: 6px; background: none; border: none; cursor: pointer; padding: 0.5rem; z-index: 10001; }
.mobile-toggle span { width: 26px; height: 2px; background: var(--text-primary); transition: 0.3s; }
.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }


/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
	padding: 6rem 2rem;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 100% 80% at 50% -20%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 80% 60% at 10% 90%, rgba(239, 68, 68, 0.08) 0%, transparent 40%),
        radial-gradient(ellipse 80% 60% at 90% 90%, rgba(168, 85, 247, 0.08) 0%, transparent 40%);
    z-index: 0;
}
.hero-content { text-align: center; max-width: 1000px; z-index: 2; }
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.2), rgba(239, 68, 68, 0.05));
    border: 1px solid rgba(239, 68, 68, 0.4);
    padding: 0.6rem 1.5rem;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #ff8a8a;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
    animation: badgePulse 2s infinite;
}
@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 20px rgba(239, 68, 68, 0.3); }
    50% { box-shadow: 0 0 40px rgba(239, 68, 68, 0.6); }
}
.badge-fire { animation: fireFlicker 1s ease-in-out infinite; }
@keyframes fireFlicker {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}


.hero-title {
    font-size: clamp(3.5rem, 14vw, 9rem);
    line-height: 0.9;
    margin-bottom: 1.5rem;
}
.title-line { display: block; letter-spacing: 0.15em; }
.title-line:first-child {
    font-weight: 400;
    background: linear-gradient(180deg, var(--text-white), var(--text-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.title-line.gold {
    font-weight: 900;
    background: linear-gradient(135deg, #ffe082, #ffd54f, #d4af37, #b8860b);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: goldShift 4s ease-in-out infinite;
    filter: drop-shadow(0 0 60px var(--gold-glow));
}
@keyframes goldShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}
.hero-subtitle {
    font-size: clamp(0.9rem, 2vw, 1.2rem);
    color: var(--text-secondary);
    margin-bottom: 3rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

/* Countdown */
.countdown-wrapper {
    background: linear-gradient(135deg, rgba(17, 17, 25, 0.9), rgba(12, 12, 20, 0.7));
    border: 1px solid var(--border-accent);
    border-radius: 24px;
    padding: 2rem 3rem;
    margin-bottom: 2.5rem;
    backdrop-filter: blur(20px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}
.countdown-wrapper::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
}


.countdown-label {
    font-size: 0.7rem;
    letter-spacing: 0.4em;
    color: var(--gold-500);
    margin-bottom: 1rem;
    font-weight: 600;
}
.countdown { display: flex; align-items: center; justify-content: center; gap: 0.75rem; }
.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 85px;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 16px;
    border: 1px solid var(--border-subtle);
}
.countdown-value {
    font-family: 'Cinzel', serif;
    font-size: clamp(2.5rem, 7vw, 4rem);
    font-weight: 900;
    background: linear-gradient(180deg, var(--text-white), var(--text-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}
.countdown-unit {
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    color: var(--text-muted);
    margin-top: 0.25rem;
    text-transform: uppercase;
}
.countdown-separator {
    font-size: 2.5rem;
    color: var(--gold-500);
    opacity: 0.5;
    animation: blink 1s infinite;
    margin-top: -20px;
}
@keyframes blink { 0%, 100% { opacity: 0.5; } 50% { opacity: 0.1; } }
.countdown-date { margin-top: 1rem; font-size: 0.9rem; color: var(--text-secondary); }


/* Buttons */
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 14px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    border: none;
}
.btn-primary {
    background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
    color: var(--bg-abyss);
    box-shadow: 0 8px 30px var(--gold-glow), 0 2px 0 var(--gold-700);
}
.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px var(--gold-glow), 0 0 80px rgba(212, 175, 55, 0.3);
}
.btn-secondary {
    background: rgba(17, 17, 25, 0.8);
    color: var(--text-primary);
    border: 1px solid var(--border-subtle);
    backdrop-filter: blur(10px);
}
.btn-secondary:hover {
    border-color: var(--gold-500);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}
.btn-large { padding: 1.25rem 3rem; font-size: 1.1rem; }
.btn-icon { font-size: 1.2rem; }

/* Scroll Section */
.scroll-section {
    display: flex;
    justify-content: center;
    padding: 3rem 0;
    background: linear-gradient(180deg, var(--bg-abyss) 0%, var(--bg-deep) 100%);
}

/* Scroll Indicator - Premium */
.hero-scroll {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    z-index: 10;
    text-decoration: none;
    padding: 1rem 2rem;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-scroll:hover {
    transform: translateY(-5px);
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15);
}

.hero-scroll span {
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold-400);
    font-weight: 700;
}

.scroll-indicator {
    width: 28px;
    height: 46px;
    border: 2px solid var(--gold-500);
    border-radius: 14px;
    position: relative;
    background: rgba(0, 0, 0, 0.3);
}

.scroll-indicator::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 10px;
    background: linear-gradient(180deg, var(--gold-400), var(--gold-600));
    border-radius: 3px;
    animation: scrollDown 1.5s ease-in-out infinite;
    box-shadow: 0 0 10px var(--gold-glow);
}

@keyframes scrollDown {
    0%, 100% { top: 8px; opacity: 1; height: 10px; }
    50% { top: 24px; opacity: 0.5; height: 6px; }
}

.scroll-indicator::after {
    content: '↓';
    position: absolute;
    bottom: -28px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.2rem;
    color: var(--gold-500);
    animation: arrowBounce 1.5s ease-in-out infinite;
}

@keyframes arrowBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.7; }
    50% { transform: translateX(-50%) translateY(6px); opacity: 1; }
}


/* Stats */
.stats {
    padding: 5rem 0;
    background: var(--bg-deep);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}
.stats-grid { display: grid; gap: 1rem; }
.stats-grid.six-col { grid-template-columns: repeat(6, 1fr); }
.stat-item {
    background: linear-gradient(135deg, var(--bg-surface), var(--bg-elevated));
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}
.stat-item::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    opacity: 0;
    transition: opacity 0.3s;
}
.stat-item:hover { transform: translateY(-8px); border-color: transparent; }
.stat-item:hover::before { opacity: 1; }

.glow-red::before { background: linear-gradient(90deg, transparent, var(--crimson), transparent); }
.glow-red:hover { box-shadow: 0 20px 50px var(--crimson-glow); }
.glow-gold::before { background: linear-gradient(90deg, transparent, var(--gold-500), transparent); }
.glow-gold:hover { box-shadow: 0 20px 50px var(--gold-glow); }
.glow-blue::before { background: linear-gradient(90deg, transparent, var(--azure), transparent); }
.glow-blue:hover { box-shadow: 0 20px 50px var(--azure-glow); }
.glow-purple::before { background: linear-gradient(90deg, transparent, var(--violet), transparent); }
.glow-purple:hover { box-shadow: 0 20px 50px var(--violet-glow); }
.glow-green::before { background: linear-gradient(90deg, transparent, var(--emerald), transparent); }
.glow-green:hover { box-shadow: 0 20px 50px var(--emerald-glow); }
.glow-orange::before { background: linear-gradient(90deg, transparent, var(--amber), transparent); }
.glow-orange:hover { box-shadow: 0 20px 50px var(--amber-glow); }

.stat-value { display: block; font-family: 'Cinzel', serif; font-size: 1.5rem; font-weight: 900; color: var(--text-white); margin-bottom: 0.25rem; }
.stat-label { font-size: 0.7rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; }

/* Premium Stat Badge */
.stat-item.premium {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(245, 158, 11, 0.05));
    border: 1.5px solid rgba(245, 158, 11, 0.4);
    position: relative;
}

.stat-item.premium::after {
    content: '⭐ PREMIUM';
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    font-size: 0.6rem;
    font-weight: 700;
    color: var(--amber);
    background: rgba(245, 158, 11, 0.15);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    letter-spacing: 0.05em;
}

.stat-item.premium .stat-value {
    color: var(--amber);
    text-shadow: 0 0 20px rgba(245, 158, 11, 0.4);
}


/* Section Headers */
.section-header { text-align: center; margin-bottom: 4rem; }
.section-tag {
    display: inline-block;
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    color: var(--gold-500);
    background: rgba(212, 175, 55, 0.1);
    padding: 0.5rem 1.25rem;
    border-radius: 100px;
    margin-bottom: 1rem;
    border: 1px solid var(--border-accent);
}
.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
    background: linear-gradient(180deg, var(--text-white), var(--text-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.section-desc { color: var(--text-secondary); max-width: 600px; margin: 0 auto; }

/* Features */
.features { padding: 6rem 0; background: var(--bg-void); }
.features-mega-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 0.5rem; }
.feature-mini {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--bg-surface), var(--bg-deep));
    border: 1px solid var(--border-subtle);
    padding: 1rem 1.25rem;
    border-radius: 12px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.feature-mini:hover {
    background: var(--bg-elevated);
    border-color: var(--border-accent);
    color: var(--text-primary);
    transform: translateX(8px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.feature-mini span { font-size: 1.3rem; }
.feature-mini { position: relative; }
.feature-badge {
    position: absolute;
    top: 0.4rem;
    right: 0.4rem;
    font-size: 0.7rem !important;
    opacity: 0.7;
}
.feature-mini:hover .feature-badge { opacity: 1; }


/* Rewards */
.rewards { padding: 6rem 0; background: linear-gradient(180deg, var(--bg-deep), var(--bg-void)); }
.rewards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-bottom: 3rem; }
.reward-card {
    background: linear-gradient(135deg, var(--bg-surface), var(--bg-elevated));
    border: 1px solid var(--border-subtle);
    border-radius: 24px;
    padding: 3rem 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.reward-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; }
.gold-reward { transform: scale(1.05); z-index: 2; }
.gold-reward::before { background: linear-gradient(90deg, #b8860b, #ffd700, #ffec8b, #ffd700, #b8860b); background-size: 200%; animation: goldShine 3s linear infinite; }
@keyframes goldShine { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }
.gold-reward:hover { transform: scale(1.08) translateY(-15px); box-shadow: 0 30px 80px rgba(255, 215, 0, 0.3); }
.silver-reward::before { background: linear-gradient(90deg, #808080, #c0c0c0, #e8e8e8, #c0c0c0, #808080); }
.silver-reward:hover { transform: translateY(-12px); box-shadow: 0 25px 60px rgba(192, 192, 192, 0.2); }
.bronze-reward::before { background: linear-gradient(90deg, #8b4513, #cd7f32, #daa06d, #cd7f32, #8b4513); }
.bronze-reward:hover { transform: translateY(-10px); box-shadow: 0 20px 50px rgba(205, 127, 50, 0.2); }
.reward-rank { font-size: 4rem; margin-bottom: 1rem; }
.reward-place { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 0.5rem; }
.reward-amount { font-family: 'Cinzel', serif; font-size: 2.2rem; font-weight: 900; }
.gold-reward .reward-amount { background: linear-gradient(135deg, #ffd700, #ffec8b); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.silver-reward .reward-amount { color: #c0c0c0; }
.bronze-reward .reward-amount { color: #cd7f32; }

.global-reward {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.02));
    border: 1px solid var(--border-accent);
    border-radius: 20px;
    padding: 1.5rem 3rem;
}
.global-icon { font-size: 3rem; }
.global-info h3 { font-size: 1.3rem; margin-bottom: 0.25rem; color: var(--text-white); }
.global-info p { color: var(--gold-400); font-weight: 700; }


/* Systems */
.systems { padding: 6rem 0; background: var(--bg-void); }
.systems-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 1.5rem; }

/* System Card - Premium Design */
.system-card {
    background: linear-gradient(145deg, var(--bg-surface) 0%, var(--bg-deep) 100%);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: visible;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    cursor: pointer;
    min-height: 280px;
}

/* Top Accent Line */
.system-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 2rem;
    right: 2rem;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--border-subtle), transparent);
    transition: all 0.4s;
}

.system-card:hover::before {
    left: 1rem;
    right: 1rem;
    background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
    box-shadow: 0 0 20px var(--gold-glow);
}

/* Glow Background on Hover */
.system-card-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.1), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
    border-radius: 20px;
    z-index: 0;
}

.system-card:hover .system-card-glow {
    opacity: 1;
}

/* Hover State */
.system-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(212, 175, 55, 0.4);
    background: linear-gradient(145deg, var(--bg-elevated) 0%, var(--bg-surface) 100%);
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.5),
        0 0 80px rgba(212, 175, 55, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* Icon Container */
.system-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.12), rgba(212, 175, 55, 0.03));
    border: 1.5px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    margin-bottom: 0.75rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    z-index: 1;
}

.system-icon::before {
    content: '';
    position: absolute;
    inset: -1px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), transparent);
    border-radius: 16px;
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}

.system-card:hover .system-icon {
    transform: scale(1.15) rotate(5deg);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.08));
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 
        0 12px 32px rgba(212, 175, 55, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.system-card:hover .system-icon::before {
    opacity: 1;
}

/* Title */
.system-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-white);
    margin: 0;
    transition: all 0.3s;
    position: relative;
    z-index: 1;
    letter-spacing: 0.02em;
}

.system-card:hover h3 {
    color: var(--gold-300);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

/* Description */
.system-card p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
    max-height: 5em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    transition: color 0.3s;
    position: relative;
    z-index: 1;
}

.system-card:hover p {
    color: var(--text-primary);
}

/* Media Badge */
.system-card.has-media {
    cursor: pointer;
}

.media-badge {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--gold-500), var(--gold-700));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.4), 0 0 0 0 rgba(212, 175, 55, 0.6);
    z-index: 2;
    color: var(--bg-abyss);
    font-weight: 700;
    cursor: pointer;
    pointer-events: auto;
}

@keyframes badgePulse {
    0%, 100% { 
        box-shadow: 0 8px 32px rgba(212, 175, 55, 0.4), 0 0 0 0 rgba(212, 175, 55, 0.6);
    }
    50% { 
        box-shadow: 0 8px 32px rgba(212, 175, 55, 0.6), 0 0 0 12px rgba(212, 175, 55, 0);
    }
}

.system-card.has-media.revealed:hover .media-badge {
    opacity: 1;
    transform: scale(1);
    animation: badgePulse 2.5s ease-in-out infinite;
}

.system-card.has-media.revealed:hover .media-badge:hover {
    transform: scale(1.15);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.6), 0 0 0 0 rgba(212, 175, 55, 0);
    animation: none;
}

.media-badge-tooltip {
    position: absolute;
    bottom: calc(100% + 12px);
    right: 50%;
    transform: translateX(50%) translateY(8px);
    background: rgba(0, 0, 0, 0.95);
    color: var(--gold-400);
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
    z-index: 3;
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

.media-badge-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    right: 50%;
    transform: translateX(50%);
    border: 6px solid transparent;
    border-top-color: rgba(0, 0, 0, 0.95);
}

.system-card.has-media.revealed:hover .media-badge-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(50%) translateY(0);
}

/* Subtle Shine Effect */
.system-card {
    background: linear-gradient(145deg, var(--bg-surface) 0%, var(--bg-deep) 100%);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    padding: 2rem;
}

/* Premium System Card */
.system-card.premium {
    background: linear-gradient(145deg, rgba(245, 158, 11, 0.08) 0%, rgba(245, 158, 11, 0.02) 100%);
    border: 1.5px solid rgba(245, 158, 11, 0.3);
    position: relative;
}

.system-card.premium::before {
    content: '';
}

.system-card.premium .system-icon {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(245, 158, 11, 0.08));
    border-color: rgba(245, 158, 11, 0.4);
}

.system-card.premium:hover {
    border-color: rgba(245, 158, 11, 0.6);
    background: linear-gradient(145deg, rgba(245, 158, 11, 0.12) 0%, rgba(245, 158, 11, 0.04) 100%);
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.5),
        0 0 80px rgba(245, 158, 11, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.system-card.premium:hover::before {
    opacity: 1;
    transform: scale(1.2);
}
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    cursor: pointer;
    min-height: 280px;
}

.system-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s;
    pointer-events: none;
    border-radius: 20px;
    z-index: 0;
}

.system-card:hover::before {
    left: 100%;
}

/* Top Accent Line */
.system-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 2rem;
    right: 2rem;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--border-subtle), transparent);
    transition: all 0.4s;
    z-index: 1;
}

.system-card:hover::after {
    left: 1rem;
    right: 1rem;
    background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
    box-shadow: 0 0 20px var(--gold-glow);
}

/* Starting Items */
.starting-items { padding: 6rem 0; background: linear-gradient(180deg, var(--bg-deep), var(--bg-void)); }
.starting-box {
    background: linear-gradient(135deg, var(--bg-surface), var(--bg-elevated));
    border: 1px solid var(--border-accent);
    border-radius: 28px;
    padding: 3rem;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
}
.starting-box::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--gold-500), transparent); }
.starting-content h3 { font-size: 1.8rem; margin-bottom: 1rem; color: var(--text-white); }
.starting-content p { color: var(--text-secondary); margin-bottom: 2rem; line-height: 1.8; }
.starting-content strong { color: var(--gold-400); }
.starting-stats { display: flex; gap: 2rem; }
.start-stat { text-align: center; padding: 1rem; background: rgba(0,0,0,0.3); border-radius: 16px; border: 1px solid var(--border-subtle); min-width: 100px; }
.start-value { display: block; font-family: 'Cinzel', serif; font-size: 2rem; font-weight: 900; background: linear-gradient(135deg, var(--gold-400), var(--gold-600)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.start-label { font-size: 0.65rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 0.25rem; display: block; }
.starting-items-list { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; }
.item-tag {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    padding: 0.5rem 1rem;
    border-radius: 10px;
    font-size: 0.875rem;
    color: var(--text-secondary);
    transition: all 0.3s;
}
.item-tag:hover { border-color: var(--gold-500); color: var(--text-white); background: rgba(212, 175, 55, 0.1); transform: translateY(-3px); }


/* Download */
.download { padding: 6rem 0; background: var(--bg-void); }
.download-box {
    background: linear-gradient(135deg, var(--bg-elevated), var(--bg-surface));
    border: 1px solid var(--border-accent);
    border-radius: 32px;
    padding: 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.download-box::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at center top, rgba(212, 175, 55, 0.15), transparent 60%); pointer-events: none; }
.download-box::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--gold-500), transparent); }
.download-icon { font-size: 4rem; margin-bottom: 1.5rem; display: inline-block; animation: downloadBounce 2s ease-in-out infinite; }
@keyframes downloadBounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }
.download-box h2 { font-size: 2.5rem; margin-bottom: 0.5rem; color: var(--text-white); }
.download-box > p { color: var(--text-secondary); margin-bottom: 2rem; font-size: 1.1rem; position: relative; z-index: 1; }
.download-info { display: flex; justify-content: center; gap: 2rem; margin-top: 1.5rem; color: var(--text-muted); font-size: 0.875rem; position: relative; z-index: 1; }

/* Footer */
.footer { padding: 3rem 0 2rem; background: var(--bg-deep); border-top: 1px solid var(--border-subtle); }
.footer-content { text-align: center; }
.footer-logo { font-family: 'Cinzel', serif; font-size: 1.8rem; font-weight: 900; margin-bottom: 1.5rem; }
.footer-links { display: flex; justify-content: center; gap: 2rem; margin-bottom: 1.5rem; flex-wrap: wrap; }
.footer-links a { color: var(--text-secondary); text-decoration: none; font-size: 0.9rem; transition: color 0.3s; display: flex; align-items: center; gap: 0.4rem; }
.footer-links a:hover { color: var(--gold-500); }
.footer-link-icon { font-size: 1rem; }
.footer-social { display: flex; justify-content: center; gap: 1rem; margin-bottom: 1.5rem; }
.social-link {
    width: 48px; height: 48px;
    display: flex; align-items: center; justify-content: center;
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    font-size: 1.3rem;
    text-decoration: none;
    transition: all 0.4s;
}
.social-link:hover { background: var(--bg-elevated); border-color: var(--gold-500); transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0,0,0,0.3); }
.footer-copy { color: var(--text-muted); font-size: 0.8rem; }


/* Responsive */
@media (max-width: 1200px) {
    .stats-grid.six-col { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1024px) {
    .rewards-grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
    .gold-reward { transform: scale(1); }
    .starting-box { grid-template-columns: 1fr; text-align: center; }
    .starting-stats { justify-content: center; }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0; right: -100%;
        width: 300px; height: 100vh;
        background: rgba(7, 7, 12, 0.98);
        backdrop-filter: blur(30px);
        flex-direction: column;
        padding: 100px 2rem 2rem;
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        border-left: 1px solid var(--border-subtle);
        gap: 1.5rem;
    }
    .nav-links.mobile-open { right: 0; }
    .mobile-toggle { display: flex; }
    .stats-grid.six-col { grid-template-columns: repeat(2, 1fr); }
    .rewards-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto 2rem; }
    .global-reward { flex-direction: column; text-align: center; padding: 1.5rem; }
    .countdown-item { min-width: 70px; padding: 0.75rem; }
    .countdown-value { font-size: 2rem; }
    .hero-actions { flex-direction: column; align-items: center; }
    .btn { width: 100%; max-width: 300px; justify-content: center; }
    .features-mega-grid { grid-template-columns: 1fr; }
    .systems-grid { grid-template-columns: 1fr; }
    .footer-links { flex-wrap: wrap; gap: 1rem; }
    .starting-box { padding: 2rem; }
    .download-box { padding: 2.5rem; }
}

@media (max-width: 480px) {
    .stats-grid.six-col { grid-template-columns: 1fr; }
    .countdown { flex-wrap: wrap; gap: 0.5rem; }
    .countdown-separator { display: none; }
    .countdown-item { flex: 1 1 40%; }
    .starting-stats { flex-direction: column; gap: 1rem; }
    .hero-title { font-size: 3rem; }
}

/* Utilities */
a:focus-visible, button:focus-visible { outline: 2px solid var(--gold-500); outline-offset: 3px; }
::selection { background: var(--gold-500); color: var(--bg-abyss); }
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg-deep); }
::-webkit-scrollbar-thumb { background: var(--bg-card); border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-700); }



/* Countdown Launched State */
.countdown-wrapper.launched {
    animation: launchPulse 2s ease-in-out infinite;
}

@keyframes launchPulse {
    0%, 100% { box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), 0 0 30px var(--gold-glow); }
    50% { box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), 0 0 60px var(--gold-glow); }
}

.launched-item {
    min-width: 200px !important;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.05)) !important;
    border: 1px solid var(--gold-500) !important;
}

.launched-text {
    background: linear-gradient(135deg, var(--gold-300), var(--gold-500), var(--gold-700)) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    font-size: clamp(2rem, 5vw, 3rem) !important;
    animation: goldShift 3s ease-in-out infinite;
}

.countdown-wrapper.launched .countdown-label {
    color: var(--emerald);
    animation: none;
}

/* ═══════════════════════════════════════════════════════════════
   MODERN MINIMAL POPUP
═══════════════════════════════════════════════════════════════ */

.feature-popup {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-popup.active {
    opacity: 1;
    visibility: visible;
}

/* Premium Dark Overlay */
.feature-popup-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.95));
    backdrop-filter: blur(20px);
    cursor: pointer;
    animation: overlayFadeIn 0.4s ease;
}

@keyframes overlayFadeIn {
    from { backdrop-filter: blur(0px); }
    to { backdrop-filter: blur(20px); }
}

/* Premium Card */
.feature-popup-content {
    position: relative;
    max-width: 900px;
    max-height: 90vh;
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-surface) 100%);
    border: 1px solid var(--border-accent);
    border-radius: 24px;
    overflow: hidden;
    transform: scale(0.92) translateY(30px);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 
        0 50px 100px rgba(0, 0, 0, 0.6),
        0 0 80px rgba(212, 175, 55, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
}

/* Top Accent Line */
.feature-popup-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
    z-index: 10;
}

/* With Description Layout */
.feature-popup-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    overflow: hidden;
}

.feature-popup-content.with-desc .feature-popup-body {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 0;
}

.feature-popup-content.with-desc {
    max-width: 1200px;
}

.popup-desc-panel {
    display: none;
    background: linear-gradient(135deg, rgba(17, 17, 25, 0.8), rgba(12, 12, 20, 0.6));
    padding: 2.5rem;
    overflow-y: auto;
    border-left: 1px solid var(--border-subtle);
    flex: 1;
}

.popup-desc-panel::-webkit-scrollbar {
    width: 8px;
}

.popup-desc-panel::-webkit-scrollbar-track {
    background: transparent;
}

.popup-desc-panel::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--gold-500), var(--gold-700));
    border-radius: 4px;
    transition: all 0.3s;
}

.popup-desc-panel::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--gold-400), var(--gold-600));
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.feature-popup-content.with-desc .popup-desc-panel {
    display: block;
}

.popup-desc-content {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.9;
}

.popup-desc-content b,
.popup-desc-content strong {
    color: var(--gold-400);
    font-weight: 700;
}

.popup-desc-content p {
    margin-bottom: 1rem;
}

.popup-desc-content p:last-child {
    margin-bottom: 0;
}

/* Header */
.feature-popup-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--border-subtle);
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.05));
}

/* Title */
.feature-popup-title {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-white);
}

.feature-popup-title span:first-child {
    font-size: 2rem;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
}

/* Close Button */
.feature-popup-close {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-subtle);
    color: var(--text-secondary);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-popup-close:hover {
    background: var(--crimson);
    border-color: var(--crimson);
    color: white;
    transform: scale(1.1);
}

/* Media Container */
.feature-popup-media {
    background: var(--bg-deep);
    position: relative;
    flex: 1;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.feature-popup-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    animation: mediaFadeIn 0.5s ease;
}

.feature-popup-video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    animation: mediaFadeIn 0.5s ease;
}

@keyframes mediaFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.feature-popup-noimage {
    padding: 5rem 2rem;
    text-align: center;
    color: var(--text-muted);
    font-size: 1rem;
}

.feature-popup.active .feature-popup-content {
    transform: scale(1) translateY(0);
}

/* Slide Navigation */
.popup-slide-nav {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}

.popup-slide-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(212, 175, 55, 0.3);
    cursor: pointer;
    transition: all 0.3s;
}

.popup-slide-dot.active {
    background: var(--gold-500);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
    transform: scale(1.3);
}

.popup-slide-dot:hover {
    background: var(--gold-400);
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .feature-popup-content {
        max-width: 95vw;
        max-height: 95vh;
    }
    
    .feature-popup-content.with-desc .feature-popup-body {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .feature-popup-content.with-desc {
        max-width: 95vw;
    }
    
    .popup-desc-panel {
        border-left: none;
        border-top: 1px solid var(--border-subtle);
        max-height: 250px;
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .feature-popup {
        padding: 0.5rem;
    }
    
    .feature-popup-content {
        border-radius: 16px;
        max-height: 95vh;
    }
    
    .feature-popup-header {
        padding: 1.25rem 1.5rem;
    }
    
    .feature-popup-title {
        font-size: 1.1rem;
        gap: 0.75rem;
    }
    
    .feature-popup-title span:first-child {
        font-size: 1.5rem;
    }
    
    .feature-popup-close {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .popup-desc-panel {
        padding: 1.5rem;
        max-height: 200px;
    }
    
    .popup-desc-content {
        font-size: 0.9rem;
        line-height: 1.7;
    }
    
    .feature-popup-image,
    .feature-popup-video {
        max-height: 50vh;
    }
    
    .popup-slide-nav {
        bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .feature-popup-content {
        border-radius: 12px;
    }
    
    .feature-popup-header {
        padding: 1rem 1.25rem;
    }
    
    .feature-popup-title {
        font-size: 1rem;
    }
    
    .feature-popup-title span:first-child {
        font-size: 1.3rem;
    }
    
    .popup-desc-panel {
        padding: 1.25rem;
        max-height: 150px;
    }
    
    .popup-desc-content {
        font-size: 0.85rem;
    }
}/* Subtle Top Accent */
.feature-popup-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
}

/* Header */
.feature-popup-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    background: var(--bg-elevated);
    border-bottom: 1px solid var(--border-subtle);
}

/* Title */
.feature-popup-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-white);
}

.feature-popup-title span:first-child {
    font-size: 1.6rem;
}

/* Close Button */
.feature-popup-close {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid var(--border-subtle);
    border-radius: 10px;
    color: var(--text-muted);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.feature-popup-close:hover {
    background: var(--crimson);
    border-color: var(--crimson);
    color: #fff;
}

/* Media Container */
.feature-popup-media {
    background: var(--bg-deep);
    position: relative;
    overflow: hidden;
}

.feature-popup-image {
    width: 100%;
    max-height: 70vh;
    object-fit: contain;
    display: block;
    animation: mediaFadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-popup-video {
    width: 100%;
    max-height: 70vh;
    background: #000;
    display: block;
    animation: mediaFadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes mediaFadeIn {
    from {
        opacity: 0;
        transform: scale(0.98);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.feature-popup-noimage {
    padding: 5rem 2rem;
    text-align: center;
    color: var(--text-muted);
}

/* Professional Slider Controls */
/* ===== PREMIUM SLIDER CONTROLS ===== */
.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.4rem;
    padding: 1.2rem 1.8rem;
    background: linear-gradient(135deg, rgba(0,0,0,0.85), rgba(0,0,0,0.75));
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 18px;
    border: 2px solid rgba(212,175,55,0.4);
    backdrop-filter: blur(20px);
    z-index: 2;
    pointer-events: auto;
    animation: slideControlsIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
    box-shadow: 
        0 20px 60px rgba(0,0,0,0.6),
        0 0 40px rgba(212,175,55,0.2),
        inset 0 1px 0 rgba(255,255,255,0.08);
}

@keyframes slideControlsIn {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0) scale(1);
    }
}

/* Side Navigation Buttons - Premium */
.slider-btn.slider-prev,
.slider-btn.slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 60px;
    height: 60px;
    border-radius: 14px;
}

.slider-btn.slider-prev {
    left: 1.2rem;
}

.slider-btn.slider-next {
    right: 1.2rem;
}

/* Navigation Buttons - Premium Quality */
.slider-btn {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(212,175,55,0.25), rgba(212,175,55,0.08));
    border: 2px solid rgba(212,175,55,0.6);
    color: var(--gold-300);
    font-size: 1.3rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 12px 32px rgba(0,0,0,0.5),
        0 0 30px rgba(212,175,55,0.2),
        inset 0 1px 0 rgba(255,255,255,0.15),
        inset 0 -1px 0 rgba(0,0,0,0.3);
    position: relative;
    overflow: hidden;
}

.slider-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(212,175,55,0.3), transparent);
    opacity: 0;
    transition: opacity 0.35s;
    border-radius: 14px;
}

.slider-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.15), transparent 50%);
    opacity: 0;
    transition: opacity 0.35s;
    border-radius: 14px;
}

.slider-btn:hover {
    background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
    color: #000;
    transform: scale(1.15) translateY(-3px);
    border-color: var(--gold-300);
    box-shadow: 
        0 16px 48px rgba(212,175,55,0.5),
        0 0 50px rgba(212,175,55,0.4),
        inset 0 1px 0 rgba(255,255,255,0.3),
        inset 0 -1px 0 rgba(0,0,0,0.2);
}

.slider-btn:hover::before {
    opacity: 1;
}

.slider-btn:hover::after {
    opacity: 1;
}

.slider-btn:active {
    transform: scale(1.08) translateY(-1px);
    box-shadow: 
        0 8px 24px rgba(212,175,55,0.4),
        0 0 30px rgba(212,175,55,0.3),
        inset 0 2px 4px rgba(0,0,0,0.3);
}

/* Dots Container - Premium */
.slider-dots {
    display: flex;
    gap: 0.7rem;
    padding: 0.8rem 1.3rem;
    background: linear-gradient(135deg, rgba(0,0,0,0.7), rgba(0,0,0,0.5));
    border-radius: 26px;
    border: 1.5px solid rgba(212,175,55,0.35);
    backdrop-filter: blur(15px);
    box-shadow: 
        0 10px 30px rgba(0,0,0,0.4),
        inset 0 1px 0 rgba(255,255,255,0.08);
    position: relative;
}

.slider-dots::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(212,175,55,0.12), transparent);
    border-radius: 26px;
    opacity: 0;
    transition: opacity 0.35s;
    pointer-events: none;
}

.slider-dots:hover::before {
    opacity: 1;
}

/* Individual Dots - Premium */
.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.25);
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1.5px solid rgba(212,175,55,0.3);
    position: relative;
    box-shadow: inset 0 1px 2px rgba(0,0,0,0.3);
}

.slider-dot:hover { 
    background: rgba(255,255,255,0.5);
    border-color: rgba(212,175,55,0.7);
    transform: scale(1.25);
    box-shadow: 
        0 0 15px rgba(212,175,55,0.4),
        inset 0 1px 2px rgba(255,255,255,0.2);
}

.slider-dot.active { 
    background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
    border-color: var(--gold-200);
    transform: scale(1.45);
    box-shadow: 
        0 0 20px rgba(212,175,55,0.7),
        0 0 40px rgba(212,175,55,0.4),
        inset 0 1px 2px rgba(255,255,255,0.4);
    animation: dotPulseElite 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes dotPulseElite {
    0% {
        transform: scale(1);
        box-shadow: 0 0 10px rgba(212,175,55,0.3);
    }
    50% {
        transform: scale(1.6);
        box-shadow: 0 0 30px rgba(212,175,55,0.6);
    }
    100% {
        transform: scale(1.45);
        box-shadow: 0 0 20px rgba(212,175,55,0.7), 0 0 40px rgba(212,175,55,0.4);
    }
}

/* Slide Counter - Premium */
.slider-counter {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.8);
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(0,0,0,0.6), rgba(0,0,0,0.4));
    border-radius: 9px;
    border: 1.5px solid rgba(212,175,55,0.25);
    min-width: 65px;
    text-align: center;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 4px 12px rgba(0,0,0,0.3),
        inset 0 1px 0 rgba(255,255,255,0.05);
}

.slider-counter::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(212,175,55,0.12), transparent);
    opacity: 0;
    transition: opacity 0.35s;
    pointer-events: none;
}

.slider-counter:hover {
    border-color: rgba(212,175,55,0.5);
    background: linear-gradient(135deg, rgba(0,0,0,0.7), rgba(0,0,0,0.5));
    box-shadow: 
        0 6px 16px rgba(0,0,0,0.4),
        0 0 20px rgba(212,175,55,0.15),
        inset 0 1px 0 rgba(255,255,255,0.08);
}

.slider-counter:hover::before {
    opacity: 1;
}

.slider-counter span {
    color: var(--gold-300);
    font-weight: 800;
    transition: all 0.35s;
}

/* Progress Bar - Premium */
.slider-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-300), var(--gold-500), var(--gold-400));
    border-radius: 4px;
    transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 
        0 0 20px rgba(212,175,55,0.6),
        0 0 40px rgba(212,175,55,0.3);
}

/* Mobile Responsive - Premium */
@media (max-width: 768px) {
    .slider-controls {
        gap: 1.4rem;
        padding: 1.2rem 1.8rem;
        bottom: 1rem;
        border-radius: 16px;
        animation: slideControlsIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
    }
    
    .slider-btn.slider-prev,
    .slider-btn.slider-next {
        width: 52px;
        height: 52px;
        font-size: 1.1rem;
    }
    
    .slider-btn.slider-prev {
        left: 1rem;
    }
    
    .slider-btn.slider-next {
        right: 1rem;
    }
    
    .slider-dots {
        gap: 0.6rem;
        padding: 0.7rem 1.2rem;
    }
    
    .slider-dot {
        width: 9px;
        height: 9px;
    }
    
    .slider-dot.active {
        transform: scale(1.4);
    }
    
    .slider-counter {
        font-size: 0.8rem;
        padding: 0.45rem 0.9rem;
        min-width: 60px;
    }
    
    .feature-popup-image,
    .feature-popup-video {
        max-height: 60vh;
    }

    /* Mobile media badge adjustments */
    .media-badge {
        width: 42px;
        height: 42px;
        font-size: 1.1rem;
        bottom: 1rem;
        right: 1rem;
    }

    .media-badge-tooltip {
        font-size: 0.7rem;
        padding: 6px 10px;
        bottom: calc(100% + 8px);
    }
}
}

@media (max-width: 480px) {
    .slider-controls {
        gap: 1rem;
        padding: 1rem 1.4rem;
        bottom: 0.8rem;
        border-radius: 14px;
    }
    
    .slider-btn.slider-prev,
    .slider-btn.slider-next {
        width: 48px;
        height: 48px;
        font-size: 1rem;
    }
    
    .slider-btn.slider-prev {
        left: 0.7rem;
    }
    
    .slider-btn.slider-next {
        right: 0.7rem;
    }
    
    .slider-dots {
        gap: 0.5rem;
        padding: 0.6rem 1rem;
    }
    
    .slider-dot {
        width: 8px;
        height: 8px;
    }
    
    .slider-dot.active {
        transform: scale(1.35);
    }
    
    .slider-counter {
        font-size: 0.75rem;
        padding: 0.4rem 0.75rem;
        min-width: 55px;
    }
    
    .feature-popup-image,
    .feature-popup-video {
        max-height: 50vh;
    }
}
.feature-popup-media {
    position: relative;
}

/* Card Hover States */
.system-card.has-media,
.feature-mini.has-image {
    cursor: pointer;
}

.system-card.has-media:hover,
.feature-mini.has-image:hover {
    border-color: rgba(212, 175, 55, 0.4);
}



/* System card with media indicator */
.system-card .media-badge {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    font-size: 1rem;
    opacity: 0.4;
    transition: all 0.3s;
}

.system-card:hover .media-badge {
    opacity: 1;
    transform: scale(1.15);
}

.system-card.has-media {
    cursor: pointer;
}

.system-card.has-media:hover {
    border-color: rgba(212, 175, 55, 0.4);
}


/* Feature Popup Description */
.feature-popup-desc {
    padding: 1.5rem 2rem;
    background: var(--bg-elevated);
    border-top: 1px solid var(--border-subtle);
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
}

/* Feature Tooltip */
.feature-mini[data-tooltip] {
    position: relative;
    cursor: help;
}

.feature-mini[data-tooltip]::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    padding: 0.75rem 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border-accent);
    border-radius: 10px;
    color: var(--text-secondary);
    font-size: 0.8rem;
    line-height: 1.5;
    white-space: normal;
    width: max-content;
    max-width: 280px;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 100;
    pointer-events: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.feature-mini[data-tooltip]:hover::after {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Feature with content indicator */
.feature-mini.has-content {
    cursor: pointer;
}

.feature-mini.has-content:hover {
    border-color: rgba(212, 175, 55, 0.4);
}


/* ═══════════════════════════════════════════════════════════════
   LANGUAGE SELECTOR
═══════════════════════════════════════════════════════════════ */

.lang-selector {
    position: relative;
    margin-left: 0.5rem;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-subtle);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 500;
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--gold-500);
    color: var(--text-white);
}

.lang-flag {
    font-size: 1.1rem;
}

.flag-img {
    width: 24px;
    height: 16px;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.flag-emoji {
    font-size: 1.1rem;
    line-height: 1;
}

.lang-option .flag-img {
    width: 28px;
    height: 18px;
}

.lang-code {
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.05em;
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 160px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    padding: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 10000;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    max-height: 320px;
    overflow-y: auto;
}

.lang-dropdown::-webkit-scrollbar {
    width: 4px;
}

.lang-dropdown::-webkit-scrollbar-thumb {
    background: var(--gold-700);
    border-radius: 2px;
}

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

.lang-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 0.75rem;
    border-radius: 8px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.2s ease;
}

.lang-option:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--text-white);
}

.lang-option.active {
    background: rgba(212, 175, 55, 0.15);
    color: var(--gold-400);
}

.lang-option .lang-flag {
    font-size: 1.2rem;
}

/* Mobile Language Selector */
@media (max-width: 768px) {
    .lang-selector {
        position: absolute;
        left: auto;
        right: auto;
        top: 10%;
        transform: translateY(-50%);
        margin: 0;
        z-index: 100;
    }
    
    .lang-btn {
        width: 40px;
        height: 40px;
        border-radius: 10px;
        padding: 0;
        justify-content: center;
        background: rgba(0,0,0,0.4);
        border: 1px solid rgba(212,175,55,0.3);
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    }
    
    .lang-btn .lang-code {
        display: none;
    }
    
    .lang-btn .lang-flag {
        font-size: 1.2rem;
    }
    
    .lang-dropdown {
        bottom: auto;
        top: calc(100% + 10px);
        right: auto;
        left: 0;
        transform: translateY(-10px);
    }
    
    .lang-dropdown.open {
        transform: translateY(0);
    }
}
