:root {
    --bg: #04080c;
    --surface: #0b1117;
    --surface-light: #121a22;
    --text: #f2ede4;
    --text-muted: #a8a59e;
    --accent: #4f778a;
    --accent-glow: #8bc0d0;
    --accent-dim: #2a4856;
    --steel: #3d5a65;
    --steel-light: #5b8595;
    --cold: #26373d;
    --ash: #c5c0b5;
    --smoke: #8e8a83;
    --hazard: #c0b080;
    --success: #5f8f6f;
    --warning: #b8ad85;
    --border-dim: rgba(255, 255, 255, 0.06);
    --border-glow: rgba(79, 119, 138, 0.55);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Exo 2', 'Segoe UI', 'Roboto', sans-serif;
    font-weight: 400;   /* regular */
    background-color: var(--bg); color: var(--text);
    line-height: 1.6; overflow-x: hidden; -webkit-font-smoothing: antialiased;
}
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #0a0e12; }
::-webkit-scrollbar-thumb { background: var(--steel); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent-dim); }

.noise-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none; z-index: 9999; opacity: 0.045;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
    background-size: 200px 200px;
}
.scanlines {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none; z-index: 9998; opacity: 0.025;
    background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0,0,0,0.5) 2px, rgba(0,0,0,0.5) 4px);
}
.global-fog {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none; z-index: 1; overflow: hidden;
}
.fog-layer {
    position: absolute; border-radius: 50%; filter: blur(100px); opacity: 0.028;
    animation: fog-drift linear infinite;
}
.fog-layer-1 { width: 900px; height: 350px; background: radial-gradient(ellipse, rgba(90,110,125,0.55) 0%, transparent 70%); bottom: -10%; left: -15%; animation-duration: 35s; }
.fog-layer-2 { width: 700px; height: 280px; background: radial-gradient(ellipse, rgba(70,90,105,0.5) 0%, transparent 70%); bottom: 5%; right: -10%; animation-duration: 40s; animation-delay: -8s; animation-direction: reverse; }
.fog-layer-3 { width: 1100px; height: 400px; background: radial-gradient(ellipse, rgba(60,75,90,0.45) 0%, transparent 70%); bottom: -15%; left: 30%; animation-duration: 48s; animation-delay: -16s; }
.fog-layer-4 { width: 600px; height: 220px; background: radial-gradient(ellipse, rgba(80,95,115,0.45) 0%, transparent 70%); top: 15%; left: -8%; animation-duration: 50s; animation-delay: -22s; opacity: 0.022; }
.fog-layer-5 { width: 800px; height: 300px; background: radial-gradient(ellipse, rgba(65,80,95,0.4) 0%, transparent 70%); top: 40%; right: -12%; animation-duration: 44s; animation-delay: -30s; animation-direction: reverse; opacity: 0.022; }
@keyframes fog-drift {
    0% { transform: translateX(0) translateY(0); }
    25% { transform: translateX(70px) translateY(-25px); }
    50% { transform: translateX(20px) translateY(-50px); }
    75% { transform: translateX(-60px) translateY(-15px); }
    100% { transform: translateX(0) translateY(0); }
}
.ground-haze {
    position: fixed; bottom: 0; left: 0; width: 100%; height: 30%;
    pointer-events: none; z-index: 0;
    background: linear-gradient(to top, rgba(60,70,80,0.08) 0%, rgba(40,50,60,0.03) 40%, transparent 80%);
    animation: haze-rise 20s ease-in-out infinite alternate;
}
@keyframes haze-rise { 0% { transform: translateY(0); opacity: 0.6; } 100% { transform: translateY(-20px); opacity: 1; } }

header {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
    padding: 0.8rem 2rem; background: rgba(4,8,12,0.94);
    backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(79,119,138,0.3);
    display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
    transition: background 0.3s, border-color 0.3s;
}
header.scrolled { background: rgba(4,8,12,0.98); border-bottom-color: rgba(79,119,138,0.55); }
.logo { font-family: 'Orbitron', 'Impact', 'Arial Black', sans-serif; font-weight: 700;   /* Bold */ font-size: 1.6rem; letter-spacing: 4px; color: var(--ash); text-transform: uppercase; white-space: nowrap; }
.logo span { color: var(--accent-glow); }
.logo .hazard-dot { display: inline-block; width: 10px; height: 10px; background: var(--hazard); border-radius: 50%; margin: 0 4px; animation: pulse-dot 1.8s ease-in-out infinite; }
@keyframes pulse-dot { 0%,100% { box-shadow: 0 0 6px var(--hazard), 0 0 18px var(--accent-glow); } 50% { box-shadow: 0 0 2px var(--hazard), 0 0 5px var(--accent-glow); } }

