:root {
  --bg: #0a0a0c;
  --card: #141418;
  --text: #f0f0f2;
  --muted: #9a9aa8;
  --accent: #ff3b5c;
  --accent2: #e11d48;
  --border: #2a2a32;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
.container { max-width: 1100px; margin: 0 auto; padding: 16px; }
header {
  background: linear-gradient(135deg, #1a0a10 0%, #0a0a0c 100%);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  position: sticky; top: 0; z-index: 50;
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; flex-wrap: wrap;
}
.logo { font-weight: 800; font-size: 1.35rem; color: #fff; }
.logo span { color: var(--accent); }
nav { display: flex; flex-wrap: wrap; gap: 6px; }
nav a {
  color: #fff; background: rgba(255,255,255,.08);
  padding: 6px 11px; border-radius: 8px; font-size: 13px; font-weight: 600;
}
nav a:hover, nav a[aria-current="page"] {
  background: rgba(255,59,92,.25); text-decoration: none;
}
h1 { font-size: clamp(1.5rem, 4vw, 2.1rem); margin: 18px 0 10px; line-height: 1.25; }
h2 { font-size: 1.3rem; margin: 22px 0 10px; color: #fff; }
h3 { font-size: 1.05rem; margin: 16px 0 8px; color: #fff; }
p { margin: 0 0 12px; color: var(--muted); }
.lead { font-size: 1.05rem; max-width: 740px; color: #c4c4d0; }
.panel {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px;
  margin: 18px 0;
}
.cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  color: #fff !important;
  font-weight: 800;
  padding: 13px 22px;
  border-radius: 10px;
  text-decoration: none !important;
  box-shadow: 0 8px 22px rgba(255, 59, 92, 0.35);
}
.cta:hover { opacity: .93; }
.center { text-align: center; margin: 14px 0; }
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(155px, 1fr));
  gap: 10px;
  margin: 16px 0 28px;
}
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 15px 12px;
  color: var(--text);
  font-weight: 700;
  text-align: center;
  transition: border-color .15s, background .15s;
}
.card:hover { border-color: var(--accent); background: #1c1418; text-decoration: none; }
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
  margin: 16px 0 28px;
}
.video-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.video-card:hover { border-color: var(--accent); }
.video-link { color: inherit; display: block; text-decoration: none; }
.video-link:hover { text-decoration: none; }
.video-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
}
.video-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.play-badge {
  position: absolute;
  left: 10px;
  bottom: 10px;
  background: rgba(255,59,92,.92);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 6px;
}
.video-copy { padding: 12px 12px 14px; }
.video-title {
  font-size: 1rem;
  line-height: 1.35;
  margin: 0 0 6px;
  color: #fff;
}
.video-desc {
  font-size: 13px;
  margin: 0;
  color: var(--muted);
}
.content { margin-top: 8px; }
.content ul { margin: 8px 0 14px 20px; color: var(--muted); }
.content li { margin-bottom: 6px; }
footer {
  border-top: 1px solid var(--border);
  margin-top: 48px;
  padding: 24px 16px;
  text-align: center;
  color: var(--muted);
  font-size: 13px;
}
footer a { color: var(--muted); margin: 0 8px; }
.legal { font-size: 12px; opacity: .8; }
@media (max-width: 700px) {
  nav a { font-size: 12px; padding: 5px 9px; }
}
body { padding-bottom: 76px; }
.cta.xl {
  font-size: 18px;
  padding: 16px 28px;
  border-radius: 12px;
  letter-spacing: .2px;
}
.sticky-cta {
  position: sticky;
  bottom: 0;
  z-index: 40;
  background: rgba(10,10,12,.92);
  border-top: 1px solid var(--border);
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  text-align: center;
  backdrop-filter: blur(8px);
}
.sticky-cta .cta { width: min(520px, 100%); }

#age-gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(6,6,8,.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
#age-gate[hidden] { display: none !important; }
.age-box {
  max-width: 420px;
  width: 100%;
  background: #16161a;
  border: 1px solid #2a2a32;
  border-radius: 12px;
  padding: 28px 24px;
  text-align: center;
  color: #eee;
}
.age-box h2 { margin: 0 0 10px; font-size: 22px; }
.age-box p { margin: 0 0 18px; color: #bbb; font-size: 15px; line-height: 1.45; }
.age-actions { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.age-actions a {
  display: inline-block;
  text-decoration: none;
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
}
#age-yes { background: #dc2626; color: #fff; }
#age-no { background: #2a2a32; color: #ddd; }
