/* ========================================
   METHANE PC - Ultimate Premium Design
   ======================================== */

:root {
    --accent: #00ff41;
    --accent-dark: #00cc33;
    --accent-glow: rgba(0, 255, 65, 0.4);
    --accent-dim: rgba(0, 255, 65, 0.1);
    
    --bg: #050505;
    --bg-elevated: #0a0a0a;
    --bg-card: #111111;
    --bg-hover: #1a1a1a;
    
    --text: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.5);
    
    --border: rgba(255, 255, 255, 0.08);
    --border-accent: rgba(0, 255, 65, 0.3);
    
    --font-display: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { 
    scroll-behavior: smooth;
    font-size: 18px;
}

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

/* Background Effects */
.bg-grid {
    position: fixed;
    inset: 0;
    background-image: 
        linear-gradient(rgba(0,255,65,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,255,65,0.03) 1px, transparent 1px);
    background-size: 80px 80px;
    pointer-events: none;
    z-index: 1;
}

.bg-glow {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100vw;
    height: 100vh;
    background: radial-gradient(ellipse at center, rgba(0,255,65,0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

#particles {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 2;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    z-index: 100;
    background: linear-gradient(to bottom, rgba(5,5,5,0.95), transparent);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 0;
}

.logo {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--text);
    text-decoration: none;
    letter-spacing: 0.15em;
}

.logo-bracket { 
    color: var(--accent); 
    font-weight: 300;
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { text-shadow: 0 0 10px var(--accent-glow); }
    50% { text-shadow: 0 0 30px var(--accent), 0 0 60px var(--accent-glow); }
}

.nav-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.live-counter {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 0.95rem;
}

.pulse {
    width: 10px;
    height: 10px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse-dot 1.5s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; box-shadow: 0 0 5px var(--accent); }
    50% { opacity: 0.5; box-shadow: 0 0 20px var(--accent-glow); }
}

.counter-label { color: var(--text-muted); }
.counter-num { 
    color: var(--accent); 
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.1rem;
}

.lang-select {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text);
    padding: 0.5rem 2rem 0.5rem 0.75rem;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: border-color 0.2s ease;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23aaa' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.6rem center;
}

.lang-select:hover,
.lang-select:focus {
    border-color: var(--accent);
    outline: none;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 7rem 5% 3rem;
    gap: 3rem;
    position: relative;
    z-index: 10;
}

.hero-content {
    max-width: 650px;
}

.hero-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-display);
    font-size: 20vw;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px rgba(0,255,65,0.1);
    white-space: nowrap;
    pointer-events: none;
    z-index: -1;
    opacity: 0.5;
}

.hero-content { max-width: 650px; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: var(--accent-dim);
    border: 1px solid var(--border-accent);
    border-radius: 100px;
    font-size: 0.95rem;
    color: var(--accent);
    margin-bottom: 2rem;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: blink 1s ease-in-out infinite;
}

@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(4rem, 8vw, 7rem);
    font-weight: 800;
    line-height: 0.95;
    margin-bottom: 1.5rem;
}

.title-main { display: block; }

.title-highlight {
    display: block;
    color: var(--accent);
    text-shadow: 0 0 40px var(--accent-glow);
}

.hero-subtitle {
    font-size: 1.35rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s var(--ease);
}

.btn-glow {
    background: var(--accent);
    color: var(--bg);
    box-shadow: 0 0 30px var(--accent-glow);
}

.btn-glow:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px var(--accent-glow);
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border: 2px solid var(--border);
}

.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.btn-lg { padding: 1.5rem 3rem; font-size: 1.25rem; }

/* Countdown */
.countdown {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cd-item {
    text-align: center;
    min-width: 90px;
}

.cd-num {
    display: block;
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    color: var(--text);
}

.cd-label {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

.cd-sep {
    font-size: 2.5rem;
    color: var(--accent);
    opacity: 0.4;
    font-weight: 300;
}

/* 3D PC - BIG & PROPERLY CONNECTED */
.hero-pc {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 2rem;
}

/* Outer Glow Around PC */
.hero-pc::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 650px;
    background: radial-gradient(
        ellipse at center,
        rgba(0, 255, 65, 0.15) 0%,
        rgba(0, 255, 65, 0.05) 30%,
        transparent 70%
    );
    pointer-events: none;
    animation: outerGlowPulse 4s ease-in-out infinite;
    z-index: -1;
}

@keyframes outerGlowPulse {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.05); }
}

.pc-container {
    width: 450px;
    height: 600px;
    perspective: 2000px;
}

.pc-model {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transform: rotateY(-25deg) rotateX(8deg);
    animation: pcFloat 6s ease-in-out infinite;
}

@keyframes pcFloat {
    0%, 100% { transform: rotateY(-25deg) rotateX(8deg) translateY(0); }
    50% { transform: rotateY(-20deg) rotateX(5deg) translateY(-20px); }
}

.face {
    position: absolute;
    background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
    border: 2px solid rgba(255,255,255,0.1);
    backface-visibility: hidden;
    box-shadow: 
        inset 0 0 20px rgba(0,0,0,0.5),
        0 0 30px rgba(0,0,0,0.3);
}

/* Front Face */
.face-front {
    width: 160px;
    height: 480px;
    transform: translateZ(145px);
    left: 145px;
    top: 60px;
    border-radius: 12px 12px 4px 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 30px;
}

.front-mesh {
    width: 85%;
    height: 55%;
    background: 
        repeating-linear-gradient(0deg, transparent, transparent 4px, rgba(0,255,65,0.06) 4px, rgba(0,255,65,0.06) 5px),
        repeating-linear-gradient(90deg, transparent, transparent 4px, rgba(0,255,65,0.06) 4px, rgba(0,255,65,0.06) 5px),
        linear-gradient(180deg, rgba(0,255,65,0.02), transparent);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.front-mesh::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at 50% 100%,
        rgba(0,255,65,0.1) 0%,
        transparent 70%
    );
    animation: meshGlow 3s ease-in-out infinite;
}

@keyframes meshGlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.7; }
}

