@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Marcellus&display=swap");

:root{
  --bg:#181818;
  --bg-2:#181818;
  --surface:#111a2c;
  --surface-2:#0f1728;
  --text:#eef3fb;
  --muted:#9aa6ba;
  --accent:#08a0e8;
  --accent-2:#0050c9;
  --border:#1d2a40;
  --glow:rgba(8,160,232,0.28);
  --shadow:0 24px 60px rgba(2,8,20,0.65);
  --radius:18px;
  --radius-lg:28px;
  --container:1160px;
}

*{box-sizing:border-box}

body{
  margin:0;
  font-family:"Space Grotesk","Segoe UI",sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.6;
}

a{color:inherit; text-decoration:none}
img{max-width:100%; display:block}

.container{max-width:var(--container); margin:0 auto; padding:0 24px}

.sr-only{
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}

.site-header{
  position:sticky;
  top:0;
  z-index:10;
  background:rgba(10,14,22,0.9);
  border-bottom:1px solid rgba(29,42,64,0.7);
  backdrop-filter:blur(18px);
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:18px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap:14px;
  color:var(--text);
}
.brand h1{
  margin:0;
  font-family:"Marcellus","Space Grotesk",serif;
  font-weight:600;
  letter-spacing:0.08em;
  font-size:22px;
}

.brand-logo{
  width:54px;
  height:54px;
  border-radius:16px;
  border:1px solid var(--border);
  background:rgba(255,255,255,0.04);
  box-shadow:0 16px 30px rgba(8,160,232,0.18);
  object-fit:cover;
}

.eyebrow{
  text-transform:uppercase;
  letter-spacing:0.24em;
  font-size:11px;
  color:var(--muted);
}

.nav{
  display:flex;
  align-items:center;
  gap:14px;
}

.lang-switch{
  display:flex;
  align-items:center;
  gap:6px;
  padding:4px;
  border-radius:999px;
  border:1px solid var(--border);
  background:rgba(12,18,32,0.7);
}
.lang-btn{
  border:1px solid transparent;
  background:transparent;
  color:var(--text);
  font:inherit;
  font-size:12px;
  font-weight:600;
  letter-spacing:0.08em;
  padding:6px 10px;
  border-radius:999px;
  cursor:pointer;
}
.lang-btn[aria-pressed="true"]{
  background:rgba(8,160,232,0.2);
  border-color:rgba(111,210,255,0.4);
}

.nav a,
.nav-link{
  color:var(--text);
  padding:10px 14px;
  border-radius:999px;
  border:1px solid transparent;
  background:transparent;
  font:inherit;
  cursor:pointer;
}

.nav a:hover,
.nav-link:hover{
  border-color:rgba(111,210,255,0.4);
  background:rgba(15,26,44,0.8);
}

.nav-dropdown{position:relative}
.nav-menu{
  position:absolute;
  top:100%;
  left:0;
  min-width:180px;
  padding:10px;
  margin-top:10px;
  background:rgba(12,18,32,0.95);
  border:1px solid var(--border);
  border-radius:14px;
  box-shadow:var(--shadow);
  display:none;
}
.nav-menu a{
  display:block;
  padding:10px 12px;
  border-radius:10px;
}
.nav-dropdown:hover .nav-menu{display:block}
.nav-menu.open{display:block}

.nav-toggle{
  display:none;
  border:1px solid var(--border);
  background:rgba(15,26,44,0.8);
  padding:10px 12px;
  border-radius:12px;
  cursor:pointer;
}
.nav-toggle-bar{
  display:block;
  width:20px;
  height:2px;
  background:var(--text);
  margin:5px 0;
}

.button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:12px 18px;
  border-radius:14px;
  background:linear-gradient(135deg, var(--accent), var(--accent-2));
  color:#07131f;
  font-weight:700;
  border:1px solid rgba(255,255,255,0.12);
  box-shadow:0 14px 30px var(--glow);
  transition:transform 0.2s ease, filter 0.2s ease;
}
.button:hover{filter:brightness(1.05); transform:translateY(-1px)}
.button.ghost{
  background:transparent;
  color:var(--text);
  border:1px solid var(--border);
  box-shadow:none;
}
.button.small{padding:10px 14px; font-size:14px}

.hero{
  padding:80px 0 60px;
  position:relative;
  overflow:hidden;
}

.hero-grid{
  display:grid;
  grid-template-columns:1.1fr 0.9fr;
  gap:40px;
  align-items:center;
}

.hero h2{
  font-family:"Marcellus","Space Grotesk",serif;
  font-size:44px;
  line-height:1.1;
  margin:12px 0;
}

.hero-kicker{
  font-weight:600;
  color:#cfe9ff;
  letter-spacing:0.04em;
}

.hero-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin:20px 0;
}

.store-badges{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}
.store-pill{
  padding:8px 14px;
  border-radius:999px;
  border:1px solid rgba(111,210,255,0.4);
  background:rgba(8,160,232,0.1);
  font-size:13px;
}

.hero-visual{
  position:relative;
}

.hero-card{
  padding:24px;
  border-radius:var(--radius-lg);
  border:1px solid var(--border);
  background:linear-gradient(160deg, rgba(17,26,44,0.95), rgba(10,15,26,0.96));
  box-shadow:var(--shadow);
}