nav { display: flex; gap: 1.8rem; align-items: center; flex-wrap: wrap; }
nav a { color: var(--text-muted); text-decoration: none; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 2px; position: relative; transition: color 0.3s; font-weight: 500; }
nav a:hover { color: var(--accent-glow); }
nav a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--accent); transition: width 0.3s; }
nav a:hover::after { width: 100%; }
.btn-nav { background: transparent; border: 2px solid var(--accent-dim); color: var(--ash); padding: 0.5rem 1.4rem; text-transform: uppercase; letter-spacing: 2px; cursor: pointer; font-size: 0.8rem; transition: all 0.3s; font-weight: 600; text-decoration: none; white-space: nowrap; }
.btn-nav:hover { background: var(--accent); border-color: var(--accent); color: #fff; box-shadow: 0 0 20px rgba(139,192,208,0.5); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 5px; z-index: 1100; }
.hamburger span { display: block; width: 28px; height: 3px; background: var(--ash); transition: 0.3s; border-radius: 2px; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,6px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-6px); }

#hero {
    min-height: 100vh; display: flex; align-items: center; justify-content: center;
    position: relative; padding: 8rem 2rem 4rem;
    background: radial-gradient(ellipse at 30% 50%, rgba(79,119,138,0.12) 0%, transparent 60%),
                radial-gradient(ellipse at 70% 30%, rgba(192,176,128,0.07) 0%, transparent 50%),
                radial-gradient(ellipse at 50% 80%, rgba(42,72,86,0.08) 0%, transparent 50%),
                var(--bg);
    overflow: hidden; isolation: isolate;
}
#hero::before {
    content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
    background: repeating-conic-gradient(rgba(79,119,138,0.02) 0% 2%, transparent 2% 8%) 50% / 60px 60px;
    z-index: 0;
}
.glitch-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: 3; opacity: 0; animation: glitch-flash 4s infinite; }
@keyframes glitch-flash { 0%,88%,100% { opacity: 0; } 89% { opacity: 0.12; } 90% { opacity: 0; } 91% { opacity: 0.1; } 92% { opacity: 0; } }
.pixel-glitch {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: 3;
    background-image: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(139,192,208,0.25) 2px, rgba(139,192,208,0.25) 4px),
                      repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(192,176,128,0.2) 2px, rgba(192,176,128,0.2) 4px);
    background-size: 8px 8px; opacity: 0; animation: pixel-flash 5s infinite; mix-blend-mode: overlay;
}
@keyframes pixel-flash { 0%,93%,100% { opacity: 0; } 94% { opacity: 0.35; } 95% { opacity: 0; } 96% { opacity: 0.25; } 97% { opacity: 0; } }
#hero.rgb-shift::after {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: inherit; z-index: 2; pointer-events: none;
    animation: rgb-split 0.15s linear; mix-blend-mode: overlay; opacity: 0.2;
}
@keyframes rgb-split {
    0% { transform: translate(0); background: rgba(120,120,120,0.2); }
    33% { transform: translate(6px,-2px); background: rgba(100,100,100,0.2); }
    66% { transform: translate(-6px,2px); background: rgba(110,110,110,0.2); }
    100% { transform: translate(0); background: transparent; }
}
#hero-dot-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: 1; }
.bg-dot { position: absolute; border-radius: 50%; background: rgba(200,205,210,0.4); filter: blur(4px); animation: dot-float linear infinite; }
@keyframes dot-float { 0% { transform: translate(0,0); opacity: 0; } 10% { opacity: 0.8; } 90% { opacity: 0.1; } 100% { transform: translate(40px,-50px); opacity: 0; } }
.rising-smoke-container { position: absolute; bottom: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: 0; overflow: hidden; }
.rising-smoke {
    position: absolute; bottom: -10%; left: var(--x); width: var(--size); height: var(--size);
    background: radial-gradient(circle, rgba(220,220,225,0.45) 0%, rgba(190,195,200,0.2) 30%, rgba(160,165,170,0.04) 60%, transparent 85%);
    filter: blur(var(--blur,40px)); border-radius: 50%;
    animation: rise-smoke var(--duration) linear infinite; animation-delay: var(--delay); opacity: 0;
}
@keyframes rise-smoke { 0% { transform: translateY(0) scale(0.7); opacity: 0; } 8% { opacity: 0.6; } 40% { opacity: 0.2; } 90% { opacity: 0; } 100% { transform: translateY(-120vh) scale(1.8); opacity: 0; } }
.hero-content { position: relative; z-index: 4; text-align: center; max-width: 850px; width: 100%; }
.hero-badge { display: inline-block; background: rgba(79,119,138,0.25); border: 1px solid rgba(79,119,138,0.6); color: var(--accent-glow); padding: 0.4rem 1.2rem; letter-spacing: 3px; font-size: 0.75rem; text-transform: uppercase; margin-bottom: 1.5rem; }
.hero-title {     font-family: 'Orbitron', 'Impact', 'Arial Black', sans-serif; font-weight: 900;   /* Black */ font-size: clamp(3rem,8vw,6.5rem); letter-spacing: 6px; line-height: 1; color: #f5f0e8; text-transform: uppercase; text-shadow: 0 0 40px rgba(139,192,208,0.6), 3px 3px 0 rgba(0,0,0,0.8); margin-bottom: 0.5rem; animation: glitch-skew 6s infinite; }
@keyframes glitch-skew { 0%,90%,100% { transform: skew(0deg); } 91% { transform: skew(1deg); } 92% { transform: skew(-0.5deg); } 93% { transform: skew(0deg); } }
.hero-subtitle { font-size: clamp(1rem,2.5vw,1.5rem); letter-spacing: 4px; color: var(--smoke); text-transform: uppercase; margin-bottom: 1.5rem; }
.hero-desc { font-size: 1.05rem; color: var(--text-muted); max-width: 550px; margin: 0 auto 2rem; line-height: 1.7; }
.hero-cta-group { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; margin-bottom: 2.5rem; }
.btn-primary { background: var(--accent); color: #fff; border: none; padding: 1rem 2.2rem; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 3px; cursor: pointer; font-weight: 700; transition: all 0.3s; text-decoration: none; clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px); }
.btn-primary:hover { background: var(--accent-glow); box-shadow: 0 0 35px rgba(139,192,208,0.8); transform: translateY(-2px); }
.btn-primary:disabled { background: #3a3f42; color: #8a8984; cursor: not-allowed; pointer-events: none; box-shadow: none; }
.btn-secondary { background: transparent; border: 2px solid var(--ash); color: var(--ash); padding: 1rem 2.2rem; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 3px; cursor: pointer; font-weight: 700; transition: all 0.3s; text-decoration: none; clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px); }
.btn-secondary:hover { border-color: var(--accent-glow); color: var(--accent-glow); box-shadow: 0 0 25px rgba(139,192,208,0.5); transform: translateY(-2px); }
.region-badges { display: flex; gap: 1.2rem; justify-content: center; flex-wrap: wrap; }
.region-badge { background: var(--surface); border: 1px solid rgba(255,255,255,0.08); padding: 0.6rem 1.4rem; letter-spacing: 1px; font-size: 0.8rem; text-transform: uppercase; color: var(--ash); position: relative; transition: all 0.3s; }
.region-badge:hover { border-color: rgba(139,192,208,0.6); }
.region-badge .dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; margin-right: 6px; position: relative; z-index: 1; }
.region-badge .dot.green { background: #5f8f6f; box-shadow: 0 0 10px #5f8f6f; animation: pulse-dot 2s ease-in-out infinite; }
.region-badge .dot.warning { background: #b8ad85; box-shadow: 0 0 10px #b8ad85; animation: pulse-dot 2.5s ease-in-out infinite; }
.region-badge .smoke-ring { position: absolute; top: 50%; left: 1.2rem; transform: translate(-50%,-50%); width: 30px; height: 30px; border-radius: 50%; background: radial-gradient(circle, rgba(190,185,175,0.4) 0%, rgba(190,185,175,0.08) 60%, transparent 80%); pointer-events: none; z-index: 0; animation: smoke-puff 3s ease-in-out infinite; }
@keyframes smoke-puff { 0%,100% { transform: translate(-50%,-50%) scale(0.8); opacity: 0.5; } 50% { transform: translate(-50%,-50%) scale(1.4); opacity: 0.2; } }
.particles-container { position: absolute; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: 1; }
.particle { position: absolute; border-radius: 50%; animation: float-up linear infinite; opacity: 0; }
.particle.small { width: 2px; height: 2px; background: var(--accent-glow); }
.particle.ash { filter: blur(4px); background: rgba(160,150,145,0.5); animation-name: float-up-slow; }
.particle.dust { width: 4px; height: 4px; background: rgba(205,200,190,0.95); filter: blur(1px); animation-name: float-dust; }
@keyframes float-up { 0% { transform: translateY(100vh) translateX(0); opacity: 0; } 10% { opacity: 0.8; } 90% { opacity: 0.15; } 100% { transform: translateY(-10vh) translateX(40px); opacity: 0; } }
@keyframes float-up-slow { 0% { transform: translateY(105vh) translateX(0) scale(0.8); opacity: 0; } 15% { opacity: 0.5; } 85% { opacity: 0.1; } 100% { transform: translateY(-15vh) translateX(-30px) scale(1.2); opacity: 0; } }
@keyframes float-dust { 0% { transform: translateY(100vh) translateX(0); opacity: 0; } 20% { opacity: 0; } 25% { opacity: 1; } 35% { opacity: 0.5; } 45% { opacity: 0; } 100% { transform: translateY(-10vh) translateX(30px); opacity: 0; } }

/* Modal */
.modal-overlay { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.8); z-index: 10000; align-items: center; justify-content: center; }
.modal-overlay.active { display: flex; }
.modal {
    background: var(--surface); border: 1px solid rgba(79,119,138,0.5);
    padding: 2.5rem 2rem; width: 90%; max-width: 450px;
    clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
    position: relative; text-align: center;
}
.modal h3 { font-family: 'Impact','Arial Black',sans-serif; letter-spacing: 2px; color: var(--ash); margin-bottom: 1.5rem; font-size: 1.4rem; }
.modal input {
    width: 100%; padding: 0.8rem 1rem; margin-bottom: 1rem;
    background: var(--surface-light); border: 1px solid rgba(255,255,255,0.12);
    color: var(--text); font-size: 0.9rem; letter-spacing: 1px; outline: none; transition: border-color 0.3s;
}
.modal input:focus { border-color: var(--accent); }
.modal .btn-primary { width: 100%; margin-top: 0.5rem; }
.modal .close-modal { position: absolute; top: 12px; right: 18px; background: none; border: none; color: var(--smoke); font-size: 1.5rem; cursor: pointer; transition: color 0.3s; }
.modal .close-modal:hover { color: var(--accent-glow); }
.modal .form-message { margin-top: 0.8rem; font-size: 0.8rem; min-height: 1.2rem; }

/* Captcha slider */
.captcha-slider { margin: 1.2rem 0; text-align: left; }
.captcha-slider label { display: block; color: var(--text-muted); font-size: 0.8rem; letter-spacing: 1px; margin-bottom: 0.3rem; }
.captcha-slider .slider-row { display: flex; align-items: center; gap: 0.8rem; }
.captcha-slider input[type="range"] {
    flex: 1; -webkit-appearance: none; appearance: none;
    height: 8px; background: var(--surface-light); border-radius: 4px; outline: none;
}
.captcha-slider input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none; appearance: none; width: 24px; height: 24px;
    background: var(--accent-glow); border: 2px solid var(--accent); border-radius: 2px;
    cursor: pointer; box-shadow: 0 0 10px rgba(139,192,208,0.5);
}
.captcha-slider input[type="range"]::-moz-range-track { height: 8px; background: var(--surface-light); border-radius: 4px; }
.captcha-slider input[type="range"]::-moz-range-thumb {
    width: 24px; height: 24px; background: var(--accent-glow);
    border: 2px solid var(--accent); border-radius: 2px; cursor: pointer;
    box-shadow: 0 0 10px rgba(139,192,208,0.5);
}
.captcha-scale { display: flex; justify-content: space-between; font-size: 0.7rem; color: var(--text-muted); margin-top: 2px; }
.captcha-current { color: var(--accent-glow); font-weight: bold; font-size: 0.85rem; min-width: 2.5rem; text-align: center; }
.captcha-target-range { color: var(--accent-glow); font-weight: bold; }
.captcha-valid { color: var(--success); }
.captcha-invalid { color: var(--warning); }

section { padding: 5rem 2rem; position: relative; z-index: 2; }
.section-label { text-align: center; font-size: 0.7rem; letter-spacing: 4px; text-transform: uppercase; color: var(--accent-dim); margin-bottom: 0.5rem; }
.section-title { text-align: center; font-family: 'Impact','Arial Black',sans-serif; font-size: clamp(2rem,4vw,3rem); letter-spacing: 3px; text-transform: uppercase; color: var(--ash); margin-bottom: 1rem; }
.section-divider { width: 80px; height: 4px; background: var(--accent); margin: 0 auto 3rem; position: relative; }
.section-divider::after { content: '☢'; position: absolute; top: -18px; left: 50%; transform: translateX(-50%); font-size: 1.2rem; color: var(--hazard); }

#features { background: var(--surface); border-top: 1px solid rgba(79,119,138,0.25); border-bottom: 1px solid rgba(79,119,138,0.25); }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 2rem; max-width: 1100px; margin: 0 auto; }
.feature-card { background: var(--surface-light); border: 1px solid var(--border-dim); padding: 2rem 1.5rem; text-align: center; transition: all 0.3s; position: relative; overflow: hidden; }
.feature-card:hover { border-color: var(--border-glow); transform: translateY(-6px); box-shadow: 0 20px 40px rgba(0,0,0,0.8); }
.feature-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: var(--accent); transform: scaleX(0); transition: transform 0.3s; transform-origin: left; }
.feature-card:hover::before { transform: scaleX(1); }
.feature-icon { font-size: 3rem; margin-bottom: 1rem; display: block; }
.feature-card h3 { font-family: 'Impact','Arial Black',sans-serif; letter-spacing: 2px; color: var(--ash); margin-bottom: 0.8rem; font-size: 1.2rem; }
.feature-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; }

