@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=Lato:wght@300;400;700&display=swap');

:root {
  --bg-dark: #0a1a0d;
  --bg-card: #122417;
  --gold: #d4a843;
  --gold-light: #f0d078;
  --emerald: #2d8a4e;
  --cream: #f5f0e1;
  --text: #d9d4c5;
  --text-dim: #8a856f;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  background: var(--bg-dark);
  color: var(--text);
  line-height: 1.75;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  height: 68px;
  background: linear-gradient(to right, #0a1a0d, #122417);
  border-bottom: 1px solid rgba(212,168,67,0.25);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand svg { width: 38px; height: 38px; }

.brand h1 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: 1px;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 1.8rem;
}

nav ul a {
  color: var(--cream);
  text-decoration: none;
  font-weight: 400;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  transition: color 0.25s;
}

nav ul a:hover { color: var(--gold); }

.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.burger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--gold);
  margin: 5px 0;
  border-radius: 2px;
  transition: 0.3s;
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  background: #0e1f12;
  z-index: 999;
  padding: 1rem 2rem;
  border-bottom: 1px solid rgba(212,168,67,0.2);
}

.mobile-nav.open { display: block; }

.mobile-nav a {
  display: block;
  color: var(--cream);
  text-decoration: none;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(212,168,67,0.1);
  font-size: 0.95rem;
}

.mobile-nav a:hover { color: var(--gold); }

/* Marquee banner */
.marquee-strip {
  background: var(--emerald);
  color: var(--cream);
  padding: 0.5rem 0;
  overflow: hidden;
  white-space: nowrap;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.marquee-strip span {
  display: inline-block;
  animation: marqueeScroll 25s linear infinite;
}

@keyframes marqueeScroll {
  from { transform: translateX(100vw); }
  to { transform: translateX(-100%); }
}

/* Welcome area */
.welcome-area {
  padding: 5rem 2.5rem;
  text-align: center;
  background: radial-gradient(ellipse at top, rgba(45,138,78,0.12) 0%, transparent 60%);
}

.welcome-area h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  color: var(--gold);
  font-weight: 900;
  margin-bottom: 1rem;
}

.welcome-area > p {
  max-width: 720px;
  margin: 0 auto 2rem;
  color: var(--text-dim);
  font-size: 1.05rem;
}

.pillars {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 1.8rem;
}

.pillar {
  background: var(--bg-card);
  border: 1px solid rgba(212,168,67,0.2);
  border-radius: 8px;
  padding: 1rem 1.8rem;
  min-width: 200px;
}

.pillar strong {
  display: block;
  color: var(--gold-light);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.3rem;
}

.pillar span {
  color: var(--text);
  font-size: 0.9rem;
}

/* Game showcase */
.game-showcase {
  background: #0e1f12;
  padding: 3.5rem 2rem;
}

.game-showcase h2 {
  font-family: 'Playfair Display', serif;
  color: var(--gold);
  text-align: center;
  font-size: 1.9rem;
  margin-bottom: 1.5rem;
}

.game-container {
  max-width: 900px;
  margin: 0 auto;
  border: 1px solid rgba(212,168,67,0.3);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 50px rgba(0,0,0,0.5);
}

.game-container iframe {
  width: 100%;
  height: 580px;
  border: none;
  display: block;
}

/* Features two-column */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  padding: 4rem 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.col-block {
  background: var(--bg-card);
  border-left: 4px solid var(--gold);
  padding: 2rem;
  border-radius: 0 10px 10px 0;
}

.col-block h3 {
  font-family: 'Playfair Display', serif;
  color: var(--gold-light);
  margin-bottom: 0.7rem;
  font-size: 1.15rem;
}

.col-block p {
  color: var(--text-dim);
  font-size: 0.92rem;
}

/* Ticker bar */
.ticker-bar {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding: 2.5rem;
  background: linear-gradient(90deg, var(--bg-dark), #122417, var(--bg-dark));
  border-top: 1px solid rgba(212,168,67,0.15);
  border-bottom: 1px solid rgba(212,168,67,0.15);
}

.ticker-item {
  text-align: center;
}

.ticker-item .val {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--gold);
}

.ticker-item .lbl {
  font-size: 0.78rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.promo-block {
  text-align: center;
  padding: 4rem 2rem;
  background: radial-gradient(circle at 50% 80%, rgba(212,168,67,0.08), transparent 60%);
}

.promo-block h2 {
  font-family: 'Playfair Display', serif;
  color: var(--gold);
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
}

.promo-block p {
  color: var(--text-dim);
  max-width: 550px;
  margin: 0 auto 1.5rem;
}

.btn-play {
  display: inline-block;
  padding: 0.8rem 2.2rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--bg-dark);
  font-weight: 700;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-play:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212,168,67,0.3);
}

.content-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

.content-page h1 {
  font-family: 'Playfair Display', serif;
  color: var(--gold);
  font-size: 2rem;
  margin-bottom: 1.2rem;
}

.content-page h2 {
  font-family: 'Playfair Display', serif;
  color: var(--gold-light);
  font-size: 1.3rem;
  margin-top: 2rem;
  margin-bottom: 0.6rem;
}

.content-page p, .content-page li {
  color: var(--text-dim);
  margin-bottom: 0.8rem;
}

.content-page ul { padding-left: 1.5rem; }

.game-note {
  max-width: 900px;
  margin: 1.5rem auto 0;
  background: var(--bg-card);
  border: 1px solid rgba(212,168,67,0.2);
  border-radius: 8px;
  padding: 1.2rem 1.5rem;
}

.game-note p {
  color: var(--text-dim);
  font-size: 0.88rem;
  margin: 0;
}

footer {
  background: #081209;
  border-top: 1px solid rgba(212,168,67,0.2);
  padding: 2rem;
  text-align: center;
}

.foot-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 0.8rem;
}

.foot-links a {
  color: var(--gold);
  text-decoration: none;
  font-size: 0.85rem;
}

.foot-links a:hover { text-decoration: underline; }

footer small {
  color: var(--text-dim);
  font-size: 0.75rem;
}

/* Age gate */
.age-gate {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.age-dialog {
  background: var(--bg-card);
  border: 2px solid var(--gold);
  border-radius: 12px;
  padding: 2.5rem;
  text-align: center;
  max-width: 420px;
  width: 92%;
}

.age-dialog h2 {
  font-family: 'Playfair Display', serif;
  color: var(--gold);
  margin-bottom: 0.8rem;
  font-size: 1.5rem;
}

.age-dialog p {
  color: var(--text-dim);
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.age-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.age-actions button {
  padding: 0.7rem 1.8rem;
  border-radius: 6px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  font-size: 0.95rem;
  transition: transform 0.2s;
}

.age-actions .confirm {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--bg-dark);
}

.age-actions .deny {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
}

.age-actions button:hover { transform: scale(1.04); }

@media (max-width: 768px) {
  nav ul { display: none; }
  .burger { display: block; }
  .two-col { grid-template-columns: 1fr; }
  .game-container iframe { height: 380px; }
  .welcome-area { padding: 3rem 1.5rem; }
}
