:root {
  --bg: #0d0b10;
  --bg2: #151219;
  --card: #18151d;
  --hot: #e91e63;
  --hot2: #ff4d94;
  --purple: #9b59d9;
  --text: #e8e6ec;
  --muted: #a39cb0;
  --muted-dim: #6e6779;
  --border: #2a2530;
  --live: #d92550;
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, "Segoe UI", sans-serif;
  font-size: 14px;
  line-height: 1.5;
}

a { color: var(--hot2); text-decoration: none; }
a:hover { text-decoration: underline; }

.wrap { max-width: 1120px; margin: 0 auto; padding: 0 16px; }

/* ---- Top bar ---- */
header.site {
  background: var(--bg2);
  border-bottom: 2px solid var(--hot);
}

header.site .bar {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 10px 0;
}

.logo {
  font-weight: bold;
  font-size: 1.15rem;
  white-space: nowrap;
}
.logo span { color: var(--hot); }

nav.site {
  display: flex;
  gap: 2px;
  flex: 1;
}

nav.site a {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: bold;
  padding: 6px 10px;
  white-space: nowrap;
  border-right: 1px solid var(--border);
}
nav.site a:hover {
  color: var(--text);
  text-decoration: none;
  background: rgba(255,255,255,0.03);
}

.nav-cta {
  background: var(--hot);
  color: #fff !important;
  font-weight: bold;
  font-size: 0.82rem;
  padding: 7px 14px;
  white-space: nowrap;
  border: 1px solid #ffffff33;
}
.nav-cta:hover { text-decoration: none; background: var(--hot2); }

/* ---- Hero ---- */
.hero {
  padding: 20px 0 16px;
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
}

.badge-row { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 10px; }
.pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.68rem;
  font-weight: bold;
  padding: 2px 7px;
  border: 1px solid var(--border);
  color: var(--muted);
  background: #000;
}
.pill.live { color: #fff; background: var(--live); border-color: var(--live); }
.pill.live::before {
  content: "";
  width: 5px; height: 5px; border-radius: 50%;
  background: #fff;
  animation: pulse 1.4s infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }
.pill.age { color: var(--purple); border-color: var(--purple); }

h1 {
  font-size: 1.7rem;
  font-weight: bold;
  line-height: 1.25;
  margin-bottom: 8px;
}
h1 .accent { color: var(--hot); }

h2 {
  font-size: 1.15rem;
  font-weight: bold;
  margin: 20px 0 8px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--border);
}
h3 { font-size: 0.98rem; font-weight: bold; margin: 14px 0 6px; }

p { color: var(--muted); margin-bottom: 10px; }
p.lede { font-size: 0.95rem; color: var(--text); max-width: 720px; }

ul, ol { margin: 0 0 12px 20px; color: var(--muted); }
li { margin-bottom: 4px; }

main { padding: 16px 0 60px; }

/* ---- Two-column layout: content + sidebar ---- */
.layout { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 800px) { .layout { grid-template-columns: 2fr 1fr; } }

aside.rail {
  background: var(--card);
  border: 1px solid var(--border);
}
aside.rail h4 {
  font-size: 0.75rem;
  font-weight: bold;
  text-transform: uppercase;
  color: var(--muted-dim);
  background: var(--bg2);
  padding: 8px 12px;
  border-bottom: 1px solid var(--border);
}
aside.rail ul { list-style: none; margin: 0; }
aside.rail li { margin: 0; border-bottom: 1px solid var(--border); }
aside.rail li:last-child { border-bottom: none; }
aside.rail a {
  display: block;
  padding: 8px 12px;
  color: var(--muted);
  font-size: 0.85rem;
}
aside.rail a:hover { background: rgba(255,255,255,0.03); color: var(--text); text-decoration: none; }
aside.rail .cta-box { padding: 12px; }

/* ---- Guide tile list (not cards) ---- */
.grid {
  display: block;
  margin: 14px 0;
}
.grid a.tile {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--card);
  border: 1px solid var(--border);
  border-top: none;
  padding: 10px 14px;
  color: var(--text);
}
.grid a.tile:first-child { border-top: 1px solid var(--border); }
.grid a.tile:hover {
  text-decoration: none;
  background: rgba(255,45,123,0.06);
}
.tile-top { display: none; }
.tile-body { display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.tile-badge {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: bold;
  text-transform: uppercase;
  color: var(--hot2);
  border: 1px solid var(--hot2);
  padding: 1px 5px;
}
.tile-title { font-size: 0.92rem; font-weight: bold; }
.tile-desc { color: var(--muted-dim); font-size: 0.8rem; }

/* ---- CTA box ---- */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--hot);
  padding: 14px 16px;
  margin: 16px 0;
}

.cta {
  display: inline-block;
  background: var(--hot);
  color: #fff;
  font-weight: bold;
  font-size: 0.88rem;
  padding: 9px 16px;
  margin-top: 8px;
  border: 1px solid #ffffff33;
}
.cta:hover { text-decoration: none; background: var(--hot2); }

/* ---- Footer ---- */
footer.site {
  border-top: 2px solid var(--hot);
  background: var(--bg2);
  padding: 18px 0;
  color: var(--muted-dim);
  font-size: 0.75rem;
}
footer.site a { color: var(--muted-dim); }
footer.site .legal { margin-top: 8px; line-height: 1.6; }
footer.site .legal-links { margin-top: 8px; display: flex; gap: 10px; flex-wrap: wrap; }

.disclaimer {
  background: #000;
  border: 1px solid var(--border);
  padding: 8px 12px;
  font-size: 0.76rem;
  color: var(--muted-dim);
  margin: 12px 0 4px;
}

/* ---- Age gate ---- */
#gate {
  position: fixed; inset: 0; z-index: 999;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 24px;
}
#gate .box { max-width: 400px; border: 1px solid var(--border); background: var(--card); padding: 24px; }
#gate .logo { font-size: 1.3rem; margin-bottom: 14px; }
#gate h1 { font-size: 1.3rem; }
#gate p { color: var(--muted); }
#gate .btns { display: flex; gap: 10px; justify-content: center; margin-top: 16px; }
#gate button {
  font-family: inherit; font-weight: bold; font-size: 0.9rem;
  padding: 10px 18px; border: 1px solid #ffffff33; cursor: pointer;
}
#gate .yes { background: var(--hot); color: #fff; }
#gate .no { background: var(--bg2); color: var(--muted); border-color: var(--border); }
body.gated main, body.gated header.site, body.gated footer.site { display: none; }
