@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;500;700&family=Inter:wght@300;400;600&display=swap');

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --navy: #0a1628;
  --deep: #0d1f3c;
  --blue: #1e40af;
  --sky: #38bdf8;
  --star: #fbbf24;
  --text: #c8d6e5;
  --muted: #7b8ca8;
  --white: #f0f4f8;
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: var(--navy); color: var(--text); line-height: 1.75; overflow-x: hidden; }
h1, h2, h3 { font-family: 'Rajdhani', sans-serif; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
a { color: var(--sky); text-decoration: none; transition: 0.3s; }
a:hover { color: var(--star); }

.topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  height: 60px; display: flex; align-items: center; justify-content: space-between;
  padding: 0 2rem;
  background: linear-gradient(180deg, rgba(10,22,40,0.98), rgba(10,22,40,0.85));
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(56,189,248,0.1);
}
.topbar-brand { font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: 1.3rem; color: var(--sky); letter-spacing: 3px; }
.topbar-menu { display: flex; gap: 1.8rem; list-style: none; }
.topbar-menu a { color: var(--muted); font-size: 0.88rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.topbar-menu a:hover, .topbar-menu a.active { color: var(--white); }

.burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.burger span { width: 24px; height: 2px; background: var(--sky); transition: 0.3s; }
.burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

@media(max-width:768px) {
  .burger { display: flex; }
  .topbar-menu {
    position: fixed; top: 60px; left: 0; right: 0;
    background: rgba(10,22,40,0.97);
    flex-direction: column; padding: 1.5rem 2rem;
    transform: translateX(100%); transition: 0.35s;
  }
  .topbar-menu.open { transform: translateX(0); }
}

.splash {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 100px 2rem 4rem;
  background:
    radial-gradient(circle at 20% 30%, rgba(30,64,175,0.2), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(56,189,248,0.1), transparent 50%),
    var(--navy);
}
.splash-inner { max-width: 800px; }
.splash h1 { font-size: clamp(2rem, 5vw, 3.5rem); color: var(--white); margin-bottom: 1rem; }
.splash h1 span { color: var(--star); }
.splash p { font-size: 1.1rem; color: var(--muted); margin-bottom: 2rem; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta { display: inline-block; padding: 0.8rem 2.2rem; background: var(--blue); color: #fff; font-family: 'Rajdhani', sans-serif; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; border-radius: 6px; transition: 0.3s; }
.cta:hover { background: var(--sky); color: var(--navy); }

.diagonal-sep { height: 80px; background: var(--deep); clip-path: polygon(0 0, 100% 60%, 100% 100%, 0 100%); }
.diagonal-sep-rev { height: 80px; background: var(--deep); clip-path: polygon(0 40%, 100% 0, 100% 100%, 0 100%); }

.badges {
  display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap;
  padding: 4rem 2rem; background: var(--deep);
}
.badge {
  flex: 1; min-width: 250px; max-width: 360px;
  background: rgba(30,64,175,0.12); border: 1px solid rgba(56,189,248,0.15);
  border-radius: 12px; padding: 2rem; text-align: center;
}
.badge .ico { font-size: 2.2rem; margin-bottom: 0.6rem; }
.badge h3 { font-size: 1rem; color: var(--sky); margin-bottom: 0.5rem; }
.badge p { font-size: 0.9rem; color: var(--muted); }

.game-panel {
  padding: 4rem 2rem; text-align: center; background: var(--deep);
}
.game-panel h2 { font-size: clamp(1.4rem, 3vw, 2rem); color: var(--star); margin-bottom: 1.5rem; }
.game-embed {
  width: 100%; max-width: 960px; margin: 0 auto;
  aspect-ratio: 16/10; border-radius: 12px; overflow: hidden;
  border: 2px solid rgba(56,189,248,0.2);
  box-shadow: 0 0 50px rgba(30,64,175,0.25);
}
.game-embed iframe { width: 100%; height: 100%; border: none; }

.cols-3 {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem; padding: 4rem 2rem; max-width: 1200px; margin: 0 auto;
}
.col-card { background: var(--deep); border-radius: 12px; padding: 2rem; border: 1px solid rgba(56,189,248,0.08); }
.col-card h3 { color: var(--sky); margin-bottom: 0.7rem; font-size: 1rem; }
.col-card p { color: var(--muted); font-size: 0.93rem; }

.content { padding: 4rem 2rem; max-width: 900px; margin: 0 auto; }
.content h2 { font-size: clamp(1.4rem, 3vw, 2rem); margin-bottom: 1rem; color: var(--sky); }
.content p, .content li { color: var(--muted); margin-bottom: 1rem; font-size: 0.95rem; }
.content ul { padding-left: 1.5rem; }

.page-hero { padding: 120px 2rem 3rem; text-align: center; background: radial-gradient(circle at 50% 50%, rgba(30,64,175,0.15), transparent 70%); }
.page-hero h1 { font-size: clamp(1.6rem, 4vw, 2.8rem); color: var(--white); }

footer.bottom {
  margin-top: 4rem; padding: 2.5rem 2rem;
  border-top: 1px solid rgba(56,189,248,0.1);
  text-align: center; background: var(--navy);
}
.flinks { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; margin-bottom: 0.8rem; }
.flinks a { color: var(--muted); font-size: 0.85rem; }
footer.bottom p { color: var(--muted); font-size: 0.78rem; }

.age-gate {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(10,22,40,0.95);
  display: flex; align-items: center; justify-content: center;
}
.age-dialog {
  background: var(--deep); border: 2px solid var(--blue); border-radius: 16px;
  padding: 3rem 2.5rem; text-align: center; max-width: 420px; width: 90%;
  box-shadow: 0 0 60px rgba(30,64,175,0.3);
}
.age-dialog h2 { font-size: 1.4rem; color: var(--sky); margin-bottom: 1rem; }
.age-dialog p { color: var(--muted); margin-bottom: 2rem; }
.age-btns { display: flex; gap: 1rem; justify-content: center; }
.age-btns button { padding: 0.7rem 1.8rem; font-family: 'Rajdhani', sans-serif; font-weight: 700; text-transform: uppercase; border-radius: 6px; cursor: pointer; border: none; font-size: 0.9rem; }
.age-btns .yes { background: var(--blue); color: #fff; }
.age-btns .yes:hover { background: var(--sky); color: var(--navy); }
.age-btns .no { background: transparent; border: 2px solid var(--sky); color: var(--sky); }
.age-btns .no:hover { background: var(--sky); color: var(--navy); }
.age-gate.hidden { display: none; }
