@import url('https://fonts.googleapis.com/css2?family=Bitter:wght@300;400;600;800&display=swap');

:root {
  --dark: #110d08;
  --panel: #1e1610;
  --copper: #b87333;
  --copper-light: #d4915a;
  --orange: #e67e22;
  --cream: #f5ece0;
  --text: #c8b8a0;
  --text-dim: #7a6a50;
  --border: rgba(184,115,51,0.25);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Bitter', serif; background: var(--dark); color: var(--text); line-height: 1.8; }

header { position: sticky; top: 0; z-index: 1000; background: rgba(17,13,8,0.97); border-bottom: 2px solid var(--copper); height: 64px; display: flex; align-items: center; justify-content: space-between; padding: 0 2.5rem; }
.logo { font-weight: 800; font-size: 1.4rem; color: var(--copper-light); text-decoration: none; }
.logo svg { width: 28px; height: 28px; vertical-align: middle; margin-right: 8px; }
nav ul { list-style: none; display: flex; gap: 2rem; }
nav a { color: var(--text-dim); text-decoration: none; font-size: 0.88rem; font-weight: 400; transition: color 0.3s; }
nav a:hover, nav a.active { color: var(--orange); }

.hamburger { display: none; flex-direction: column; cursor: pointer; gap: 5px; z-index: 1100; }
.hamburger span { width: 26px; height: 3px; background: var(--copper); border-radius: 2px; transition: all 0.3s; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,6px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-6px); }

.wide-hero { padding: 6rem 3rem 5rem; text-align: center; background: linear-gradient(180deg, var(--panel) 0%, var(--dark) 100%); border-bottom: 2px solid var(--border); }
.wide-hero h1 { font-size: 2.6rem; font-weight: 800; color: var(--cream); margin-bottom: 1rem; }
.wide-hero p { font-size: 1.05rem; color: var(--text-dim); max-width: 650px; margin: 0 auto 2rem; font-weight: 300; }
.cta { display: inline-block; padding: 12px 40px; background: var(--copper); color: #fff; font-weight: 600; text-decoration: none; border-radius: 6px; transition: background 0.3s, transform 0.2s; }
.cta:hover { background: var(--orange); transform: translateY(-2px); }

.warning-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; border-bottom: 1px solid var(--border); }
.wg-item { padding: 2.5rem 2rem; text-align: center; background: var(--panel); border-right: 1px solid var(--border); }
.wg-item:last-child { border-right: none; }
.wg-item .em { font-size: 2rem; margin-bottom: 0.5rem; }
.wg-item h3 { font-size: 0.95rem; color: var(--copper-light); margin-bottom: 0.4rem; }
.wg-item p { font-size: 0.85rem; color: var(--text-dim); font-weight: 300; }

.game-sec { padding: 4rem 2rem; text-align: center; }
.game-sec h2 { font-size: 1.7rem; color: var(--orange); margin-bottom: 1.5rem; }
.gframe { max-width: 930px; margin: 0 auto; border: 2px solid var(--copper); border-radius: 10px; overflow: hidden; }
.gframe iframe { width: 100%; height: 580px; border: none; display: block; }

.about-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-top: 1px solid var(--border); }
.acol { padding: 3rem 2.5rem; }
.acol:first-child { background: var(--panel); border-right: 1px solid var(--border); }
.acol h3 { font-size: 1.1rem; color: var(--copper-light); margin-bottom: 0.6rem; }
.acol p { font-size: 0.9rem; color: var(--text-dim); font-weight: 300; }

.content { max-width: 1100px; margin: 0 auto; padding: 4rem 3rem; }
.content h1 { font-size: 2.1rem; color: var(--cream); margin-bottom: 1.5rem; border-bottom: 2px solid var(--copper); padding-bottom: 0.8rem; }
.content h2 { font-size: 1.15rem; color: var(--orange); margin: 2rem 0 0.6rem; }
.content p { color: var(--text-dim); font-size: 0.95rem; margin-bottom: 0.8rem; font-weight: 300; }

.tip { background: var(--panel); border: 1px solid var(--border); border-radius: 8px; padding: 1.5rem; margin-bottom: 2rem; max-width: 930px; margin-left: auto; margin-right: auto; }
.tip h3 { color: var(--orange); margin-bottom: 0.3rem; }
.tip p { color: var(--text-dim); font-size: 0.88rem; font-weight: 300; }

footer { background: var(--panel); border-top: 2px solid var(--copper); padding: 2.5rem 2rem 1.5rem; text-align: center; }
footer .rg h4 { font-size: 0.82rem; color: var(--copper-light); margin-bottom: 0.6rem; }
footer .rg a { color: var(--text-dim); text-decoration: none; margin: 0 1rem; font-size: 0.8rem; transition: color 0.3s; }
footer .rg a:hover { color: var(--orange); }
footer .ft { margin-top: 1rem; font-size: 0.7rem; color: var(--text-dim); opacity: 0.5; }

.age-wall { position: fixed; inset: 0; background: rgba(0,0,0,0.94); z-index: 9999; display: flex; align-items: center; justify-content: center; }
.age-wall.hidden { display: none; }
.age-box { background: var(--panel); border: 2px solid var(--copper); border-radius: 12px; padding: 2.5rem; text-align: center; max-width: 420px; width: 90%; }
.age-box h2 { color: var(--copper-light); font-size: 1.3rem; margin-bottom: 0.8rem; }
.age-box p { color: var(--text-dim); margin-bottom: 1.5rem; font-size: 0.9rem; font-weight: 300; }
.ab { display: flex; gap: 1rem; justify-content: center; }
.ab button { padding: 10px 30px; font-family: 'Bitter', serif; font-weight: 600; font-size: 0.9rem; border: none; border-radius: 6px; cursor: pointer; transition: transform 0.2s; }
.ab .ok { background: var(--copper); color: #fff; }
.ab .nk { background: transparent; color: var(--text-dim); border: 1px solid var(--border); }
.ab button:hover { transform: scale(1.05); }
.blk { color: #e04040; margin-top: 0.8rem; font-size: 0.88rem; display: none; }

@media (max-width: 768px) {
  .hamburger { display: flex; }
  nav { position: fixed; top: 0; right: -100%; width: 250px; height: 100vh; background: rgba(17,13,8,0.98); padding: 75px 2rem 2rem; transition: right 0.3s; z-index: 1050; }
  nav.open { right: 0; }
  nav ul { flex-direction: column; gap: 1.2rem; }
  .wide-hero { padding: 4rem 1.5rem 3rem; }
  .wide-hero h1 { font-size: 1.8rem; }
  .warning-grid { grid-template-columns: 1fr; }
  .wg-item { border-right: none; border-bottom: 1px solid var(--border); }
  .about-cols { grid-template-columns: 1fr; }
  .acol:first-child { border-right: none; border-bottom: 1px solid var(--border); }
  .gframe iframe { height: 380px; }
  .content { padding: 2rem 1.5rem; }
}