.hero-tags{display:flex; gap:10px; flex-wrap:wrap; margin-top:16px}

.tag{
  padding:6px 12px;
  border-radius:999px;
  border:1px solid rgba(111,210,255,0.4);
  background:rgba(8,160,232,0.12);
  font-size:12px;
}

.hero-orbit{
  position:absolute;
  right:-40px;
  top:-40px;
  width:220px;
  height:220px;
  border-radius:50%;
  border:1px dashed rgba(111,210,255,0.3);
  animation:spin 18s linear infinite;
}

.orbit-dot{
  width:12px;
  height:12px;
  background:var(--accent);
  border-radius:50%;
  position:absolute;
  top:8px;
  left:50%;
  transform:translateX(-50%);
  box-shadow:0 0 12px rgba(8,160,232,0.6);
}
.orbit-dot:nth-child(2){top:50%; left:calc(100% - 8px)}
.orbit-dot:nth-child(3){top:calc(100% - 8px); left:50%}

.section{
  padding:70px 0;
}
.section.alt{
  background:rgba(11,16,28,0.7);
  border-top:1px solid rgba(29,42,64,0.7);
  border-bottom:1px solid rgba(29,42,64,0.7);
}

.section-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:20px;
  flex-wrap:wrap;
  margin-bottom:24px;
}

.section h3{
  font-family:"Marcellus","Space Grotesk",serif;
  font-size:30px;
  margin:8px 0;
}

.muted{color:var(--muted)}

.download-stack{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.game-logo{
  width:220px;
  max-width:100%;
  border-radius:16px;
  border:1px solid var(--border);
  box-shadow:0 18px 40px rgba(8,160,232,0.18);
}

.game-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:20px;
  margin-bottom:26px;
}

.game-card{
  padding:22px;
  border-radius:var(--radius);
  border:1px solid var(--border);
  background:rgba(15,24,40,0.8);
  box-shadow:var(--shadow);
}

.feature-list{
  list-style:none;
  padding:0;
  margin:16px 0 0;
  display:grid;
  gap:10px;
  color:var(--muted);
  font-weight:400;
}

.pill-grid{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin:14px 0;
}
.pill{
  padding:6px 12px;
  border-radius:999px;
  border:1px solid rgba(111,210,255,0.35);
  background:rgba(8,160,232,0.08);
  font-size:13px;
}

.video-frame{
  margin-top:18px;
  height:180px;
  border-radius:var(--radius);
  border:1px dashed rgba(111,210,255,0.4);
  display:grid;
  place-items:center;
  color:var(--muted);
  background:rgba(8,160,232,0.04);
}

.screenshots{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(220px,1fr));
  gap:18px;
}
.screenshot{
  width:100%;
  height:420px;
  border-radius:var(--radius);
  border:1px solid var(--border);
  object-fit:contain;
  background:rgba(8,160,232,0.04);
  box-shadow:0 18px 40px rgba(8,160,232,0.12);
}

.three-col{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:18px;
}
.info-card{
  padding:22px;
  border-radius:var(--radius);
  border:1px solid var(--border);
  background:rgba(14,22,38,0.85);
  box-shadow:var(--shadow);
}

.about-grid{
  display:grid;
  grid-template-columns:1.1fr 0.9fr;
  gap:24px;
  align-items:start;
}

.values-card{
  padding:22px;
  border-radius:var(--radius);
  border:1px solid var(--border);
  background:rgba(14,22,38,0.85);
  box-shadow:var(--shadow);
}

.upcoming{
  display:grid;
  grid-template-columns:1.1fr 0.9fr;
  gap:24px;
  align-items:center;
}
.upcoming-card{
  padding:24px;
  border-radius:var(--radius-lg);
  border:1px solid var(--border);
  background:linear-gradient(160deg, rgba(8,160,232,0.14), rgba(12,18,32,0.9));
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:12px;
}
.upcoming-card img{
  width:160px;
  border-radius:16px;
  border:1px solid rgba(111,210,255,0.4);
}

.contact{
  display:grid;
  grid-template-columns:1.1fr 0.9fr;
  gap:24px;
  align-items:center;
}
.contact-card{
  padding:22px;
  border-radius:var(--radius);
  border:1px solid var(--border);
  background:rgba(14,22,38,0.85);
  box-shadow:var(--shadow);
  display:grid;
  gap:10px;
}

.footer{
  padding:32px 0;
  border-top:1px solid rgba(29,42,64,0.7);
  background:rgba(9,13,22,0.9);
}
.footer-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
  color:var(--muted);
}
.footer-links{
  display:flex;
  gap:14px;
}

:focus-visible{
  outline:2px solid rgba(111,210,255,0.8);
  outline-offset:2px;
}

@media (max-width:980px){
  .hero-grid,
  .game-grid,
  .three-col,
  .about-grid,
  .upcoming,
  .contact{
    grid-template-columns:1fr;
  }
  .nav{display:none; flex-direction:column; align-items:flex-start; width:100%}
  .nav.open{display:flex}
  .nav-toggle{display:block}
  .header-inner{flex-wrap:wrap}
  .nav-menu{position:static; margin:0; box-shadow:none}
  .nav-dropdown:hover .nav-menu{display:none}
}

@media (max-width:680px){
  .hero{padding:60px 0 40px}
  .hero h2{font-size:32px}
  .section{padding:52px 0}
}

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