@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700;900&family=Raleway:wght@300;400;500;600&display=swap');

:root {
  --midnight: #0b1628;
  --navy: #0f1f3d;
  --silver: #a0b4d0;
  --pale-blue: #c8d8ec;
  --accent: #6b8fc4;
  --glow: rgba(160,180,208,0.15);
  --txt: #bcc8d8;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Raleway', sans-serif;
  background: var(--midnight);
  color: var(--txt);
  line-height: 1.75;
  overflow-x: hidden;
}

a { color: var(--accent); text-decoration: none; transition: 0.3s; }
a:hover { color: var(--pale-blue); }

header.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  padding: 0 2rem;
  background: var(--navy);
  border-bottom: 1px solid rgba(160,180,208,0.15);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.site-logo {
  font-family: 'Cinzel', serif;
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--silver);
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 1px;
}

.site-logo svg { width: 36px; height: 36px; }

nav.desktop-nav ul { display: flex; list-style: none; gap: 2rem; }

nav.desktop-nav a {
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--txt);
  opacity: 0.7;
}

nav.desktop-nav a:hover { opacity: 1; color: var(--silver); }

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.mobile-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--silver);
  margin: 5px 0;
  transition: 0.3s;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--navy);
  z-index: 999;
  padding: 2rem;
}

.mobile-menu.show { display: flex; flex-direction: column; gap: 1.5rem; }

.mobile-menu a {
  font-family: 'Cinzel', serif;
  font-size: 1.2rem;
  color: var(--silver);
  display: block;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(160,180,208,0.1);
}

.full-hero {
  width: 100%;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem;
  background: linear-gradient(180deg, var(--midnight) 0%, var(--navy) 50%, var(--midnight) 100%);
  position: relative;
}

.full-hero::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(107,143,196,0.08), transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.full-hero h1 {
  font-family: 'Cinzel', serif;
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--pale-blue);
  margin-bottom: 1.5rem;
  position: relative;
}

.full-hero .subtitle {
  max-width: 700px;
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--txt);
  margin-bottom: 2.5rem;
  position: relative;
}

.primary-btn {
  display: inline-block;
  padding: 14px 44px;
  border: 1px solid var(--silver);
  color: var(--silver);
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: 0.3s;
  position: relative;
}

.primary-btn:hover {
  background: var(--silver);
  color: var(--midnight);
}

.game-embed {
  width: 100%;
  max-width: 820px;
  margin: 3rem auto 0;
  border: 1px solid rgba(160,180,208,0.2);
  border-radius: 6px;
  overflow: hidden;
  background: #080e1a;
  position: relative;
}

.game-embed iframe { width: 100%; height: 520px; border: none; display: block; }

.strip-notices {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 2rem;
  gap: 2.5rem;
}

.sn-card {
  text-align: center;
  padding: 2rem 1.5rem;
  border: 1px solid rgba(160,180,208,0.1);
  border-radius: 10px;
  background: var(--navy);
}

.sn-card .sn-icon { font-size: 2.2rem; margin-bottom: 0.7rem; }

.sn-card h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.05rem;
  color: var(--silver);
  margin-bottom: 0.5rem;
}

.sn-card p { font-size: 0.9rem; font-weight: 300; opacity: 0.75; }

.text-band {
  background: var(--navy);
  padding: 5rem 2rem;
}

.text-band-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.text-band h2 {
  font-family: 'Cinzel', serif;
  font-size: 2.2rem;
  color: var(--pale-blue);
  margin-bottom: 1.5rem;
}

.text-band p { font-size: 1.02rem; font-weight: 300; margin-bottom: 1.2rem; opacity: 0.8; }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem 2rem;
}

.two-col .col h2 {
  font-family: 'Cinzel', serif;
  font-size: 1.6rem;
  color: var(--silver);
  margin-bottom: 1rem;
}

.two-col .col p { font-size: 0.98rem; font-weight: 300; opacity: 0.8; margin-bottom: 1rem; }

.article-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.article-page h1 {
  font-family: 'Cinzel', serif;
  font-size: 2.6rem;
  color: var(--pale-blue);
  text-align: center;
  margin-bottom: 2.5rem;
}

.article-page h2 {
  font-family: 'Cinzel', serif;
  font-size: 1.4rem;
  color: var(--silver);
  margin: 2.5rem 0 0.8rem;
}

.article-page p { font-size: 0.98rem; font-weight: 300; margin-bottom: 1rem; opacity: 0.82; }
.article-page ul { padding-left: 1.5rem; margin-bottom: 1.5rem; }
.article-page li { font-size: 0.98rem; font-weight: 300; margin-bottom: 0.5rem; opacity: 0.82; }

.play-area {
  max-width: 880px;
  margin: 0 auto;
  padding: 4rem 2rem;
  text-align: center;
}

.play-area h1 {
  font-family: 'Cinzel', serif;
  font-size: 2.6rem;
  color: var(--pale-blue);
  margin-bottom: 1rem;
}

.play-area > p { font-weight: 300; margin-bottom: 2rem; opacity: 0.75; }

footer.main-footer {
  background: var(--navy);
  border-top: 1px solid rgba(160,180,208,0.12);
  padding: 2.5rem 2rem;
  text-align: center;
}

.f-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 1.5rem; margin-bottom: 1rem; }
.f-links a { font-size: 0.85rem; color: var(--txt); opacity: 0.6; }
.f-links a:hover { opacity: 1; }
.f-copy { font-size: 0.8rem; opacity: 0.4; }

.age-wall {
  position: fixed;
  inset: 0;
  background: rgba(11,22,40,0.95);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.age-panel {
  background: var(--navy);
  border: 1px solid var(--silver);
  border-radius: 12px;
  padding: 3rem;
  text-align: center;
  max-width: 430px;
  width: 90%;
}

.age-panel h2 {
  font-family: 'Cinzel', serif;
  font-size: 1.6rem;
  color: var(--pale-blue);
  margin-bottom: 1rem;
}

.age-panel p { font-weight: 300; margin-bottom: 2rem; font-size: 0.95rem; }

.age-options { display: flex; gap: 1rem; justify-content: center; }

.age-options button {
  padding: 10px 30px;
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

.opt-yes { background: var(--silver); color: var(--midnight); border: 1px solid var(--silver); }
.opt-yes:hover { background: var(--pale-blue); }
.opt-no { background: transparent; color: var(--silver); border: 1px solid var(--silver); }
.opt-no:hover { background: rgba(160,180,208,0.1); }

@media (max-width: 900px) {
  .mobile-toggle { display: block; }
  nav.desktop-nav { display: none; }

  .full-hero h1 { font-size: 2rem; }
  .strip-notices { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .game-embed iframe { height: 380px; }
}

@media (max-width: 480px) {
  .full-hero h1 { font-size: 1.6rem; }
  header.navbar { padding: 0 1rem; }
  .game-embed iframe { height: 280px; }
}
