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

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --gold: #c5a04e;
  --gold-light: #e8d5a0;
  --cream: #faf7f0;
  --dark: #1a1612;
  --text: #3d352a;
  --text-light: #7a6f60;
  --white: #ffffff;
  --border: #e8e0d0;
}

html { scroll-behavior: smooth; }
body { font-family: 'Lato', sans-serif; background: var(--cream); color: var(--text); line-height: 1.75; }
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; }
a { color: var(--gold); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--dark); }

/* HEADER */
.site-header {
  position: fixed; top: 0; width: 100%; z-index: 1000;
  background: var(--white); border-bottom: 2px solid var(--gold-light);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 3rem; height: 72px;
}
.logo-area { display: flex; align-items: center; gap: 12px; }
.logo-area svg { width: 38px; height: 38px; }
.logo-area span { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; color: var(--dark); letter-spacing: 1px; }
.main-nav { display: flex; gap: 2rem; list-style: none; }
.main-nav a { font-size: 0.9rem; font-weight: 700; color: var(--text-light); text-transform: uppercase; letter-spacing: 1.5px; }
.main-nav a:hover, .main-nav a.active { color: var(--gold); border-bottom: 2px solid var(--gold); padding-bottom: 2px; }

.burger { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.burger svg { width: 28px; height: 28px; stroke: var(--dark); }

/* BANNER */
.banner {
  padding: 140px 3rem 80px; text-align: center;
  background: linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
}
.banner h1 { font-size: 3.2rem; color: var(--dark); margin-bottom: 1.2rem; font-weight: 900; }
.banner h1 em { color: var(--gold); font-style: normal; }
.banner p { max-width: 700px; margin: 0 auto 2rem; font-size: 1.1rem; color: var(--text-light); }
.notice-row { display: flex; justify-content: center; flex-wrap: wrap; gap: 1.2rem; }
.notice-tag { background: var(--white); border: 1.5px solid var(--gold); color: var(--gold); padding: 0.5rem 1.5rem; border-radius: 4px; font-weight: 700; font-size: 0.85rem; letter-spacing: 0.5px; }

/* GAME EMBED */
.game-area { max-width: 1000px; margin: 0 auto; padding: 4rem 2rem; }
.game-area h2 { text-align: center; font-size: 2.2rem; margin-bottom: 1.5rem; color: var(--dark); }
.game-container {
  width: 100%; padding-top: 62%; position: relative;
  border: 3px solid var(--gold-light); border-radius: 8px; overflow: hidden;
  box-shadow: 0 8px 30px rgba(197,160,78,0.12);
}
.game-container iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; }

/* TWO COL */
.two-col { max-width: 1200px; margin: 3rem auto; padding: 0 2rem; display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.two-col .text-side h2 { font-size: 1.9rem; margin-bottom: 1rem; color: var(--dark); }
.two-col .text-side p { color: var(--text-light); margin-bottom: 1rem; }
.two-col .card-side { display: flex; flex-direction: column; gap: 1.5rem; }
.gold-card {
  background: var(--white); border: 1px solid var(--border); border-left: 5px solid var(--gold);
  padding: 1.5rem 1.8rem; border-radius: 6px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}
.gold-card h4 { font-size: 1rem; color: var(--gold); margin-bottom: 0.4rem; }
.gold-card p { font-size: 0.9rem; color: var(--text-light); }

/* STATS */
.stats-strip {
  background: var(--dark); padding: 3.5rem 2rem; margin: 3rem 0;
  display: flex; justify-content: center; gap: 5rem; flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-item .num { font-family: 'Playfair Display', serif; font-size: 2.5rem; color: var(--gold); font-weight: 900; }
.stat-item .lbl { color: var(--gold-light); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; margin-top: 0.3rem; }

/* CONTENT PAGE */
.page-content { max-width: 860px; margin: 0 auto; padding: 110px 2rem 4rem; }
.page-content h1 { font-size: 2.4rem; margin-bottom: 1rem; color: var(--dark); }
.page-content h3 { font-size: 1.2rem; margin: 2rem 0 0.8rem; color: var(--gold); }
.page-content p { color: var(--text-light); margin-bottom: 1rem; }
.page-content ul { margin: 0.8rem 0 1.2rem 1.5rem; }
.page-content li { color: var(--text-light); margin-bottom: 0.4rem; }

/* PLAY PAGE */
.play-header { padding: 110px 2rem 2rem; text-align: center; }
.play-header h1 { font-size: 2.4rem; color: var(--dark); margin-bottom: 0.6rem; }
.play-header p { color: var(--text-light); max-width: 620px; margin: 0 auto; }
.tips-box {
  max-width: 700px; margin: 2rem auto; background: var(--white); border: 1px solid var(--border);
  border-radius: 8px; padding: 1.8rem; text-align: left;
}
.tips-box h3 { color: var(--dark); font-size: 1.1rem; margin-bottom: 0.5rem; }
.tips-box li { color: var(--text-light); font-size: 0.9rem; margin-bottom: 0.3rem; }

/* FOOTER */
footer {
  background: var(--dark); color: var(--gold-light); padding: 3rem 2rem; text-align: center; margin-top: 4rem;
}
.foot-nav { display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.foot-nav a { color: var(--gold-light); font-size: 0.9rem; }
.foot-nav a:hover { color: var(--gold); }
.responsible { margin-bottom: 1.5rem; }
.responsible p { font-size: 0.85rem; margin-bottom: 0.5rem; }
.responsible a { color: var(--gold); font-size: 0.85rem; margin: 0 0.5rem; }
.foot-copy { font-size: 0.75rem; opacity: 0.6; }

/* AGE GATE */
.age-gate {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(26,22,18,0.95); display: flex; align-items: center; justify-content: center;
}
.age-gate.hidden { display: none; }
.age-panel {
  background: var(--white); border-radius: 12px; padding: 3rem; text-align: center;
  max-width: 420px; width: 92%; box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.age-panel h2 { font-size: 1.5rem; color: var(--dark); margin-bottom: 0.8rem; }
.age-panel p { color: var(--text-light); 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: 4px; font-family: 'Playfair Display', serif;
  font-size: 1rem; font-weight: 700; cursor: pointer; border: 2px solid var(--gold); transition: 0.3s;
}
.btn-confirm { background: var(--gold); color: var(--white); }
.btn-confirm:hover { background: var(--dark); border-color: var(--dark); }
.btn-deny { background: var(--white); color: var(--text-light); }
.btn-deny:hover { background: #fee2e2; color: #b91c1c; border-color: #b91c1c; }

@media (max-width: 768px) {
  .burger { display: block; }
  .main-nav {
    position: fixed; top: 72px; left: 0; width: 100%;
    background: var(--white); border-bottom: 2px solid var(--gold-light);
    flex-direction: column; padding: 1.5rem 2rem; gap: 1rem;
    transform: translateY(-120%); transition: transform 0.3s; z-index: 999;
  }
  .main-nav.open { transform: translateY(0); }
  .banner h1 { font-size: 2.2rem; }
  .two-col { grid-template-columns: 1fr; }
  .stats-strip { gap: 2rem; }
  .game-container { padding-top: 75%; }
  .site-header { padding: 0 1.5rem; }
}