.front-rgb {
    width: 80%;
    height: 6px;
    background: linear-gradient(90deg, var(--accent), #00ffff, #ff00ff, var(--accent));
    background-size: 200% 100%;
    border-radius: 3px;
    margin: 25px 0;
    animation: rgbFlow 2s linear infinite;
    box-shadow: 0 0 20px var(--accent-glow);
}

@keyframes rgbFlow {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

.front-usb {
    display: flex;
    gap: 12px;
    margin-bottom: 30px;
}

.usb-port {
    width: 18px;
    height: 18px;
    background: #333;
    border-radius: 4px;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.5);
}

.usb-port.highlight {
    background: var(--accent);
    box-shadow: 0 0 15px var(--accent-glow);
}

.power-btn {
    margin-top: auto;
    margin-bottom: 40px;
    width: 55px;
    height: 55px;
    border: 3px solid #444;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.power-icon {
    width: 35px;
    height: 35px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 30px var(--accent-glow);
    animation: powerPulse 2s ease-in-out infinite;
}

@keyframes powerPulse {
    0%, 100% { box-shadow: 0 0 20px var(--accent-glow); }
    50% { box-shadow: 0 0 40px var(--accent), 0 0 60px var(--accent-glow); }
}

/* Back Face */
.face-back {
    width: 160px;
    height: 480px;
    transform: translateZ(-145px) rotateY(180deg);
    left: 145px;
    top: 60px;
    border-radius: 12px;
    padding: 20px;
}

.back-io {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 30px;
}

.io-row {
    display: flex;
    gap: 5px;
}

.io-row span {
    height: 25px;
    background: #222;
    border-radius: 4px;
    border: 1px solid #333;
}

.io-row:nth-child(1) span { width: 30px; }
.io-row:nth-child(1) span:nth-child(3) { width: 40px; }
.io-row:nth-child(2) span { width: 35px; }
.io-row:nth-child(3) span { width: 50px; }

.back-vent {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.vent-hole {
    height: 40px;
    background: repeating-linear-gradient(90deg, #1a1a1a, #1a1a1a 4px, #111 4px, #111 8px);
    border-radius: 4px;
}

.psu-area {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    height: 80px;
    background: linear-gradient(180deg, #222, #111);
    border-radius: 8px;
}

/* Left Face - Glass Panel */
.face-left {
    width: 290px;
    height: 480px;
    transform: rotateY(-90deg) translateZ(80px);
    left: 80px;
    top: 60px;
    background: linear-gradient(135deg, rgba(0,255,65,0.08), rgba(0,0,0,0.95));
    border: 3px solid rgba(0,255,65,0.3);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 
        inset 0 0 40px rgba(0,255,65,0.1),
        0 0 20px rgba(0,255,65,0.2);
}

.glass-panel {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Ambient Glow from Inside */
.glass-panel::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse at 50% 30%,
        rgba(0,255,65,0.08) 0%,
        transparent 60%
    );
    animation: ambientGlow 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes ambientGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}

/* Internal Case Lighting */
.mobo-light {
    position: absolute;
    bottom: 80px;
    left: 30px;
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), #00ffff, var(--accent));
    background-size: 200% 100%;
    box-shadow: 0 0 15px var(--accent);
    animation: moboPulse 2s ease-in-out infinite, rgbFlow 3s linear infinite;
}

/* GPU */
.part.gpu {
    position: absolute;
    top: 140px;
    left: 20px;
    width: 250px;
    height: 90px;
    transform: rotate(-4deg);
}

.gpu-body {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #2a2a2a, #1a1a1a);
    border-radius: 12px;
    border: 2px solid #333;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
}

.gfan {
    width: 65px;
    height: 65px;
    background: radial-gradient(circle at center, #1a1a1a, #0a0a0a);
    border-radius: 50%;
    border: 3px solid #333;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 0 15px rgba(0,0,0,0.8);
}

.fan-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 18px;
    height: 18px;
    background: radial-gradient(circle at 30% 30%, #555, #222);
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 2px 5px rgba(0,0,0,0.5);
}

.gpu-brand {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 700;
    color: rgba(255,255,255,0.3);
    letter-spacing: 2px;
}

.blades {
    position: absolute;
    inset: 0;
    animation: fanSpin 0.3s linear infinite;
}

.blades::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80%;
    height: 4px;
    background: linear-gradient(90deg, transparent, #444, transparent);
    transform: translate(-50%, -50%);
}

.blades::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 4px;
    height: 80%;
    background: linear-gradient(180deg, transparent, #444, transparent);
    transform: translate(-50%, -50%);
}

@keyframes fanSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.gpu-rgb {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 80%;
    background: linear-gradient(to bottom, var(--accent), #00ffff);
    border-radius: 3px;
    box-shadow: 0 0 20px var(--accent-glow);
    animation: gpuRgb 3s ease-in-out infinite;
}

@keyframes gpuRgb {
    0%, 100% { filter: hue-rotate(0deg); }
    50% { filter: hue-rotate(45deg); }
}

/* CPU Cooler */
.part.cpu {
    position: absolute;
    top: 30px;
    left: 60px;
}

.pump {
    width: 80px;
    height: 80px;
    background: linear-gradient(145deg, #333, #1a1a1a);
    border-radius: 50%;
    border: 3px solid #444;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.pump-ring {
    width: 60px;
    height: 60px;
    border: 4px solid var(--accent);
    border-top-color: transparent;
    border-radius: 50%;
    animation: pumpRotate 3s linear infinite;
}

.pump-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    box-shadow: 0 0 40px var(--accent-glow);
    animation: pumpPulse 2s ease-in-out infinite;
}

@keyframes pumpRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes pumpPulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

.radiator {
    position: absolute;
    top: 100px;
    left: -40px;
    display: flex;
    gap: 8px;
}

.rad-fan {
    width: 70px;
    height: 70px;
    background: radial-gradient(circle at center, #1a1a1a, #0a0a0a);
    border-radius: 50%;
    border: 3px solid #333;
    position: relative;
    overflow: hidden;
    box-shadow: 
        inset 0 0 15px rgba(0,0,0,0.8),
        0 0 20px rgba(0,255,65,0.1);
}

.rad-fan .blades {
    animation: fanSpin 0.25s linear infinite;
}

.rad-fan::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    background: radial-gradient(circle at 30% 30%, #555, #222);
    border-radius: 50%;
    z-index: 2;
}

/* RAM */
.part.ram-kit {
    position: absolute;
    top: 260px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.ram {
    width: 14px;
    height: 90px;
    background: linear-gradient(90deg, #333, #222);
    border-radius: 3px;
    position: relative;
}

.ram-light {
    position: absolute;
    top: 5px;
    left: 3px;
    right: 3px;
    height: 4px;
    background: var(--accent);
    border-radius: 2px;
    box-shadow: 0 0 12px var(--accent);
    animation: ramGlow 2s ease-in-out infinite;
}

.ram:nth-child(2) .ram-light { animation-delay: 0.2s; }
.ram:nth-child(3) .ram-light { animation-delay: 0.4s; }
.ram:nth-child(4) .ram-light { animation-delay: 0.6s; }

@keyframes ramGlow {
    0%, 100% { opacity: 0.3; box-shadow: 0 0 5px var(--accent); }
    50% { opacity: 1; box-shadow: 0 0 20px var(--accent); }
}

.mobo-light {
    position: absolute;
    bottom: 80px;
    left: 30px;
    width: 100px;
    height: 3px;
    background: var(--accent);
    box-shadow: 0 0 15px var(--accent);
    animation: moboPulse 2s ease-in-out infinite;
}

@keyframes moboPulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

.cable {
    position: absolute;
    background: linear-gradient(90deg, #333, #444);
    border-radius: 2px;
}

.c1 { width: 5px; height: 180px; top: 120px; left: 25px; transform: rotate(-8deg); }
.c2 { width: 4px; height: 100px; top: 250px; right: 60px; }

/* Right Face */
.face-right {
    width: 290px;
    height: 480px;
    transform: rotateY(90deg) translateZ(80px);
    left: 80px;
    top: 60px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.side-logo {
    font-family: var(--font-display);
    font-size: 6rem;
    font-weight: 900;
    color: rgba(0,255,65,0.15);
    text-shadow: 
        0 0 30px var(--accent-glow),
        0 0 60px rgba(0,255,65,0.2),
        0 0 90px rgba(0,255,65,0.1);
    animation: logoGlow 3s ease-in-out infinite;
}

@keyframes logoGlow {
    0%, 100% { 
        opacity: 0.6;
        text-shadow: 0 0 30px var(--accent-glow), 0 0 60px rgba(0,255,65,0.2);
    }
    50% { 
        opacity: 1;
        text-shadow: 0 0 50px var(--accent), 0 0 80px rgba(0,255,65,0.4), 0 0 100px rgba(0,255,65,0.2);
    }
}

.side-lines {
    position: absolute;
    top: 40px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.side-lines span {
    width: 120px;
    height: 2px;
    background: rgba(255,255,255,0.08);
}

/* Top Face */
.face-top {
    width: 160px;
    height: 290px;
    transform: rotateX(90deg) translateZ(80px);
    left: 145px;
    top: -85px;
    border-radius: 12px 12px 0 0;
}

.top-fan-grid {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.tfan {
    width: 110px;
    height: 55px;
    background: #111;
    border-radius: 50%;
    border: 2px solid #333;
    overflow: hidden;
}

.top-mesh {
    position: absolute;
    inset: 15px;
    background: repeating-linear-gradient(90deg, transparent, transparent 4px, rgba(0,255,65,0.03) 4px, rgba(0,255,65,0.03) 5px);
    border-radius: 8px;
}

.top-rgb-strip {
    position: absolute;
    top: 8px;
    left: 20px;
    right: 20px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), #00ffff, #ff00ff, var(--accent));
    background-size: 200% 100%;
    border-radius: 2px;
    animation: rgbFlow 2s linear infinite;
    box-shadow: 0 0 15px var(--accent-glow);
}

.tfan {
    width: 110px;
    height: 55px;
    background: radial-gradient(circle at center, #1a1a1a, #0a0a0a);
    border-radius: 50%;
    border: 2px solid #333;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.8);
}

.tfan .blades {
    animation: fanSpin 0.15s linear infinite;
}

/* Bottom Face */
.face-bottom {
    width: 160px;
    height: 290px;
    transform: rotateX(-90deg) translateZ(80px);
    left: 145px;
    top: 250px;
    border-radius: 0 0 12px 12px;
}

.bottom-psu {
    position: absolute;
    bottom: 60px;
    left: 15px;
    right: 15px;
    height: 80px;
    background: linear-gradient(180deg, #1a1a1a, #0d0d0d);
    border-radius: 8px;
}

.psu-vent {
    width: 80%;
    height: 40px;
    margin: 20px auto;
    background: repeating-linear-gradient(90deg, #222, #222 5px, #111 5px, #111 10px);
    border-radius: 4px;
}

.feet {
    position: absolute;
    bottom: 20px;
    width: 100%;
    display: flex;
    justify-content: space-around;
}

.feet span {
    width: 25px;
    height: 12px;
    background: linear-gradient(180deg, #444, #222);
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

/* PC Shadow with animated glow */
.pc-shadow {
    position: absolute;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%) scaleY(0.3);
    width: 400px;
    height: 600px;
    background: radial-gradient(ellipse at center, rgba(0,255,65,0.2), transparent 70%);
    filter: blur(40px);
    opacity: 0.6;
    pointer-events: none;
    animation: shadowPulse 4s ease-in-out infinite;
}

@keyframes shadowPulse {
    0%, 100% { opacity: 0.4; transform: translateX(-50%) scaleY(0.3) scale(1); }
    50% { opacity: 0.7; transform: translateX(-50%) scaleY(0.3) scale(1.1); }
}

/* Enhanced Fan Blades */
.blades {
    position: absolute;
    inset: 0;
    animation: fanSpin 0.2s linear infinite;
}

.blades::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 90%;
    height: 6px;
    background: linear-gradient(90deg, transparent, #555, #777, #555, transparent);
    transform: translate(-50%, -50%);
    border-radius: 2px;
}

.blades::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 6px;
    height: 90%;
    background: linear-gradient(180deg, transparent, #555, #777, #555, transparent);
    transform: translate(-50%, -50%);
    border-radius: 2px;
}

/* Glass Panel Reflection Effect */
.glass-panel::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 40%,
        rgba(255,255,255,0.03) 50%,
        transparent 60%
    );
    animation: glassShimmer 5s ease-in-out infinite;
    pointer-events: none;
}

@keyframes glassShimmer {
    0% { transform: translateX(-100%) translateY(-100%); }
    100% { transform: translateX(100%) translateY(100%); }
}

/* Enhanced RGB Flow */
.front-rgb {
    width: 80%;
    height: 8px;
    background: linear-gradient(90deg, 
        var(--accent), #00ffff, #ff00ff, #ffff00, var(--accent),
        var(--accent), #00ffff, #ff00ff, #ffff00, var(--accent)
    );
    background-size: 200% 100%;
    border-radius: 4px;
    margin: 25px 0;
    animation: rgbFlow 3s linear infinite;
    box-shadow: 
        0 0 20px var(--accent-glow),
        0 0 40px rgba(0,255,65,0.3),
        inset 0 0 10px rgba(255,255,255,0.2);
}

@keyframes rgbFlow {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

/* LED Indicators on Front */
.front-leds {
    display: flex;
    gap: 8px;
    margin-top: 15px;
}

.led {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #333;
    animation: ledBlink 2s ease-in-out infinite;
}

.led:nth-child(1) { background: var(--accent); animation-delay: 0s; }
.led:nth-child(2) { background: #00ffff; animation-delay: 0.3s; }
.led:nth-child(3) { background: #ff00ff; animation-delay: 0.6s; }

@keyframes ledBlink {
    0%, 100% { opacity: 0.3; box-shadow: none; }
    50% { opacity: 1; box-shadow: 0 0 10px currentColor; }
}

/* Heat Waves / Airflow Effect */
.heat-waves {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 40px;
    pointer-events: none;
}

.heat-wave {
    position: absolute;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0,255,65,0.2), transparent);
    animation: heatRise 2s ease-out infinite;
    opacity: 0;
}

.heat-wave:nth-child(1) { animation-delay: 0s; top: 0; }
.heat-wave:nth-child(2) { animation-delay: 0.4s; top: 10px; }
.heat-wave:nth-child(3) { animation-delay: 0.8s; top: 20px; }

@keyframes heatRise {
    0% { transform: translateY(0) scaleX(0.5); opacity: 0; }
    20% { opacity: 0.6; }
    100% { transform: translateY(-30px) scaleX(1.2); opacity: 0; }
}

/* Particle Effects around PC */
.pc-particles {
    position: absolute;
    inset: -100px;
    pointer-events: none;
    overflow: visible;
}

.pc-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 4s ease-in-out infinite;
}

.pc-particle:nth-child(1) { left: 20%; top: 30%; animation-delay: 0s; }
.pc-particle:nth-child(2) { left: 80%; top: 40%; animation-delay: 1s; }
.pc-particle:nth-child(3) { left: 30%; top: 70%; animation-delay: 2s; }
.pc-particle:nth-child(4) { left: 70%; top: 20%; animation-delay: 3s; }
.pc-particle:nth-child(5) { left: 50%; top: 80%; animation-delay: 1.5s; }
.pc-particle:nth-child(6) { left: 15%; top: 50%; animation-delay: 2.5s; }

@keyframes particleFloat {
    0%, 100% { 
        transform: translateY(0) scale(0); 
        opacity: 0;
    }
    10% { 
        opacity: 0.8;
        transform: scale(1);
    }
    90% { 
        opacity: 0.8;
    }
    100% { 
        transform: translateY(-100px) scale(0);
        opacity: 0;
    }
}

/* Stats Bar */
.stats-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    padding: 3rem 5%;
    background: var(--bg-elevated);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.stat {
    text-align: center;
}

.stat-num {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-text {
    display: block;
    font-size: 0.95rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.stat-div {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, transparent, var(--border-accent), transparent);
}

/* Benefits */
.benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.benefit svg {
    width: 24px;
    height: 24px;
    fill: var(--accent);
    flex-shrink: 0;
}

/* Referral Dashboard Styles */
.copy-btn:hover { background: var(--accent); }

.copy-btn svg { width: 24px; height: 24px; fill: var(--text); }

.ref-bonus {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Section Title */
.section-title {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.section-title.center { text-align: center; }

/* Waitlist Section */
.waitlist-section {
    padding: 6rem 5%;
    background: var(--bg);
}

.waitlist-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.waitlist-left {
    padding-top: 2rem;
}

.section-desc {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* Waitlist Form Box */
.waitlist-form-box {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 2.5rem;
    position: relative;
}

.wl-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.wl-form.hidden {
    display: none;
}

.form-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.form-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

/* Input Groups */
.input-group {
    position: relative;
}

.input-lg {
    width: 100%;
    padding: 1.25rem 1rem;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--text);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.input-lg:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-dim);
}

.input-group label {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 1rem;
    pointer-events: none;
    transition: all 0.3s ease;
    background: var(--bg-elevated);
    padding: 0 0.25rem;
}

.input-lg:focus + label,
.input-lg:not(:placeholder-shown) + label {
    top: 0;
    font-size: 0.8rem;
    color: var(--accent);
}

/* Referral Row */
.referral-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.input-sm {
    flex: 1;
    padding: 0.75rem 1rem;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text);
    font-size: 0.9rem;
    max-width: 120px;
}

.input-sm:focus {
    outline: none;
    border-color: var(--accent);
}

/* Buttons */
.btn-submit {
    width: 100%;
    padding: 1.25rem;
    background: var(--accent);
    color: var(--bg);
    border: none;
    border-radius: 12px;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px var(--accent-glow);
}

.btn-text {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 0.9rem;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s;
}

.btn-text:hover {
    color: var(--accent);
}

.form-note {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 1rem;
}

/* Success State - POP OUT STYLE */
.wl-success {
    text-align: center;
    padding: 2rem;
}

.wl-success.hidden {
    display: none;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 0 40px var(--accent-glow);
    animation: successPop 0.5s ease-out;
}

@keyframes successPop {
    0% { transform: scale(0); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.wl-success h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text);
}

.your-position {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.pos-num {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent);
    display: block;
    margin-top: 0.5rem;
    text-shadow: 0 0 20px var(--accent-glow);
}

/* Referral Share */
.referral-share {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.5rem;
    margin-top: 1.5rem;
}

.referral-share p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.code-box {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--bg);
    border: 1px solid var(--border-accent);
    border-radius: 12px;
    padding: 0.75rem 1rem;
    margin-bottom: 0.75rem;
}

.code-box code {
    flex: 1;
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 0.05em;
}

.copy-btn {
    width: 40px;
    height: 40px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}

.copy-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
}

.copy-btn svg {
    width: 20px;
    height: 20px;
    fill: var(--text);
}

.copy-btn:hover svg {
    fill: var(--bg);
}

.ref-bonus {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

/* Waitlist Footer Link */
.waitlist-footer-link {
    grid-column: 1 / -1;
    text-align: center;
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-top: 2rem;
}

.waitlist-footer-link a {
    color: var(--accent);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
    margin-left: 0.3rem;
}

.waitlist-footer-link a:hover {
    color: var(--accent-dark);
}

/* Responsive */
@media (max-width: 900px) {
    .waitlist-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .waitlist-left {
        text-align: center;
        padding-top: 0;
    }
    
    .benefits {
        align-items: center;
    }
}

@media (max-width: 480px) {
    .waitlist-form-box {
        padding: 1.5rem;
    }
    
    .form-title {
        font-size: 1.5rem;
    }
    
    .success-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .pos-num {
        font-size: 2rem;
    }
}

/* Features */
.features {
    padding: 8rem 5%;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 3rem auto 0;
}

.feature-card {
    padding: 2.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    transition: all 0.3s var(--ease);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--border-accent);
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}

.f-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1.5rem;
    background: var(--accent-dim);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.f-icon svg { width: 32px; height: 32px; fill: var(--accent); }

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 1.05rem;
}

/* Game Section - Typing */
.game-section {
    padding: 8rem 5%;
    background: var(--bg-elevated);
}

.game-container {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.game-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.game-subtitle {
    color: var(--text-secondary);
    font-size: 1.25rem;
    margin-bottom: 3rem;
}

.typing-game {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 3rem;
}

.word-display {
    margin-bottom: 2rem;
}

.word {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 800;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    text-shadow: 0 0 40px var(--accent-glow);
}

.word-input {
    width: 100%;
    padding: 1.5rem;
    background: var(--bg);
    border: 2px solid var(--border);
    border-radius: 16px;
    color: var(--text);
    font-family: var(--font-display);
    font-size: 2rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
}

.word-input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 30px var(--accent-dim);
}

.game-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
}

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

.g-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.g-value {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
}

.btn-game {
    background: var(--bg);
    border: 2px solid var(--border);
    color: var(--text);
    font-size: 1.1rem;
}

.btn-game:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* Roadmap */
.roadmap {
    padding: 8rem 5%;
}

.timeline {
    max-width: 800px;
    margin: 4rem auto 0;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: var(--border);
}

.timeline-item {
    display: flex;
    justify-content: flex-end;
    padding-right: 50%;
    position: relative;
    margin-bottom: 4rem;
}

.timeline-item:nth-child(even) {
    justify-content: flex-start;
    padding-right: 0;
    padding-left: 50%;
}

.tl-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: var(--border);
    border-radius: 50%;
    border: 4px solid var(--bg);
}

.timeline-item.done .tl-dot { background: var(--accent); }
.timeline-item.active .tl-dot {
    background: var(--accent);
    box-shadow: 0 0 20px var(--accent-glow);
    animation: pulse-dot 1.5s ease-in-out infinite;
}

.tl-content {
    max-width: 300px;
    padding: 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    margin: 0 2rem;
}

.timeline-item.active .tl-content {
    border-color: var(--border-accent);
}

.tl-date {
    font-size: 0.85rem;
    color: var(--accent);
    font-weight: 600;
}

.tl-content h4 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin: 0.5rem 0;
}

.tl-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* FAQ */
.faq {
    padding: 8rem 5%;
    background: var(--bg-elevated);
}

.faq-list {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
}

.faq-q {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: var(--bg-card);
    border: none;
    color: var(--text);
    font-size: 1.15rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.faq-q:hover { background: var(--bg-hover); }

.faq-q svg {
    width: 24px;
    height: 24px;
    fill: var(--text-muted);
    transition: transform 0.3s;
}

.faq-item.open .faq-q svg { transform: rotate(180deg); }

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s var(--ease);
}

.faq-item.open .faq-a { max-height: 200px; }

.faq-a p {
    padding: 1.5rem;
    color: var(--text-secondary);
    line-height: 1.7;
    border-top: 1px solid var(--border);
}

/* Games Arcade */
.games-arcade {
    padding: 8rem 5%;
    background: var(--bg-elevated);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1400px;
    margin: 3rem auto 0;
}

.game-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 1.5rem;
    transition: all 0.3s var(--ease);
}

.game-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-accent);
}

.game-card.featured {
    border-color: var(--accent);
    box-shadow: 0 0 30px var(--accent-dim);
}

.game-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.game-header h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
}

.game-tag {
    padding: 0.25rem 0.75rem;
    background: var(--accent);
    color: var(--bg);
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: 100px;
    text-transform: uppercase;
}

.game-preview {
    height: 120px;
    background: var(--bg);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    overflow: hidden;
}

.preview-word {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
    text-shadow: 0 0 20px var(--accent-glow);
    animation: pulse-text 2s ease-in-out infinite;
}

@keyframes pulse-text {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.reaction-btn {
    width: 60px;
    height: 60px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 30px var(--accent-glow);
    animation: pulse-btn 1.5s ease-in-out infinite;
}

@keyframes pulse-btn {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.preview-num {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    letter-spacing: 0.3em;
}

.aim-target {
    width: 50px;
    height: 50px;
    border: 3px solid var(--accent);
    border-radius: 50%;
    position: relative;
}

.aim-target::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: var(--accent);
    border-radius: 50%;
}

.game-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.btn-game-sm {
    width: 100%;
    padding: 0.875rem;
    background: var(--bg);
    border: 1px solid var(--border);
    color: var(--text);
    font-size: 0.9rem;
}

.btn-game-sm:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* Game Overlays */
.game-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(5, 5, 5, 0.95);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.game-overlay.show { display: flex; }

.overlay-content {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 3rem;
    text-align: center;
    min-width: 400px;
}

.overlay-content.fullscreen {
    width: 90vw;
    height: 90vh;
    display: flex;
    flex-direction: column;
}

.overlay-content h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 2rem;
}

/* Reaction Game */
.reaction-area {
    width: 300px;
    height: 200px;
    background: #cc0000;
    border-radius: 16px;
    margin: 0 auto 2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    transition: background 0.1s;
}

.reaction-area.waiting {
    background: #cc0000;
}

.reaction-area.ready {
    background: var(--accent);
}

.reaction-result {
    display: none;
    margin-bottom: 2rem;
}

.reaction-result.show { display: block; }

.result-time {
    font-family: var(--font-display);
    font-size: 5rem;
    font-weight: 800;
    color: var(--accent);
}

.result-unit {
    font-size: 1.5rem;
    color: var(--text-muted);
}

/* Memory Game */
.memory-level {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.memory-level span {
    color: var(--accent);
    font-weight: 700;
}

.memory-display {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: 0.5em;
    margin-bottom: 2rem;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.memory-input input {
    width: 100%;
    padding: 1rem;
    background: var(--bg);
    border: 2px solid var(--border);
    border-radius: 12px;
    color: var(--text);
    font-family: var(--font-display);
    font-size: 2rem;
    text-align: center;
    letter-spacing: 0.3em;
    margin-bottom: 1rem;
}

.memory-input input:focus {
    outline: none;
    border-color: var(--accent);
}

/* Aim Game */
.aim-header {
    display: flex;
    justify-content: space-between;
    padding: 1rem 2rem;
    background: var(--bg);
    border-radius: 12px;
    margin-bottom: 1rem;
    font-family: var(--font-display);
    font-size: 1.25rem;
}

.aim-header span span {
    color: var(--accent);
}

.aim-field {
    flex: 1;
    background: var(--bg);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    cursor: crosshair;
}

.aim-target-circle {
    position: absolute;
    width: 50px;
    height: 50px;
    border: 3px solid var(--accent);
    border-radius: 50%;
    background: rgba(0, 255, 65, 0.2);
    cursor: pointer;
    transition: transform 0.1s;
}

.aim-target-circle:active {
    transform: scale(0.9);
}

.aim-target-circle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 15px;
    height: 15px;
    background: var(--accent);
    border-radius: 50%;
}

/* Logo Image Styles */
.logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

/* CTA Section */
.cta-section {
    padding: 8rem 5%;
    text-align: center;
    background: linear-gradient(180deg, var(--bg-elevated), var(--bg));
}

.cta-content h2 {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.35rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

/* Footer */
.footer {
    padding: 4rem 5% 2rem;
    border-top: 1px solid var(--border);
}

.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto 3rem;
}

.footer-brand {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
}

.footer-brand p {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
    margin-top: 0.5rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 1.05rem;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
}

/* Toast */
.toast {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    padding: 1rem 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border-accent);
    border-radius: 12px;
    color: var(--text);
    font-size: 1rem;
    opacity: 0;
    transition: all 0.3s var(--ease);
    z-index: 1000;
}

.toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

/* Responsive */
@media (max-width: 1200px) {
    html { font-size: 16px; }
    
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 10rem;
    }
    
    .hero-content { max-width: 100%; }
    .hero-subtitle { margin-left: auto; margin-right: auto; }
    .hero-cta { justify-content: center; }
    .countdown { justify-content: center; }
    
    .pc-container { transform: scale(0.75); }
    
    .waitlist-container { grid-template-columns: 1fr; }
    .waitlist-left { text-align: center; }
    .benefits { align-items: center; }
    
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .games-grid { grid-template-columns: repeat(2, 1fr); }
}

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

    body {
        position: relative;
    }

    .bg-glow {
        left: 0;
        transform: none;
        width: 100%;
        max-width: 100%;
    }

    .nav,
    .hero,
    .waitlist-section,
    .referral-dashboard-section,
    .features,
    .games-arcade,
    .roadmap,
    .faq,
    .cta-section,
    .social-section,
    .footer,
    .stats-bar {
        width: 100%;
        max-width: 100%;
        overflow-x: clip;
    }

    .account-dropdown {
        min-width: 0;
        width: min(280px, calc(100vw - 1rem));
        max-width: calc(100vw - 1rem);
        right: 0;
        left: auto;
    }

    .nav {
        padding: 0.85rem 0.75rem;
        gap: 0.5rem;
    }

    .logo {
        font-size: 1.25rem;
        letter-spacing: 0.08em;
        white-space: nowrap;
    }

    .nav-actions {
        gap: 0.5rem;
        margin-left: auto;
        flex-wrap: nowrap;
    }

    .nav-actions .login-btn,
    .nav-actions .account-btn,
    .nav-actions .lang-btn {
        padding: 0.45rem 0.55rem;
    }

    .nav-actions .login-btn span,
    .nav-actions .account-btn span {
        display: none;
    }

    .hero {
        padding-left: 0.85rem;
        padding-right: 0.85rem;
        overflow-x: clip;
    }

    .nav-center { display: none; }
    
    .hero-title {
        font-size: clamp(2rem, 11vw, 2.6rem);
        line-height: 1.05;
        word-break: break-word;
        overflow-wrap: anywhere;
    }
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.55;
        max-width: 100%;
    }
    .hero-badge {
        max-width: 100%;
    }

    .countdown {
        gap: 0.45rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    .cd-item { min-width: 62px; }
    .cd-num { font-size: 1.7rem; }
    .cd-label { font-size: 0.68rem; letter-spacing: 0.08em; }
    .cd-sep { font-size: 1.2rem; }

    .waitlist-section {
        padding-left: 0.85rem;
        padding-right: 0.85rem;
    }
    .waitlist-form-box {
        padding: 1rem;
        border-radius: 14px;
        width: 100%;
        max-width: 100%;
    }
    .wl-form {
        gap: 0.85rem;
        width: 100%;
    }
    .form-title {
        font-size: 1.3rem;
        margin-bottom: 0.9rem;
    }
    .input-lg {
        width: 100%;
        max-width: 100%;
        padding: 1rem 0.85rem;
        font-size: 1rem;
    }
    .input-group label {
        left: 0.85rem;
        font-size: 0.95rem;
    }
    .referral-row {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 0.45rem;
        padding: 0.4rem 0;
    }
    .input-sm {
        width: 100%;
        max-width: 100%;
        text-align: left;
    }
    .btn-submit {
        font-size: 1rem;
        padding: 1rem;
    }
    .pc-container { transform: scale(0.55); }
    
    .stats-bar {
        flex-wrap: wrap;
        gap: 2rem;
    }
    .stat-div { display: none; }
    
    .features-grid { grid-template-columns: 1fr; }
    .games-grid { grid-template-columns: 1fr; }
    
    .overlay-content {
        min-width: auto;
        width: 90%;
        padding: 2rem;
    }
    
    .reaction-area {
        width: 100%;
        height: 150px;
    }
    
    .memory-display {
        font-size: 2rem;
    }
    
    .timeline::before { left: 20px; }
    .timeline-item,
    .timeline-item:nth-child(even) {
        padding-left: 60px;
        padding-right: 0;
        justify-content: flex-start;
    }
    .tl-dot { left: 20px; transform: none; }
    
    .footer-main {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-pc {
        display: none;
    }

    .hero {
        min-height: auto;
        padding-top: 7rem;
        padding-bottom: 3rem;
    }
}
/* ========================================
   REFERRAL DASHBOARD - Gamified Waitlist
   ======================================== */

.referral-dashboard-section {
    padding: 6rem 5%;
    background: linear-gradient(180deg, var(--bg-elevated) 0%, var(--bg) 100%);
}

.referral-container {
    max-width: 1000px;
    margin: 0 auto;
}

.referral-header {
    text-align: center;
    margin-bottom: 3rem;
}

.referral-header .section-title {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--accent) 0%, #00ccff 50%, var(--accent) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    to { background-position: 200% center; }
}

/* User Stats Card */
.user-stats-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.user-stats-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), #00ccff, var(--accent));
    background-size: 200% auto;
    animation: shimmer 3s linear infinite;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.stat-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-elevated);
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.stat-box:hover {
    border-color: var(--border-accent);
    transform: translateY(-3px);
}

