@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;800&family=Roboto:wght@300;400;500&display=swap');

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

:root {
  --navy: #0A1628;
  --navy-mid: #152238;
  --lime: #76FF03;
  --lime-dim: #5FCC02;
  --white: #F8F9FA;
  --gray-light: #E0E0E0;
  --gray-text: #B0BEC5;
}

body {
  font-family: 'Roboto', sans-serif;
  background: var(--navy);
  color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: 'Montserrat', sans-serif; }

a { color: var(--lime); text-decoration: none; transition: 0.3s; }
a:hover { color: var(--lime-dim); }

/* HEADER */
.site-nav {
  background: rgba(10,22,40,0.95);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(118,255,3,0.15);
}
.nav-container {
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 60px;
}

.site-logo {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--lime);
  display: flex;
  align-items: center;
  gap: 8px;
}
.site-logo svg { width: 30px; height: 30px; }

.nav-menu { display: flex; gap: 1.5rem; list-style: none; }
.nav-menu a {
  color: var(--gray-text);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: 0.3s;
}
.nav-menu a:hover, .nav-menu a.on { color: var(--lime); }

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}
.mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--lime);
  margin: 5px 0;
}

/* HERO */
.hero {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  min-height: 420px;
  align-items: center;
  gap: 3rem;
  padding: 4rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}
.hero-left h1 {
  font-size: 3.2rem;
  line-height: 1.1;
  margin-bottom: 1rem;
}
.hero-left h1 .hl { color: var(--lime); }
.hero-left p { color: var(--gray-text); font-size: 1.1rem; max-width: 520px; }
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.hero-badge {
  background: var(--navy-mid);
  border: 1px solid rgba(118,255,3,0.2);
  padding: 1.2rem 1.5rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.hero-badge .badge-icon { font-size: 1.5rem; }
.hero-badge .badge-text { font-weight: 500; font-size: 0.95rem; }

/* GAME */
.game-area {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 2rem;
}
.game-box {
  background: #000;
  border: 1px solid var(--lime);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 30px rgba(118,255,3,0.08);
}
.game-box iframe { width: 100%; height: 600px; border: none; display: block; }

/* ASYMMETRIC GRID */
.asym-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 3rem auto;
  padding: 0 2rem;
}
.asym-card {
  background: var(--navy-mid);
  border-radius: 8px;
  padding: 2rem;
  border-left: 3px solid var(--lime);
}
.asym-card.tall { grid-row: span 2; }
.asym-card h3 { color: var(--lime); margin-bottom: 0.8rem; font-size: 1.3rem; }
.asym-card p { color: var(--gray-text); font-size: 0.95rem; }

/* COUNTER ROW */
.counter-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 3rem auto;
  padding: 0 2rem;
}
.counter-item {
  background: linear-gradient(135deg, var(--navy-mid), var(--navy));
  border: 1px solid rgba(118,255,3,0.1);
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
}
.counter-item .c-val {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--lime);
}
.counter-item .c-lbl { color: var(--gray-text); font-size: 0.85rem; margin-top: 0.3rem; }

/* TEXT PAGES */
.page-body {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 2rem;
}
.page-body h1 {
  color: var(--lime);
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
}
.page-body h2 {
  color: var(--lime-dim);
  font-size: 1.4rem;
  margin: 2rem 0 0.8rem;
}
.page-body p { color: var(--gray-light); margin-bottom: 1rem; }
.page-body ul { margin: 1rem 0 1rem 2rem; color: var(--gray-light); }
.page-body ul li { margin-bottom: 0.4rem; }

/* PLAY PAGE */
.play-top {
  text-align: center;
  padding: 3rem 2rem 0;
}
.play-top h1 { color: var(--lime); font-size: 2.4rem; }
.play-top p { color: var(--gray-text); max-width: 600px; margin: 0.5rem auto 0; }
.play-info {
  max-width: 700px;
  margin: 1.5rem auto;
  background: var(--navy-mid);
  border-left: 3px solid var(--lime);
  padding: 1rem 1.5rem;
  border-radius: 0 6px 6px 0;
  color: var(--gray-text);
  font-size: 0.9rem;
}

/* FOOTER */
.bottom-bar {
  background: #060E1A;
  border-top: 1px solid rgba(118,255,3,0.1);
  padding: 2rem;
  text-align: center;
}
.responsible {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.responsible a { color: var(--lime); font-size: 0.9rem; }
.copy-text { color: rgba(255,255,255,0.3); font-size: 0.78rem; }

/* AGE GATE */
.age-screen {
  position: fixed;
  inset: 0;
  background: rgba(10,22,40,0.97);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.age-popup {
  background: var(--navy-mid);
  border: 2px solid var(--lime);
  border-radius: 12px;
  padding: 2.5rem;
  text-align: center;
  max-width: 420px;
  width: 90%;
}
.age-popup h2 { color: var(--lime); margin-bottom: 0.8rem; font-size: 1.7rem; }
.age-popup p { color: var(--gray-text); margin-bottom: 1.5rem; }
.age-actions { display: flex; gap: 1rem; justify-content: center; }
.btn-accept, .btn-reject {
  padding: 0.7rem 2rem;
  border: none;
  border-radius: 6px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}
.btn-accept { background: var(--lime); color: var(--navy); }
.btn-accept:hover { background: var(--lime-dim); }
.btn-reject { background: transparent; border: 2px solid var(--lime); color: var(--lime); }
.btn-reject:hover { background: rgba(118,255,3,0.1); }
.blocked-text { display: none; color: #FF5252; margin-top: 1rem; font-weight: 600; }

/* RESPONSIVE */
@media (max-width: 768px) {
  .mobile-toggle { display: block; }
  .nav-menu {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: var(--navy);
    flex-direction: column;
    padding: 1rem 2rem;
    border-bottom: 1px solid rgba(118,255,3,0.15);
  }
  .nav-menu.visible { display: flex; }
  .nav-container { position: relative; }
  .hero { grid-template-columns: 1fr; padding: 2.5rem 2rem; }
  .hero-left h1 { font-size: 2rem; }
  .asym-grid { grid-template-columns: 1fr; }
  .asym-card.tall { grid-row: auto; }
  .counter-row { grid-template-columns: 1fr; }
  .game-box iframe { height: 380px; }
}