#beta { background: radial-gradient(ellipse at center, rgba(79,119,138,0.1) 0%, transparent 70%), var(--bg); text-align: center; }
.beta-cards { display: flex; gap: 2rem; max-width: 900px; margin: 0 auto; flex-wrap: wrap; justify-content: center; }
.beta-card { background: var(--surface); border: 1px solid var(--border-dim); padding: 2.5rem 2rem; flex: 1; min-width: 250px; max-width: 280px; transition: all 0.3s; }
.beta-card.featured { border-color: rgba(139,192,208,0.6); box-shadow: 0 0 35px rgba(79,119,138,0.25); }
.beta-card h3 { font-family: 'Impact','Arial Black',sans-serif; font-size: 1.5rem; letter-spacing: 3px; color: var(--ash); margin-bottom: 0.5rem; }
.status { display: inline-block; padding: 0.3rem 1rem; letter-spacing: 2px; font-size: 0.7rem; margin-bottom: 1rem; font-weight: 600; }
.status.live { background: rgba(95,143,111,0.25); color: #5f8f6f; border: 1px solid rgba(95,143,111,0.5); }
.status.soon { background: rgba(184,173,133,0.25); color: #b8ad85; border: 1px solid rgba(184,173,133,0.5); }
.beta-card ul { list-style: none; text-align: left; margin: 1.5rem 0; color: var(--text-muted); font-size: 0.85rem; }
.beta-card ul li { padding: 0.3rem 0; padding-left: 1.5rem; position: relative; }
.beta-card ul li::before { content: '▸'; position: absolute; left: 0; color: var(--accent); }
.beta-card .btn-primary { display: inline-block; width: 100%; text-align: center; padding: 0.8rem; font-size: 0.8rem; }

#store { background: var(--surface); border-top: 1px solid rgba(79,119,138,0.25); text-align: center; }
.store-platforms { display: flex; gap: 2rem; max-width: 900px; margin: 2rem auto; flex-wrap: wrap; justify-content: center; }
.store-card { background: var(--surface-light); border: 1px solid var(--border-dim); padding: 2rem 1.8rem; flex: 1; min-width: 160px; max-width: 200px; transition: all 0.3s; text-align: center; text-decoration: none; color: inherit; display: block; }
.store-card:hover { border-color: var(--border-glow); transform: translateY(-4px); box-shadow: 0 15px 30px rgba(0,0,0,0.6); }
.store-card .store-icon { font-size: 2.5rem; margin-bottom: 0.8rem; }
.store-card h4 { font-family: 'Impact','Arial Black',sans-serif; letter-spacing: 2px; color: var(--ash); margin-bottom: 0.5rem; }
.store-card .store-status { font-size: 0.75rem; letter-spacing: 1px; color: var(--text-muted); }

.language-bar { display: flex; flex-wrap: wrap; gap: 0.8rem; justify-content: center; margin-top: 2.5rem; }
.lang-btn {
    background: var(--surface); border: 1px solid var(--border-dim); color: var(--ash);
    padding: 0.5rem 1rem; font-size: 0.75rem; letter-spacing: 1px; text-transform: uppercase;
    cursor: pointer; transition: all 0.3s;
    clip-path: polygon(4px 0, 100% 0, 100% calc(100% - 4px), calc(100% - 4px) 100%, 0 100%, 0 4px);
    text-decoration: none; display: inline-block;
}
.lang-btn.active:hover { background: var(--accent); border-color: var(--accent-glow); color: #fff; box-shadow: 0 0 15px rgba(139,192,208,0.4); }
.lang-btn.disabled, .footer-lang .disabled { opacity: 0.4; cursor: not-allowed; filter: grayscale(0.6); border-color: rgba(255,255,255,0.04); color: var(--text-muted); pointer-events: none; }

#about { background: var(--surface); border-top: 1px solid rgba(79,119,138,0.25); }
.about-content { max-width: 800px; margin: 0 auto; text-align: center; }
.about-content p { color: var(--text-muted); margin-bottom: 1.5rem; font-size: 1rem; line-height: 1.8; }
.about-stats { display: flex; gap: 2rem; justify-content: center; flex-wrap: wrap; margin-top: 2rem; }
.stat-number { font-family: 'Impact','Arial Black',sans-serif; font-size: 3rem; color: var(--accent-glow); letter-spacing: 2px; }
.stat-label { color: var(--text-muted); letter-spacing: 2px; font-size: 0.75rem; text-transform: uppercase; }

#newsletter { background: var(--bg); text-align: center; border-top: 1px solid rgba(79,119,138,0.25); }
.newsletter-form { max-width: 500px; margin: 0 auto; text-align: left; }
.newsletter-form input { width: 100%; padding: 0.9rem 1.2rem; margin-bottom: 1rem; background: var(--surface-light); border: 1px solid rgba(255,255,255,0.1); color: var(--ash); font-size: 0.9rem; letter-spacing: 1px; outline: none; transition: border-color 0.3s; }
.newsletter-form input:focus { border-color: var(--accent); }
.newsletter-form .btn-primary { width: 100%; clip-path: polygon(4px 0, 100% 0, 100% calc(100% - 4px), calc(100% - 4px) 100%, 0 100%, 0 4px); padding: 0.9rem 1.5rem; font-size: 0.8rem; }
.form-message { margin-top: 1rem; font-size: 0.85rem; letter-spacing: 1px; min-height: 1.5rem; color: #5f8f6f; }

footer { background: #03070a; padding: 2rem; text-align: center; border-top: 1px solid rgba(79,119,138,0.3); }
footer p { color: var(--text-muted); font-size: 0.8rem; letter-spacing: 2px; }
.footer-links { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; margin-bottom: 1rem; }
.footer-links a { color: var(--smoke); text-decoration: none; font-size: 0.8rem; letter-spacing: 1px; transition: color 0.3s; }
.footer-links a:hover { color: var(--accent-glow); }
.footer-lang { display: flex; gap: 0.6rem; justify-content: center; flex-wrap: wrap; margin-top: 0.8rem; }
.footer-lang a { color: var(--text-muted); text-decoration: none; font-size: 0.7rem; letter-spacing: 1px; padding: 0.2rem 0.5rem; border: 1px solid transparent; transition: all 0.3s; }
.footer-lang a:hover { color: var(--accent-glow); border-color: rgba(139,192,208,0.4); }
.footer-lang span { font-size: 0.7rem; }

@media (max-width: 768px) {
    .hamburger { display: flex; }
    nav { position: fixed; top: 0; right: -100%; width: 75%; max-width: 350px; height: 100vh; background: rgba(4,8,12,0.98); backdrop-filter: blur(20px); flex-direction: column; justify-content: center; gap: 2rem; transition: right 0.4s ease; z-index: 1050; border-left: 1px solid rgba(79,119,138,0.6); }
    nav.active { right: 0; }
    .btn-nav { font-size: 1rem; }
    header { padding: 0.6rem 1.2rem; }
    .logo { font-size: 1.2rem; }
    .features-grid { grid-template-columns: 1fr; }
    .beta-cards, .store-platforms { flex-direction: column; align-items: center; }
    .store-card, .beta-card { max-width: 100%; width: 100%; }
}
.nav-overlay { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.7); z-index: 1040; }
.nav-overlay.active { display: block; }
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
#toast { position: fixed; bottom: 30px; left: 50%; transform: translateX(-50%) translateY(120px); background: var(--surface); border: 1px solid var(--accent); color: var(--ash); padding: 1rem 2rem; z-index: 10001; letter-spacing: 2px; font-size: 0.85rem; transition: transform 0.4s ease; pointer-events: none; text-align: center; max-width: 90vw; }

/*
.hero-title small {
    display: block;
    font-size: 0.4em;
    letter-spacing: 3px;
    color: var(--smoke);
    margin-top: 0.2em;
    text-shadow: none;
}
*/

/* Znaczek ® – mniejszy i w indeksie górnym, obok TRYFALL */
.hero-title > small:first-of-type {
    font-size: 0.3em;
    vertical-align: super;
    margin-left: 0.1em;
    display: inline; /* jawnie inline, żeby nie dziedziczyć block */
}

/* Slogan – mniejszy i w osobnej linii */
.hero-title > small:last-of-type {
    display: block;
    font-size: 0.4em;
    letter-spacing: 3px;
    color: var(--smoke);
    margin-top: 0.2em;
    text-shadow: none;
    text-transform: none;
}

.store-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1); /* białe, lekko przezroczyste tło */
    border: 2px solid var(--border-dim);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.8rem;
    overflow: hidden;
    transition: all 0.3s;
}

.store-card:hover .store-icon {
    border-color: var(--accent-glow);
    box-shadow: 0 0 15px rgba(139, 192, 208, 0.4);
    transform: scale(1.05);
}

.store-icon img {
    max-width: 60%;
    max-height: 60%;
    object-fit: contain;
    filter: brightness(0.9);
}

noscript div {
    background: var(--warning);
    color: #000;
    padding: 1rem;
    text-align: center;
    font-family: 'Segoe UI', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* --- Screenshots --- */
#screenshots {
    background: var(--bg);
    border-top: 1px solid rgba(79,119,138,0.25);
}

.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}
.screenshot-card {
    background: var(--surface-light);
    border: 1px solid var(--border-dim);
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.3s;
}
.screenshot-card:hover {
    border-color: var(--accent-glow);
    box-shadow: 0 8px 30px rgba(139,192,208,0.3);
    transform: translateY(-4px);
}
.screenshot-card img {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    object-fit: cover;
}

/* --- Lightbox --- */
.lightbox-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10002;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.lightbox-overlay.active {
    display: flex;
}
.lightbox-overlay img {
    max-width: 95%;
    max-height: 85vh;
    border: 2px solid var(--border-glow);
    box-shadow: 0 0 50px rgba(0,0,0,0.8);
}
.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    background: none;
    border: none;
    color: var(--ash);
    font-size: 3rem;
    cursor: pointer;
    z-index: 1;
}
.lightbox-close:hover {
    color: var(--accent-glow);
}