.stat-icon {
    width: 56px;
    height: 56px;
    background: rgba(0, 255, 65, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--accent);
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.stat-value {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
}

/* Progress Section */
.progress-section {
    background: var(--bg-elevated);
    border-radius: 16px;
    padding: 1.5rem 2rem;
}

.progress-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

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

.progress-bar {
    height: 12px;
    background: var(--bg);
    border-radius: 100px;
    overflow: hidden;
    margin-bottom: 0.75rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent), #00ccff);
    border-radius: 100px;
    transition: width 0.5s ease;
    position: relative;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: progress-shine 2s infinite;
}

@keyframes progress-shine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.progress-hint {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

/* Referral Code Section */
.referral-code-section {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
}

.code-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.code-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.code-display code {
    font-family: 'JetBrains Mono', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 0.1em;
    background: var(--bg-elevated);
    padding: 1rem 2rem;
    border-radius: 12px;
    border: 2px dashed var(--border-accent);
}

.btn-copy {
    width: 56px;
    height: 56px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-copy:hover {
    background: var(--accent);
    border-color: var(--accent);
}

.btn-copy:hover svg {
    fill: var(--bg);
}

.btn-copy svg {
    width: 24px;
    height: 24px;
    fill: var(--text);
}

.btn-copy.copied {
    background: var(--accent);
    border-color: var(--accent);
}

.btn-copy.copied svg {
    fill: var(--bg);
}

/* Share Buttons */
.share-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.btn-share {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-share svg {
    width: 24px;
    height: 24px;
    fill: white;
}

.btn-share.discord {
    background: #5865F2;
}

.btn-share.whatsapp {
    background: #25D366;
}

.btn-share.messenger {
    background: #0084FF;
}

.btn-share.telegram {
    background: #0088cc;
}

.btn-share.link {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
}

.btn-share.link svg {
    fill: var(--text);
}

.btn-share:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Rewards Section */
.rewards-section {
    margin-bottom: 2rem;
}

.rewards-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
}

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

.reward-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s;
}

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

.reward-card.unlocked {
    border-color: var(--accent);
    background: linear-gradient(135deg, var(--bg-card), rgba(0, 255, 65, 0.05));
    animation: reward-pulse 2s infinite;
}

@keyframes reward-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0, 255, 65, 0.4); }
    50% { box-shadow: 0 0 20px 5px rgba(0, 255, 65, 0.2); }
}

