@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700;900&family=Lato:wght@300;400;700&display=swap');

:root {
  --emerald: #1b5e20;
  --emerald-light: #2e7d32;
  --gold: #d4af37;
  --gold-bright: #f0c040;
  --dark: #0b1a0e;
  --dark-card: #142a17;
  --cream: #f5f0e1;
  --muted: #c8d0b8;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Lato', sans-serif;
  background: var(--dark);
  color: var(--cream);
  line-height: 1.8;
}

a { color: var(--gold); text-decoration: none; transition: 0.3s; }
a:hover { color: var(--gold-bright); }

.masthead {
  background: linear-gradient(180deg, var(--dark-card), var(--dark));
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 70px;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--gold);
}

.site-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.site-brand svg { width: 38px; height: 38px; }

.site-brand h2 {
  font-family: 'Cinzel', serif;
  font-size: 1.5rem;
  color: var(--gold);
  font-weight: 900;
  letter-spacing: 2px;
}

.main-nav {
  display: flex;
  gap: 1.6rem;
  list-style: none;
}

.main-nav a {
  font-family: 'Cinzel', serif;
  font-size: 0.82rem;
  color: var(--cream);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
}

.main-nav a:hover { color: var(--gold); }

.burger-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
}

.burger-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  margin: 5px 0;
  transition: 0.3s;
}

.burger-btn.is-open span:first-child { transform: rotate(45deg) translate(4px, 6px); }
.burger-btn.is-open span:nth-child(2) { opacity: 0; }
.burger-btn.is-open span:last-child { transform: rotate(-45deg) translate(5px, -6px); }

.grand-hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem;
  background: linear-gradient(180deg, rgba(27, 94, 32, 0.2) 0%, transparent 100%);
  overflow: hidden;
}

.grand-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 30%, rgba(212, 175, 55, 0.1), transparent 60%);
}

.grand-hero h1 {
  font-family: 'Cinzel', serif;
  font-size: 3.4rem;
  color: var(--gold);
  font-weight: 900;
  position: relative;
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 20px rgba(212, 175, 55, 0.3);
}

.grand-hero .tagline {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 650px;
  margin-bottom: 2.5rem;
  position: relative;
}

.play-btn {
  display: inline-block;
  padding: 1rem 3rem;
  background: var(--gold);
  color: var(--dark);
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: 0.3s;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
}

.play-btn:hover {
  background: var(--gold-bright);
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.5);
  color: var(--dark);
}

.warning-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: var(--emerald);
}

.warning-strip .strip-cell {
  padding: 1.2rem;
  text-align: center;
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--gold);
  border-right: 1px solid rgba(212, 175, 55, 0.2);
}

.warning-strip .strip-cell:last-child { border-right: none; }

.strip-cell .s-icon { font-size: 1.3rem; display: block; margin-bottom: 0.3rem; }

.featured-game {
  padding: 5rem 2rem;
  text-align: center;
}

.featured-game h2 {
  font-family: 'Cinzel', serif;
  font-size: 2.2rem;
  color: var(--gold);
  margin-bottom: 2rem;
}

.game-wrapper {
  max-width: 960px;
  margin: 0 auto;
  border: 2px solid var(--emerald-light);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 60px rgba(27, 94, 32, 0.4);
  background: #000;
}

.game-wrapper iframe {
  width: 100%;
  height: 600px;
  border: none;
  display: block;
}

.columns-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 100%;
}

.col-block {
  padding: 3rem 2.5rem;
  background: var(--dark-card);
  border-right: 1px solid rgba(212, 175, 55, 0.08);
  text-align: center;
}

.col-block:last-child { border-right: none; }
.col-block:nth-child(2) { background: var(--dark); }

.col-block .col-icon { font-size: 2.5rem; margin-bottom: 1rem; }

.col-block h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

.col-block p { color: var(--muted); font-size: 0.95rem; }

.narrative {
  padding: 5rem 3rem;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.narrative h2 {
  font-family: 'Cinzel', serif;
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.narrative p {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 1.3rem;
}

.text-page {
  padding: 3rem 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.text-page h1 {
  font-family: 'Cinzel', serif;
  font-size: 2.5rem;
  color: var(--gold);
  text-align: center;
  margin-bottom: 2.5rem;
}

.text-page h2 {
  font-family: 'Cinzel', serif;
  font-size: 1.4rem;
  color: var(--gold);
  margin: 2rem 0 0.8rem;
}

.text-page p, .text-page li {
  color: var(--muted);
  font-size: 1rem;
  margin-bottom: 1rem;
}

.text-page ul { padding-left: 1.5rem; margin-bottom: 1.5rem; }

.play-page {
  padding: 3rem 2rem;
  text-align: center;
}

.play-page h1 {
  font-family: 'Cinzel', serif;
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.play-page > p {
  color: var(--muted);
  max-width: 700px;
  margin: 0 auto 2rem;
}

.grand-footer {
  background: var(--dark-card);
  padding: 3rem 2rem;
  text-align: center;
  border-top: 1px solid var(--gold);
  margin-top: 4rem;
}

.foot-nav {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.foot-nav a {
  font-family: 'Cinzel', serif;
  font-size: 0.8rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.foot-nav a:hover { color: var(--gold); }

.rg-bar {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.rg-bar p { font-size: 0.82rem; color: var(--muted); margin-bottom: 0.5rem; }
.rg-bar a { margin: 0 0.7rem; font-size: 0.82rem; }

.copyright {
  margin-top: 1.5rem;
  font-size: 0.75rem;
  color: var(--muted);
  opacity: 0.7;
}

.age-wall {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.age-box {
  background: var(--dark-card);
  border: 2px solid var(--gold);
  border-radius: 12px;
  padding: 3rem 2.5rem;
  text-align: center;
  max-width: 450px;
  width: 90%;
}

.age-box h2 {
  font-family: 'Cinzel', serif;
  font-size: 1.7rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.age-box p { color: var(--muted); margin-bottom: 2rem; }

.age-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.age-btns button {
  padding: 0.8rem 2.2rem;
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid var(--gold);
  border-radius: 4px;
  cursor: pointer;
  transition: 0.3s;
}

.btn-confirm { background: var(--gold); color: var(--dark); }
.btn-confirm:hover { background: var(--gold-bright); }
.btn-deny { background: transparent; color: var(--gold); }
.btn-deny:hover { background: rgba(212, 175, 55, 0.1); }

@media (max-width: 768px) {
  .burger-btn { display: block; }

  .main-nav {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--dark-card);
    flex-direction: column;
    padding: 1.5rem 2rem;
    gap: 1rem;
    border-bottom: 1px solid var(--gold);
  }

  .main-nav.show { display: flex; }

  .grand-hero h1 { font-size: 2.2rem; }
  .grand-hero { min-height: auto; padding: 3rem 1.5rem; }

  .warning-strip { grid-template-columns: 1fr; }

  .columns-section { grid-template-columns: 1fr; }
  .col-block { border-right: none; border-bottom: 1px solid rgba(212, 175, 55, 0.08); }

  .game-wrapper iframe { height: 380px; }

  .foot-nav { flex-direction: column; gap: 0.6rem; }
}
