@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@300;400;600;700&family=Cormorant+Garamond:wght@400;600;700&display=swap');

:root {
  --ocean: #0b3d4e;
  --deep: #061e28;
  --teal: #1abc9c;
  --aqua: #76d7c4;
  --sand: #f5e6ca;
  --text: #b8d4db;
  --white: #fff;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Josefin Sans', sans-serif;
  background: var(--deep);
  color: var(--text);
  line-height: 1.8;
}

h1, h2, h3 { font-family: 'Cormorant Garamond', serif; color: var(--sand); }
a { color: var(--aqua); text-decoration: none; transition: 0.3s; }
a:hover { color: var(--teal); }

.navbar {
  background: rgba(6,30,40,0.97);
  position: sticky;
  top: 0;
  z-index: 900;
  padding: 0 2rem;
}

.navbar-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
}

.logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--teal);
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-text svg { width: 32px; height: 32px; }

.nav-menu { display: flex; list-style: none; gap: 1.6rem; }

.nav-menu a {
  color: var(--text);
  font-size: 0.84rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.nav-menu a:hover { color: var(--teal); }

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-menu-btn span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--teal);
  margin: 5px 0;
}

/* WIDE HERO */
.wide-hero {
  background: linear-gradient(to bottom, var(--ocean), var(--deep));
  padding: 5rem 2rem 4rem;
  position: relative;
}

.wide-hero-content {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
}

.wide-hero h1 {
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.wide-hero p {
  font-size: 1.05rem;
  color: rgba(184,212,219,0.85);
  margin-bottom: 2rem;
}

.ocean-btn {
  display: inline-block;
  padding: 0.85rem 2.5rem;
  background: var(--teal);
  color: var(--deep);
  font-weight: 700;
  border-radius: 50px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: 0.3s;
}

.ocean-btn:hover { background: var(--aqua); color: var(--deep); }

.hero-graphic {
  display: flex;
  align-items: center;
  justify-content: center;
}

.wave-shape {
  width: 250px;
  height: 250px;
  border-radius: 50% 50% 50% 70% / 50% 50% 70% 60%;
  background: linear-gradient(135deg, var(--teal), var(--ocean));
  animation: waveFloat 8s ease-in-out infinite;
  box-shadow: 0 0 60px rgba(26,188,156,0.2);
}

@keyframes waveFloat {
  0%, 100% { border-radius: 50% 50% 50% 70% / 50% 50% 70% 60%; }
  25% { border-radius: 60% 40% 55% 45% / 55% 60% 40% 55%; }
  50% { border-radius: 45% 55% 60% 40% / 60% 45% 55% 50%; }
  75% { border-radius: 55% 50% 40% 60% / 45% 55% 60% 45%; }
}

/* TICKER */
.ticker-bar {
  background: var(--teal);
  padding: 0.8rem 2rem;
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.ticker-item {
  color: var(--deep);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* SECTIONS */
.block {
  max-width: 1300px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.block h2 { font-size: 2rem; text-align: center; margin-bottom: 0.8rem; }
.block .intro { text-align: center; max-width: 720px; margin: 0 auto 2rem; color: rgba(184,212,219,0.8); }

.game-embed {
  max-width: 920px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid var(--teal);
  box-shadow: 0 0 40px rgba(26,188,156,0.12);
}

.game-embed iframe { width: 100%; height: 580px; border: none; display: block; }

/* ZIGZAG FEATURES */
.zigzag { margin-top: 2rem; }

.zigzag-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
  align-items: center;
}

.zigzag-row.reverse { direction: rtl; }
.zigzag-row.reverse > * { direction: ltr; }

.zigzag-text h3 { font-size: 1.4rem; margin-bottom: 0.8rem; color: var(--aqua); }
.zigzag-text p { font-size: 0.95rem; color: rgba(184,212,219,0.75); }

.zigzag-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.zigzag-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 3px solid var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

/* FOOTER */
.bottom-bar {
  background: var(--ocean);
  padding: 2.5rem 2rem;
  text-align: center;
  border-top: 1px solid rgba(26,188,156,0.2);
}

.bottom-links a { margin: 0 1rem; color: var(--aqua); font-size: 0.9rem; }
.bottom-copy { margin-top: 1rem; font-size: 0.75rem; color: rgba(184,212,219,0.35); line-height: 1.9; }

/* AGE */
.age-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.93);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.age-modal.closed { display: none; }

.age-inner {
  background: var(--ocean);
  border: 2px solid var(--teal);
  padding: 2.5rem;
  border-radius: 16px;
  text-align: center;
  max-width: 400px;
  width: 90%;
}

.age-inner h2 { margin-bottom: 0.8rem; font-size: 1.3rem; color: var(--teal); }
.age-inner p { margin-bottom: 1.5rem; }

.age-btns { display: flex; gap: 1rem; justify-content: center; }

.age-btns button {
  padding: 0.7rem 2rem;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  cursor: pointer;
  font-size: 0.88rem;
  transition: 0.3s;
}

.age-accept { background: var(--teal); color: var(--deep); }
.age-accept:hover { background: var(--aqua); }
.age-reject { background: transparent; border: 1px solid var(--text) !important; color: var(--text); }
.age-reject:hover { border-color: #e74c3c !important; color: #e74c3c; }

.content-page {
  max-width: 1300px;
  margin: 0 auto;
  padding: 3rem 2rem 4rem;
  min-height: 55vh;
}

.content-page h1 { font-size: 2.2rem; margin-bottom: 1.5rem; color: var(--teal); }
.content-page h2 { font-size: 1.4rem; margin: 2rem 0 0.8rem; color: var(--aqua); }
.content-page p { margin-bottom: 1rem; }
.content-page ul { margin: 1rem 0 1.5rem 1.5rem; }
.content-page li { margin-bottom: 0.5rem; }

@media (max-width: 768px) {
  .mobile-menu-btn { display: block; }
  .nav-menu {
    display: none;
    position: absolute;
    top: 66px;
    left: 0;
    width: 100%;
    background: var(--deep);
    flex-direction: column;
    padding: 1rem 2rem;
    border-bottom: 2px solid var(--teal);
  }
  .nav-menu.open { display: flex; }
  .nav-menu li { padding: 0.6rem 0; }
  .wide-hero-content { grid-template-columns: 1fr; }
  .wide-hero h1 { font-size: 2rem; }
  .hero-graphic { display: none; }
  .zigzag-row, .zigzag-row.reverse { grid-template-columns: 1fr; }
  .zigzag-visual { display: none; }
  .game-embed iframe { height: 380px; }
  .ticker-bar { gap: 1rem; }
}
