@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display&family=Inter:wght@300;400;500;700&display=swap');

:root {
  --bg: #1a0a14;
  --surface: #2d1225;
  --primary: #ec4899;
  --accent: #f9a8d4;
  --rose: #be185d;
  --gold: #fde68a;
  --text: #fdf2f8;
  --border: rgba(236, 72, 153, 0.2);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body { font-family: 'Inter', sans-serif; background: var(--bg); color: var(--text); line-height: 1.75; }
h1, h2, h3 { font-family: 'DM Serif Display', serif; }
a { color: var(--accent); text-decoration: none; transition: 0.3s; }
a:hover { color: var(--gold); }

.hdr {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(26, 10, 20, 0.95); backdrop-filter: blur(12px);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.8rem 2.5rem; border-bottom: 1px solid var(--border);
}
.hdr-logo { display: flex; align-items: center; gap: 0.6rem; }
.hdr-logo svg { width: 36px; height: 36px; }
.hdr-logo span { font-family: 'DM Serif Display', serif; font-size: 1.4rem; color: var(--primary); }

.hdr-nav { list-style: none; display: flex; gap: 1.6rem; }
.hdr-nav a { color: var(--text); font-weight: 500; font-size: 0.92rem; }
.hdr-nav a:hover { color: var(--primary); }

.burger-btn { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; }
.burger-btn span { width: 26px; height: 2.5px; background: var(--primary); border-radius: 2px; transition: 0.3s; }
.burger-btn.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.burger-btn.active span:nth-child(2) { opacity: 0; }
.burger-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.splash {
  min-height: 92vh; display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 7rem 2rem 4rem;
  background: radial-gradient(ellipse at 50% 40%, rgba(236, 72, 153, 0.12) 0%, transparent 65%);
}
.splash h1 { font-size: 3.4rem; color: var(--primary); margin-bottom: 1rem; }
.splash p { font-size: 1.15rem; max-width: 650px; margin-bottom: 2rem; opacity: 0.9; }

.rose-btn {
  display: inline-block; padding: 0.85rem 2.4rem;
  background: linear-gradient(135deg, var(--rose), var(--primary));
  color: #fff; font-weight: 700; border-radius: 50px; font-size: 1rem;
  transition: 0.3s;
}
.rose-btn:hover { transform: translateY(-2px); box-shadow: 0 0 25px rgba(236, 72, 153, 0.4); color: #fff; }

.info-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  max-width: 1000px; margin: -2rem auto 3rem; padding: 0 2rem; position: relative; z-index: 2;
}
.info-box {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 14px; padding: 1.8rem; text-align: center; backdrop-filter: blur(8px);
}
.info-box h3 { color: var(--gold); font-size: 1.05rem; margin-bottom: 0.4rem; }
.info-box p { font-size: 0.88rem; opacity: 0.85; }

.txt { max-width: 1200px; margin: 0 auto; padding: 4rem 2.5rem; }
.txt h2 { font-size: 2rem; color: var(--primary); margin-bottom: 1rem; }
.txt p { margin-bottom: 1rem; max-width: 850px; }

.game-area {
  max-width: 960px; margin: 2rem auto; border-radius: 14px; overflow: hidden;
  border: 2px solid var(--border); box-shadow: 0 0 40px rgba(236, 72, 153, 0.15);
}
.game-area iframe { width: 100%; height: 600px; border: none; display: block; }

.cards-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.3rem; max-width: 1200px; margin: 3rem auto; padding: 0 2.5rem;
}
.crd { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 1.8rem; }
.crd h3 { color: var(--gold); margin-bottom: 0.5rem; }
.crd p { font-size: 0.93rem; opacity: 0.85; }
.crd ul { padding-left: 1.1rem; font-size: 0.93rem; }
.crd li { margin-bottom: 0.3rem; }

.ftr {
  background: var(--surface); border-top: 1px solid var(--border);
  text-align: center; padding: 2.5rem 2rem; margin-top: 4rem;
}
.ftr .rlinks a { color: var(--accent); margin: 0 0.8rem; font-size: 0.9rem; }
.ftr .rlinks a:hover { color: var(--gold); }
.ftr .cp { margin-top: 0.8rem; font-size: 0.78rem; opacity: 0.5; }

.age-wall { position: fixed; inset: 0; background: rgba(26, 10, 20, 0.97); z-index: 9999; display: flex; align-items: center; justify-content: center; }
.age-inner { background: var(--surface); border: 2px solid var(--primary); border-radius: 16px; padding: 2.5rem; text-align: center; max-width: 420px; width: 90%; }
.age-inner h2 { color: var(--primary); margin-bottom: 0.8rem; }
.age-inner p { margin-bottom: 1.5rem; }
.age-flex { display: flex; gap: 1rem; justify-content: center; }
.age-flex button { padding: 0.7rem 2rem; border: none; border-radius: 50px; font-family: 'Inter', sans-serif; font-weight: 700; cursor: pointer; transition: 0.2s; }
.age-flex button:hover { transform: scale(1.04); }
.age-ok { background: var(--primary); color: #fff; }
.age-nope { background: transparent; border: 2px solid var(--primary) !important; color: var(--accent); }
.age-wall.hidden { display: none; }

.lawful { max-width: 880px; margin: 0 auto; padding: 6rem 2.5rem 3rem; }
.lawful h1 { font-size: 2.2rem; color: var(--primary); margin-bottom: 1.5rem; }
.lawful h2 { font-size: 1.3rem; color: var(--gold); margin: 1.7rem 0 0.7rem; }
.lawful p { margin-bottom: 0.9rem; }

.play-area { text-align: center; padding: 6rem 2rem 2rem; }
.play-area h1 { font-size: 2.4rem; color: var(--primary); margin-bottom: 0.8rem; }
.play-area p { max-width: 640px; margin: 0 auto 1.5rem; }

.tip-box { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 1.5rem; max-width: 650px; margin: 2rem auto; font-size: 0.93rem; }

@media (max-width: 768px) {
  .burger-btn { display: flex; }
  .hdr-nav { position: fixed; top: 0; left: -100%; width: 72%; max-width: 280px; height: 100vh; background: var(--surface); flex-direction: column; padding: 4.5rem 2rem; transition: left 0.35s; border-right: 1px solid var(--border); }
  .hdr-nav.open { left: 0; }
  .splash h1 { font-size: 2.2rem; }
  .info-row { grid-template-columns: 1fr; }
  .game-area iframe { height: 350px; }
}
