@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;800&family=Open+Sans:wght@300;400;600&display=swap');

:root {
  --teal: #00b4d8;
  --teal-dark: #0077b6;
  --navy: #0a1628;
  --navy-light: #132240;
  --silver: #cad2e0;
  --white: #f8fafc;
  --accent-glow: rgba(0, 180, 216, 0.25);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Open Sans', sans-serif;
  background: var(--navy);
  color: var(--silver);
  line-height: 1.75;
}

a { color: var(--teal); text-decoration: none; transition: 0.3s; }
a:hover { color: #33d4f0; }

header.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  height: 68px;
  background: var(--navy-light);
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.brand svg { width: 36px; height: 36px; }

.brand-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 2px;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

nav ul a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--silver);
  text-transform: uppercase;
  letter-spacing: 1px;
}

nav ul a:hover { color: var(--teal); }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--teal);
  margin: 6px 0;
  transition: 0.3s;
}

.menu-toggle.open span:first-child { transform: rotate(45deg) translate(5px, 6px); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:last-child { transform: rotate(-45deg) translate(5px, -6px); }

.split-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 85vh;
  align-items: center;
}

.split-hero .hero-text {
  padding: 4rem 3rem;
}

.split-hero .hero-text h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1.2rem;
}

.split-hero .hero-text h1 span { color: var(--teal); }

.split-hero .hero-text p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: var(--silver);
}

.cta-btn {
  display: inline-block;
  padding: 0.85rem 2.4rem;
  background: var(--teal);
  color: var(--navy);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  border-radius: 8px;
  font-size: 1rem;
  transition: 0.3s;
  border: none;
  cursor: pointer;
}

.cta-btn:hover {
  background: #33d4f0;
  box-shadow: 0 6px 25px var(--accent-glow);
  color: var(--navy);
}

.split-hero .hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  background: radial-gradient(circle at 50% 50%, var(--accent-glow), transparent 70%);
}

.hero-visual .game-preview {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid var(--teal-dark);
  box-shadow: 0 0 40px var(--accent-glow);
}

.hero-visual .game-preview iframe {
  width: 100%;
  height: 380px;
  border: none;
  display: block;
}

.badges-row {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  padding: 2.5rem 2rem;
  background: linear-gradient(90deg, var(--navy-light), var(--navy), var(--navy-light));
}

.badge-item {
  background: rgba(0, 180, 216, 0.08);
  border: 1px solid rgba(0, 180, 216, 0.2);
  padding: 1rem 2rem;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--teal);
}

.badge-item .b-icon { font-size: 1.3rem; }

.about-block {
  padding: 5rem 3rem;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.about-block h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.about-block p {
  max-width: 800px;
  margin: 0 auto 1.3rem;
  font-size: 1.05rem;
}

.game-embed-section {
  padding: 4rem 2rem;
  text-align: center;
}

.game-embed-section h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.game-container {
  max-width: 960px;
  margin: 0 auto;
  border-radius: 14px;
  overflow: hidden;
  border: 2px solid var(--teal-dark);
  background: #000;
  box-shadow: 0 0 50px rgba(0, 119, 182, 0.3);
}

.game-container iframe {
  width: 100%;
  height: 600px;
  border: none;
  display: block;
}

.highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  padding: 4rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.highlight-box {
  background: var(--navy-light);
  border-left: 4px solid var(--teal);
  padding: 2rem 2rem;
  border-radius: 0 12px 12px 0;
}

.highlight-box h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 0.7rem;
}

.highlight-box p { font-size: 0.95rem; color: var(--silver); }

.legal-content {
  padding: 3rem 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.legal-content h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--white);
  text-align: center;
  margin-bottom: 2.5rem;
}

.legal-content h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.4rem;
  color: var(--teal);
  margin: 2rem 0 0.8rem;
}

.legal-content p, .legal-content li {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--silver);
}

.legal-content ul { padding-left: 1.5rem; margin-bottom: 1.2rem; }

.play-wrap {
  padding: 3rem 2rem;
  text-align: center;
}

.play-wrap h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1rem;
}

.play-wrap > p {
  color: var(--silver);
  max-width: 700px;
  margin: 0 auto 2rem;
}

footer.site-bottom {
  background: var(--navy-light);
  padding: 3rem 2rem;
  text-align: center;
  margin-top: 4rem;
  border-top: 1px solid rgba(0, 180, 216, 0.15);
}

.bottom-nav {
  display: flex;
  justify-content: center;
  gap: 1.8rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.bottom-nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  color: var(--silver);
  font-weight: 600;
}

.bottom-nav a:hover { color: var(--teal); }

.rg-section {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 180, 216, 0.1);
}

.rg-section p { font-size: 0.82rem; margin-bottom: 0.6rem; color: var(--silver); }
.rg-section a { margin: 0 0.7rem; font-size: 0.82rem; color: var(--teal); }

.age-gate {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.age-dialog {
  background: var(--navy-light);
  border: 2px solid var(--teal);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  max-width: 440px;
  width: 92%;
  box-shadow: 0 0 50px rgba(0, 180, 216, 0.3);
}

.age-dialog h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.6rem;
  color: var(--teal);
  margin-bottom: 1rem;
}

.age-dialog p { margin-bottom: 1.8rem; font-size: 0.95rem; }

.age-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.age-actions button {
  padding: 0.75rem 2.2rem;
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid var(--teal);
  transition: 0.3s;
}

.age-accept { background: var(--teal); color: var(--navy); }
.age-accept:hover { background: #33d4f0; }
.age-reject { background: transparent; color: var(--teal); }
.age-reject:hover { background: rgba(0, 180, 216, 0.1); }

.copy-note {
  font-size: 0.78rem;
  color: var(--silver);
  margin-top: 1.5rem;
  opacity: 0.7;
}

@media (max-width: 768px) {
  .menu-toggle { display: block; }

  nav ul {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--navy-light);
    flex-direction: column;
    padding: 1.5rem 2rem;
    gap: 1rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  }

  nav ul.visible { display: flex; }

  .split-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .split-hero .hero-text { padding: 2.5rem 1.5rem; text-align: center; }
  .split-hero .hero-text h1 { font-size: 2rem; }
  .split-hero .hero-visual { padding: 1.5rem; }

  .hero-visual .game-preview iframe { height: 280px; }

  .badges-row { flex-direction: column; align-items: center; gap: 0.8rem; }

  .highlights { grid-template-columns: 1fr; }

  .game-container iframe { height: 400px; }

  .bottom-nav { flex-direction: column; gap: 0.6rem; }
}
