
:root{
  --bg:#061427;
  --bg-2:#0b1f3d;
  --panel:rgba(12, 28, 56, 0.88);
  --panel-2:rgba(11, 24, 46, 0.92);
  --line:#1f7ddf;
  --cyan:#45b3ff;
  --cyan-soft:#9ddcff;
  --orange:#ffae2b;
  --text:#f3f7ff;
  --muted:#b6c7df;
  --shadow:0 18px 40px rgba(0,0,0,.38);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter,Segoe UI,Arial,sans-serif;
  color:var(--text);
  background:
    radial-gradient(circle at top center, rgba(55,116,204,.18), transparent 30%),
    linear-gradient(180deg,#04111f 0%, #07162b 35%, #061427 100%);
  min-height:100vh;
}
a{color:var(--cyan-soft);text-decoration:none}
a:hover{color:white}
img{max-width:100%;display:block}

.container{width:min(1180px, calc(100% - 32px)); margin:0 auto}
.nav{
  position:sticky; top:0; z-index:10;
  backdrop-filter: blur(12px);
  background:rgba(5,18,36,.72);
  border-bottom:1px solid rgba(69,179,255,.15);
}
.nav-inner{
  display:flex; align-items:center; justify-content:space-between;
  min-height:78px; gap:18px;
}
.brand{display:flex; align-items:center; gap:14px; font-weight:800; letter-spacing:.3px}
.brand img{width:52px; height:52px; border-radius:14px; box-shadow:0 0 0 1px rgba(69,179,255,.26)}
.brand small{display:block; color:var(--muted); font-weight:500; margin-top:2px}
.nav-links{display:flex; gap:20px; flex-wrap:wrap}
.nav-links a{font-weight:600; color:var(--muted)}
.nav-links a:hover{color:white}

.hero{
  padding:64px 0 38px;
}
.hero-grid{
  display:grid; grid-template-columns:1.1fr .9fr; gap:28px; align-items:center;
}
.card{
  background:linear-gradient(180deg, rgba(14,31,60,.88), rgba(6,21,43,.92));
  border:1px solid rgba(69,179,255,.28);
  border-radius:28px;
  box-shadow:var(--shadow);
}
.hero-copy{padding:36px}
.kicker{
  display:inline-flex; align-items:center; gap:10px;
  padding:10px 14px; border-radius:999px;
  background:rgba(69,179,255,.09); color:var(--cyan-soft); font-weight:700; font-size:.95rem;
  border:1px solid rgba(69,179,255,.22);
}
.hero h1{
  font-size:clamp(2.3rem, 5vw, 4.6rem);
  line-height:1.02; margin:18px 0 14px; letter-spacing:-1px;
}
.hero h1 .accent{color:var(--orange)}
.hero p{
  color:var(--muted); font-size:1.08rem; line-height:1.7; margin:0 0 26px;
}
.hero-actions{display:flex; gap:14px; flex-wrap:wrap}
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  min-height:52px; padding:0 20px; border-radius:18px; font-weight:800;
  border:1px solid rgba(69,179,255,.3); transition:.22s ease;
}
.btn-primary{
  color:#05203d; background:linear-gradient(180deg,#79caff,#45b3ff); box-shadow:0 12px 30px rgba(69,179,255,.25);
}
.btn-primary:hover{transform:translateY(-1px); filter:brightness(1.04)}
.btn-ghost{
  color:var(--text); background:rgba(255,255,255,.03);
}
.btn-ghost:hover{background:rgba(255,255,255,.06)}

.hero-visual{padding:18px}
.visual-shell{
  overflow:hidden; border-radius:24px; border:1px solid rgba(69,179,255,.22);
}
.visual-shell img{width:100%; aspect-ratio:16/9; object-fit:cover}

.section{padding:26px 0}
.section-title{
  margin:0 0 18px; font-size:2rem; letter-spacing:-.4px;
}
.section-copy{color:var(--muted); max-width:760px; line-height:1.7; margin-top:0}