.reward-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.reward-card h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.reward-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.reward-status {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    background: var(--bg-elevated);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.reward-card.unlocked .reward-status {
    background: var(--accent);
    color: var(--bg);
}

/* Leaderboard */
.leaderboard-section {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 2rem;
}

.leaderboard-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
}

.leaderboard-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.leaderboard-item {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    background: var(--bg-elevated);
    border-radius: 12px;
    transition: all 0.3s;
}

.leaderboard-item:hover {
    background: var(--bg-hover);
}

.leaderboard-rank {
    width: 32px;
    height: 32px;
    background: var(--bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.9rem;
    margin-right: 1rem;
}

.leaderboard-item:nth-child(1) .leaderboard-rank {
    background: linear-gradient(135deg, #ffd700, #ffaa00);
    color: var(--bg);
}

.leaderboard-item:nth-child(2) .leaderboard-rank {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: var(--bg);
}

.leaderboard-item:nth-child(3) .leaderboard-rank {
    background: linear-gradient(135deg, #cd7f32, #8b4513);
    color: var(--bg);
}

/* Leaderboard name (legacy support) */
.leaderboard-name {
    flex: 1;
    font-weight: 600;
    color: var(--text);
}

/* Leaderboard user display - username prominent, code faded */
.leaderboard-user {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    min-width: 0; /* Prevent flex item overflow */
    justify-content: center;
}

.leaderboard-username {
    font-weight: 600;
    font-size: 1rem;
    color: #ffffff !important;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}

.leaderboard-code {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5) !important;
    opacity: 0.6;
    font-family: monospace;
    letter-spacing: 0.02em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}

.leaderboard-count {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--accent);
}

/* Referral System - New Tier & Score Display */
.tier-display {
    background: linear-gradient(135deg, 
        rgba(0, 255, 65, 0.15), 
        rgba(0, 204, 255, 0.1)
    );
    border: 1px solid var(--border-accent);
    border-radius: 16px;
    padding: 2rem;
    margin: 1.5rem 0;
    text-align: center;
}

.tier-name {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    margin: 1rem 0;
    background: linear-gradient(135deg, var(--accent), #00ccff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tier-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: 0.5rem 0;
}

.progress-to-next {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: var(--border);
    border-radius: 4px;
    overflow: hidden;
    margin: 0.5rem 0;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent), #00ccff);
    border-radius: 4px;
    transition: width 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.progress-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

/* Referral Items List */
#referrals-list {
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.referral-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    transition: all 0.3s;
}

.referral-item:hover {
    background: var(--bg-hover);
    border-color: var(--border-accent);
}

.referral-email {
    flex: 1;
    font-weight: 500;
    word-break: break-all;
}

.status-badge {
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
}

.status-badge.converted {
    background: rgba(0, 255, 65, 0.2);
    color: var(--accent);
    border: 1px solid rgba(0, 255, 65, 0.4);
}

.status-badge.pending {
    background: rgba(255, 165, 0, 0.2);
    color: #ffaa00;
    border: 1px solid rgba(255, 165, 0, 0.4);
}

.referral-score {
    font-family: var(--font-display);
    font-weight: 600;
    text-align: right;
}

.score-breakdown {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.score-breakdown span {
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    background: rgba(0, 255, 65, 0.1);
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 500;
}

/* Reward Tiers List */
.reward-tiers-list {
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.tier-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: rgba(0, 255, 65, 0.05);
    border-left: 3px solid var(--accent);
    border-radius: 8px;
}

.tier-item.locked {
    opacity: 0.5;
    background: rgba(255, 255, 255, 0.02);
    border-left-color: var(--border);
}

.tier-item .tier-count {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-right: 1rem;
    min-width: 50px;
}

.tier-item .tier-reward {
    flex: 1;
}

/* Tooltip for score breakdown */
.score-breakdown span[title] {
    cursor: help;
    position: relative;
}

/* Responsive */
@media (max-width: 900px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .rewards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .code-display code {
        font-size: 1.75rem;
        padding: 0.75rem 1.5rem;
    }
}

@media (max-width: 600px) {
    .referral-header .section-title {
        font-size: 2rem;
    }
    
    .rewards-grid {
        grid-template-columns: 1fr;
    }
    
    .code-display {
        flex-direction: column;
    }
    
    .share-buttons {
        flex-wrap: wrap;
    }
}

/* ========================================
   SKELETON LOADING FRAMES
   ======================================== */

.skeleton {
    background: linear-gradient(
        90deg,
        var(--bg-elevated) 25%,
        var(--bg-hover) 50%,
        var(--bg-elevated) 75%
    );
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s ease-in-out infinite;
    border-radius: 8px;
}

@keyframes skeleton-loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.skeleton-text {
    height: 1em;
    margin-bottom: 0.5em;
}

.skeleton-text-sm { width: 60%; }
.skeleton-text-md { width: 80%; }
.skeleton-text-lg { width: 100%; }

.skeleton-title {
    height: 1.5em;
    width: 70%;
    margin-bottom: 1em;
}

.skeleton-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
}

.skeleton-card {
    height: 200px;
    border-radius: 16px;
}

.skeleton-button {
    height: 48px;
    border-radius: 12px;
}

.skeleton-input {
    height: 56px;
    border-radius: 12px;
}

.skeleton-code {
    height: 64px;
    border-radius: 12px;
}

/* CAPTCHA Container */
.g-recaptcha {
    margin: 1rem 0;
}

/* Loading State Overlay */
.loading-overlay {
    position: absolute;
    inset: 0;
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    border-radius: inherit;
}

.loading-spinner {
    width: 48px;
    height: 48px;
    border: 3px solid var(--border);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}
/* Interactive Elements Z-Index Fixes */

/* Ensure FAQ button is clickable */
.faq-q {
    position: relative;
    z-index: 1;
}

.faq-item {
    position: relative;
    z-index: 1;
}

/* Language button z-index */
.lang-btn {
    position: relative;
    z-index: 101;
}

/* PC 3D Container */
.pc-container {
    position: relative;
    z-index: 5;
}

/* Main content z-index */
main {
    position: relative;
    z-index: 10;
}

/* All interactive elements should be clickable */
a, button, input, select, textarea {
    position: relative;
    z-index: 1;
}

.nav * {
    z-index: 101;
}

/* FAQ answer expand fix */
.faq-item.open .faq-a {
    max-height: 500px !important;
}

.faq-a {
    transition: max-height 0.3s ease-out;
}

/* Social Section Styles */
.social-section {
    padding: 6rem 5%;
    background: var(--bg-elevated);
    text-align: center;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 3rem auto 0;
}

.social-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 2rem 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    text-decoration: none;
    color: var(--text);
    transition: all 0.3s var(--ease);
}

.social-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 10px 40px var(--accent-glow);
}