/* ===== Orbitron ===== */
@font-face {
    font-family: 'Orbitron';
    src: url('assets/fonts/Orbitron/static/Orbitron-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Orbitron';
    src: url('assets/fonts/Orbitron/static/Orbitron-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Orbitron';
    src: url('assets/fonts/Orbitron/static/Orbitron-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

/* ===== Exo 2 ===== */
@font-face {
    font-family: 'Exo 2';
    src: url('assets/fonts/Exo_2/static/Exo2-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Exo 2';
    src: url('assets/fonts/Exo_2/static/Exo2-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Exo 2';
    src: url('assets/fonts/Exo_2/static/Exo2-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

/* Opcjonalnie – inne elementy, które mają mieć gamingowy charakter */
.section-title,
.feature-card h3,
.beta-card h3,
.stat-number,
.modal h3 {
    font-family: 'Orbitron', 'Impact', 'Arial Black', sans-serif;
    font-weight: 700;
}

/* Lekki tekst (np. opisy) możesz ustawić osobno */
.hero-desc,
.feature-card p,
.about-content p {
    font-weight: 300;   /* Light */
}

.feature-icon {
    filter: grayscale(1) brightness(0.7);
    transition: filter 0.3s;
}

.feature-card:hover .feature-icon {
    filter: none;
}