.company-grid, .feature-grid{
  display:grid; grid-template-columns:repeat(3, 1fr); gap:18px;
}
.info-box, .feature-box{
  padding:22px;
}
.info-box h3, .feature-box h3{margin:0 0 10px}
.info-box p, .feature-box p{margin:0; color:var(--muted); line-height:1.7}
.label{color:var(--cyan-soft); font-size:.82rem; text-transform:uppercase; letter-spacing:.12em; font-weight:800}

.game-showcase{
  display:grid; grid-template-columns:.88fr 1.12fr; gap:22px; align-items:start;
}
.game-box{padding:24px}
.game-icon{
  width:132px; height:132px; border-radius:26px; margin-bottom:18px;
  box-shadow:0 16px 34px rgba(0,0,0,.4), 0 0 0 1px rgba(69,179,255,.22);
}
.bullets{margin:14px 0 0; padding-left:18px; color:var(--muted); line-height:1.8}
.bullets li{margin:6px 0}

.screens{
  display:grid; grid-template-columns:repeat(3, 1fr); gap:18px;
}
.screen{
  overflow:hidden; position:relative; border-radius:26px;
  border:1px solid rgba(69,179,255,.24); background:var(--panel-2);
}
.screen img{width:100%; aspect-ratio:9/16; object-fit:cover}
.screen figcaption{
  padding:14px 14px 16px; color:var(--muted); font-size:.95rem;
  border-top:1px solid rgba(69,179,255,.16);
}

.cta{
  padding:28px;
  display:flex; align-items:center; justify-content:space-between; gap:18px; flex-wrap:wrap;
}

.page-hero{
  padding:48px 0 18px;
}
.page-hero .card{padding:28px}
.page-hero h1{margin:0 0 12px; font-size:clamp(2rem, 4vw, 3.4rem)}
.policy, .contact-wrap{
  display:grid; grid-template-columns: 1.3fr .7fr; gap:20px; align-items:start;
}
.content-card{padding:28px}
.content-card h2{margin-top:0; font-size:1.45rem}
.content-card h3{margin:24px 0 10px}
.content-card p, .content-card li{color:var(--muted); line-height:1.78}
.content-card ul{padding-left:18px}
.side-card{padding:22px}
.side-card h3{margin-top:0}
.kv{display:grid; gap:12px}
.kv div{
  padding:14px 16px; border-radius:18px;
  background:rgba(255,255,255,.03); border:1px solid rgba(69,179,255,.16);
}
.kv strong{display:block; margin-bottom:6px}
.notice{
  padding:16px 18px; border-radius:18px; margin:18px 0;
  background:rgba(255,174,43,.08); border:1px solid rgba(255,174,43,.22); color:#ffe4b3;
}
.contact-list{display:grid; gap:14px}
.contact-item{
  padding:16px 18px; border-radius:18px;
  background:rgba(255,255,255,.03); border:1px solid rgba(69,179,255,.16)
}

.footer{
  margin-top:34px; border-top:1px solid rgba(69,179,255,.15);
  background:rgba(4,13,26,.68);
}
.footer-inner{
  display:flex; justify-content:space-between; gap:20px; flex-wrap:wrap;
  padding:24px 0 34px;
}
.footer p{margin:0; color:var(--muted); line-height:1.7}
.footer-links{display:flex; gap:16px; flex-wrap:wrap}

@media (max-width: 980px){
  .hero-grid, .company-grid, .feature-grid, .game-showcase, .policy, .contact-wrap{
    grid-template-columns:1fr;
  }
  .screens{grid-template-columns:repeat(2,1fr)}
}
@media (max-width: 680px){
  .nav-inner{padding:10px 0}
  .brand img{width:44px;height:44px}
  .screens{grid-template-columns:1fr}
  .hero-copy{padding:24px}
  .hero-visual{padding:12px}
}