.social-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: var(--bg);
    transition: all 0.3s;
}

.social-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--text);
    transition: all 0.3s;
}

.social-card:hover .social-icon {
    background: var(--accent);
}

.social-card:hover .social-icon svg {
    fill: #000;
}

.social-name {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1rem;
}

.social-handle {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Platform specific colors on hover */
.social-card.facebook:hover { border-color: #1877f2; box-shadow: 0 10px 40px rgba(24, 119, 242, 0.3); }
.social-card.instagram:hover { border-color: #e4405f; box-shadow: 0 10px 40px rgba(228, 64, 95, 0.3); }
.social-card.discord:hover { border-color: #5865f2; box-shadow: 0 10px 40px rgba(88, 101, 242, 0.3); }
.social-card.youtube:hover { border-color: #ff0000; box-shadow: 0 10px 40px rgba(255, 0, 0, 0.3); }
.social-card.tiktok:hover { border-color: #00f2ea; box-shadow: 0 10px 40px rgba(0, 242, 234, 0.3); }

/* Copy Button Fix */
.btn-copy {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 0.75rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-copy svg {
    width: 24px;
    height: 24px;
    fill: var(--text);
    transition: all 0.3s;
}

.btn-copy:hover {
    background: var(--accent);
    border-color: var(--accent);
}

.btn-copy:hover svg {
    fill: #000;
}

.btn-copy.copied {
    background: var(--accent);
    border-color: var(--accent);
}

.btn-copy.copied svg {
    fill: #000;
}

/* Code hint text */
.code-hint {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 1rem;
    font-style: italic;
}

/* Hide personal stats initially */
.personal-stats-hidden {
    opacity: 0.5;
    filter: blur(2px);
    pointer-events: none;
}

/* Responsive Social Grid */
@media (max-width: 900px) {
    .social-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

@media (max-width: 400px) {
    .social-grid {
        grid-template-columns: 1fr;
    }
}

/* Footer Logo Styling */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.footer-logo .logo-bracket {
    color: var(--accent);
    font-weight: 300;
}

/* Logo placeholder for future logo image */
.footer-logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

/* Footer links with data-i18n support */
.footer-links a {
    position: relative;
    transition: color 0.3s;
}

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

/* Waitlist counter animation */
.counter-num {
    transition: all 0.3s ease;
}

.counter-updating {
    color: var(--accent);
    transform: scale(1.1);
}

/* CAPTCHA and Form Button Styles */
.g-recaptcha {
    margin: 1rem 0;
    display: flex;
    justify-content: center;
}

.btn-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: var(--text-muted) !important;
    transform: none !important;
}

.btn-submit:disabled:hover {
    transform: none !important;
    box-shadow: none !important;
}

/* reCAPTCHA v2 Styling */
.g-recaptcha {
    margin: 1.5rem 0;
    display: flex;
    justify-content: center;
    min-height: 78px;
}

.g-recaptcha > div {
    transform-origin: center;
}

/* Mobile responsive CAPTCHA */
@media (max-width: 400px) {
    .g-recaptcha > div {
        transform: scale(0.85);
        transform-origin: center;
    }
}

/* Dark theme adjustment for CAPTCHA iframe */
.g-recaptcha iframe {
    border-radius: 8px;
}

/* Coming Soon Popup */
.coming-soon-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.coming-soon-modal.active {
    display: flex;
    animation: csFadeIn 0.35s ease forwards;
}

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

.coming-soon-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
}

.coming-soon-content {
    position: relative;
    width: min(640px, 100%);
    max-height: 90vh;
    overflow-y: auto;
    background: linear-gradient(180deg, #111 0%, #0a0a0a 100%);
    border: 1px solid rgba(0, 255, 65, 0.25);
    border-radius: 20px;
    padding: 2.25rem 2rem 2rem;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(0, 255, 65, 0.08) inset;
    transform: translateY(20px) scale(0.98);
    transition: transform 0.35s var(--ease);
    text-align: center;
}

.coming-soon-modal.active .coming-soon-content {
    animation: csSlideUp 0.4s var(--ease) forwards;
}

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

.coming-soon-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text);
    transition: all 0.2s ease;
}

.coming-soon-close:hover {
    background: rgba(255,255,255,0.12);
    border-color: var(--accent);
    color: var(--accent);
}

.coming-soon-close svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.coming-soon-icon {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.coming-soon-content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.1rem);
    margin: 0 0 0.35rem;
    color: #fff;
}

.coming-soon-content > p {
    color: var(--text-secondary);
    font-size: 1rem;
    margin: 0 0 1.5rem;
}

.coming-soon-features {
    display: grid;
    gap: 0.9rem;
    text-align: left;
    margin-bottom: 1.5rem;
}

.cs-feature {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    padding: 0.9rem 1rem;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.cs-feature:hover {
    background: rgba(255,255,255,0.05);
    border-color: rgba(0, 255, 65, 0.2);
}

.cs-feature-icon {
    font-size: 1.5rem;
    line-height: 1;
    flex-shrink: 0;
}

.cs-feature h4 {
    margin: 0 0 0.2rem;
    font-size: 0.95rem;
    color: #fff;
}

.cs-feature p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.45;
}

.coming-soon-btn {
    width: 100%;
    padding: 0.9rem 1.25rem;
    font-size: 1rem;
}

@media (max-width: 480px) {
    .coming-soon-content {
        padding: 1.75rem 1.25rem 1.5rem;
    }
    .coming-soon-features {
        gap: 0.7rem;
    }
    .cs-feature {
        padding: 0.75rem 0.85rem;
    }
}

/* Login modal views */
.login-view {
    display: none;
}

.login-view.active {
    display: block;
    animation: loginFadeIn 0.25s ease forwards;
}

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

.login-divider {
    height: 1px;
    background: rgba(255,255,255,0.08);
    margin: 1.25rem 0;
}

.login-toggle-text {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

.login-toggle-btn {
    background: none;
    border: none;
    color: var(--accent);
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    margin-left: 0.3rem;
    font-size: 0.9rem;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.login-toggle-btn:hover {
    color: #00cc33;
}

/* Waitlist footer link for create-from-email */
.waitlist-footer-link {
    text-align: center;
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-top: 1.25rem;
}

.waitlist-footer-link a {
    color: var(--accent);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
    margin-left: 0.3rem;
    transition: color 0.2s ease;
}

.waitlist-footer-link a:hover {
    color: #00cc33;
}

@media (max-width: 480px) {
    .waitlist-footer-link {
        font-size: 0.9rem;
    }
}
