/* ============================================================
   MENSHIGHJINX.COM — "Electric Midnight" Design System
   Hand-rolled CSS — zero build tools
   Aligned to existing HTML class names
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500;600&display=swap');

/* --- Design Tokens --- */
:root {
  --bg-base: #08080E;
  --bg-card: #121220;
  --bg-elevated: #1A1A2E;
  --bg-overlay: rgba(8, 8, 14, 0.92);
  --accent-primary: #00FF88;
  --accent-secondary: #B44AFF;
  --accent-hot: #FF2D6B;
  --accent-gold: #FFD700;
  --accent-blue: #3B82F6;
  --accent-primary-20: rgba(0, 255, 136, 0.2);
  --accent-primary-10: rgba(0, 255, 136, 0.1);
  --accent-secondary-20: rgba(180, 74, 255, 0.2);
  --accent-secondary-10: rgba(180, 74, 255, 0.1);
  --accent-hot-20: rgba(255, 45, 107, 0.2);
  --accent-hot-10: rgba(255, 45, 107, 0.1);
  --accent-gold-20: rgba(255, 215, 0, 0.2);
  --border-base: #1E1E35;
  --border-bright: #2E2E4A;
  --border-glow: rgba(0, 255, 136, 0.3);
  --text-primary: #F0F0FF;
  --text-secondary: #8888AA;
  --text-muted: #4A4A66;
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --container-max: 1200px;
  --container-narrow: 820px;
  --nav-height: 64px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --shadow-card: 0 2px 12px rgba(0, 0, 0, 0.4);
  --shadow-glow-green: 0 0 20px rgba(0, 255, 136, 0.15);
  --shadow-glow-purple: 0 0 20px rgba(180, 74, 255, 0.15);
  --shadow-glow-hot: 0 0 20px rgba(255, 45, 107, 0.15);
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-primary);
  background: var(--bg-base);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
a { color: var(--accent-primary); text-decoration: none; transition: color 0.2s; }
a:hover { color: #33FFaa; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; font-family: inherit; }
ul, ol { list-style: none; }

/* Subtle noise overlay */
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}
body > * { position: relative; z-index: 1; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  background: rgba(8, 8, 14, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-base);
  z-index: 1000;
  display: flex;
  align-items: center;
}
.nav-inner {
  max-width: var(--container-max);
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-brand {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 24px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-primary);
  text-decoration: none;
}
.nav-brand span { color: var(--accent-primary); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.nav-links li a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nav-links li a:hover,
.nav-links li a.active { color: var(--accent-primary); }

.live-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.live-dot {
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--accent-hot);
  border-radius: 50%;
  animation: pulse-dot 1.5s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(255, 45, 107, 0.6); }
  50% { opacity: 0.8; box-shadow: 0 0 0 6px rgba(255, 45, 107, 0); }
}

/* Hamburger */
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 24px;
  padding: 8px;
  line-height: 1;
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-height); left: 0; right: 0;
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border-base);
  padding: 16px 24px;
  flex-direction: column;
  gap: 4px;
  z-index: 999;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-secondary);
  padding: 12px 0;
  border-bottom: 1px solid var(--border-base);
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--accent-primary); }

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: block; }
}

/* ============================================================
   LAYOUT
   ============================================================ */
.page-wrapper {
  padding-top: var(--nav-height);
  min-height: 100vh;
}
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}
.container-narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 24px;
}
.page-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 32px;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 40px 24px;
}
.main-content { min-width: 0; }
@media (max-width: 960px) {
  .page-layout { grid-template-columns: 1fr; }
}
.section {
  padding: 48px 0;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-primary);
}
.mb-sm { margin-bottom: 12px; }
.mb-md { margin-bottom: 20px; }
.mb-lg { margin-bottom: 32px; }

/* ============================================================
   HERO SECTIONS
   ============================================================ */
.hero,
.page-hero {
  position: relative;
  padding: 100px 24px 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  min-height: 420px;
}
.hero-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0.25;
  filter: brightness(0.5);
}
.hero-overlay {
  position: absolute;
  bottom: 0; left: 0; width: 100%; height: 70%;
  background: linear-gradient(to top, var(--bg-base), transparent);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}
.hero-content h1,
.hero h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(40px, 7vw, 72px);
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
  color: var(--text-primary);
}
.highlight,
.text-green { color: var(--accent-primary); }
.tagline {
  font-family: var(--font-display);
  font-size: clamp(18px, 3vw, 24px);
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 32px;
  letter-spacing: 0.5px;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius-sm);
  transition: all 0.25s;
  text-decoration: none;
  white-space: nowrap;
}
.btn-sm { padding: 8px 16px; font-size: 12px; }
.btn-lg { padding: 16px 32px; font-size: 16px; }
.btn-primary {
  background: var(--accent-primary);
  color: #08080E;
}
.btn-primary:hover {
  background: #33FFaa;
  color: #08080E;
  box-shadow: var(--shadow-glow-green);
  transform: translateY(-1px);
}
.btn-secondary {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border-bright);
}
.btn-secondary:hover {
  border-color: var(--text-secondary);
  color: var(--text-primary);
  transform: translateY(-1px);
}
.btn-purple {
  background: var(--accent-secondary);
  color: #fff;
}
.btn-purple:hover {
  background: #cc66ff;
  box-shadow: var(--shadow-glow-purple);
  color: #fff;
  transform: translateY(-1px);
}
.btn-pink,
.btn-hot {
  background: var(--accent-hot);
  color: #fff;
}
.btn-pink:hover,
.btn-hot:hover {
  background: #FF4080;
  box-shadow: var(--shadow-glow-hot);
  color: #fff;
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border-bright);
}
.btn-ghost:hover {
  border-color: var(--text-secondary);
  color: var(--text-primary);
}

/* ============================================================
   LIVE CAM EMBED
   ============================================================ */
.cam-embed-container {
  position: relative;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-glow);
  box-shadow: var(--shadow-glow-green);
  background: var(--bg-card);
}
.cam-embed-container iframe {
  width: 100%;
  height: 600px;
  border: none;
  display: block;
}
@media (max-width: 768px) {
  .cam-embed-container iframe { height: 400px; }
}
.cam-embed-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--accent-hot);
  margin-bottom: 12px;
}
.cam-context {
  margin-top: 16px;
  font-size: 14px;
  color: var(--text-secondary);
  text-align: center;
}

/* Category cards (cam categories on /live/) */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 32px;
}
.category-card {
  background: var(--bg-card);
  border: 1px solid var(--border-base);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  transition: all 0.25s;
}
.category-card:hover {
  border-color: var(--accent-primary);
  box-shadow: var(--shadow-glow-green);
  transform: translateY(-2px);
}
.category-card-icon { font-size: 32px; margin-bottom: 12px; }
.category-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--text-primary);
}
.category-card p {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.5;
}

/* ============================================================
   FLAIR BADGES
   ============================================================ */
.flair {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-radius: 4px;
  white-space: nowrap;
}
.flair-dare { background: var(--accent-hot-20); color: var(--accent-hot); border: 1px solid rgba(255, 45, 107, 0.3); }
.flair-story { background: var(--accent-secondary-20); color: var(--accent-secondary); border: 1px solid rgba(180, 74, 255, 0.3); }
.flair-challenge { background: var(--accent-primary-20); color: var(--accent-primary); border: 1px solid rgba(0, 255, 136, 0.3); }
.flair-debate { background: rgba(59, 130, 246, 0.15); color: var(--accent-blue); border: 1px solid rgba(59, 130, 246, 0.3); }
.flair-guide { background: var(--accent-gold-20); color: var(--accent-gold); border: 1px solid rgba(255, 215, 0, 0.3); }

/* ============================================================
   BOARD — Thread Listing
   ============================================================ */
.board-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-base);
}
.board-filter-btn {
  padding: 8px 16px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: var(--bg-elevated);
  color: var(--text-secondary);
  border: 1px solid var(--border-base);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s;
}
.board-filter-btn:hover { border-color: var(--border-bright); color: var(--text-primary); }
.board-filter-btn.active {
  background: var(--accent-primary-20);
  border-color: var(--accent-primary);
  color: var(--accent-primary);
}

/* Thread rows on the board */
.board-thread-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 16px;
  align-items: start;
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-base);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  transition: all 0.25s;
  text-decoration: none;
}
.board-thread-row:hover {
  border-color: var(--border-bright);
  background: var(--bg-elevated);
}
a.board-thread-row { color: inherit; }
.board-thread-thumb {
  width: 100px; height: 120px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  flex-shrink: 0;
  background: var(--bg-elevated);
}
.board-thread-thumb.flair-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
}
.board-thread-info { min-width: 0; }
.board-thread-info h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.3;
  margin-bottom: 6px;
  color: var(--text-primary);
}
.board-thread-row:hover .board-thread-info h3 { color: var(--accent-primary); }
.thread-card-meta {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.thread-card-excerpt {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.board-thread-stats {
  display: flex;
  gap: 16px;
  margin-top: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
}
.board-thread-stats span { display: inline-flex; align-items: center; gap: 4px; }

@media (max-width: 640px) {
  .board-thread-row { grid-template-columns: 1fr; }
  .board-thread-thumb { width: 100%; height: 180px; }
}

/* ============================================================
   THREAD PAGE
   ============================================================ */
.thread-content {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 40px 24px;
}
.thread-content .flair { margin-bottom: 12px; }
.thread-content h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(28px, 5vw, 40px);
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.thread-content .thread-card-meta {
  margin-bottom: 24px;
  font-size: 13px;
}
.thread-content .thread-card-meta .text-green { color: var(--accent-primary); }
.thread-featured-img {
  width: 100%;
  border-radius: var(--radius-md);
  margin-bottom: 24px;
  border: 1px solid var(--border-base);
}

/* Thread body */
.thread-content p {
  margin-bottom: 16px;
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-primary);
}
.thread-content blockquote {
  border-left: 3px solid var(--accent-secondary);
  padding: 12px 20px;
  margin: 20px 0;
  background: var(--bg-elevated);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--text-secondary);
  font-style: italic;
}
.thread-content a.affiliate-cta {
  color: var(--accent-primary);
  text-decoration: underline;
  text-decoration-color: rgba(0, 255, 136, 0.3);
  text-underline-offset: 3px;
}
.thread-content a.affiliate-cta:hover { text-decoration-color: var(--accent-primary); }
.thread-content strong { color: #fff; font-weight: 600; }

/* Comments in threads */
.thread-content h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 40px;
  margin-bottom: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border-base);
  color: var(--text-secondary);
}
.thread-content h3 {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 14px;
  color: var(--accent-secondary);
  margin-bottom: 4px;
}
.thread-content h3 + .text-secondary {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

/* ============================================================
   SIDEBAR
   ============================================================ */
.sidebar { display: flex; flex-direction: column; gap: 20px; }
.sidebar-card {
  background: var(--bg-card);
  border: 1px solid var(--border-base);
  border-radius: var(--radius-md);
  padding: 20px;
}
.sidebar-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-secondary);
  margin-bottom: 12px;
}
.sidebar-card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.55;
  margin-bottom: 8px;
}
.sidebar-card p:last-child { margin-bottom: 0; }
.sidebar-card ol {
  counter-reset: rule;
  list-style: none;
}
.sidebar-card ol li {
  font-size: 13px;
  color: var(--text-secondary);
  padding: 6px 0;
  border-bottom: 1px solid var(--border-base);
  counter-increment: rule;
}
.sidebar-card ol li::before {
  content: counter(rule) ".";
  font-family: var(--font-mono);
  font-weight: 600;
  color: var(--accent-primary);
  margin-right: 8px;
}
.sidebar-card ol li:last-child { border-bottom: none; }

.sidebar-cta { text-align: center; }
.sidebar-cta img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  opacity: 0.6;
}
.sidebar-cta p {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.sidebar-sister {
  border-color: rgba(255, 45, 107, 0.2);
}
.sidebar-sister h3 { color: var(--accent-hot); }
.sidebar-sister-img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  opacity: 0.5;
}

/* ============================================================
   DARE TO BROADCAST PAGE
   ============================================================ */
.tier-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 32px 0;
}
.tier-card {
  background: var(--bg-card);
  border: 1px solid var(--border-base);
  border-radius: var(--radius-md);
  padding: 28px;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 20px;
  align-items: start;
  transition: all 0.25s;
}
.tier-card:hover {
  border-color: var(--border-bright);
  box-shadow: var(--shadow-card);
}
.tier-number {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 48px;
  line-height: 1;
  text-align: center;
}
.tier-1 .tier-number { color: var(--text-muted); }
.tier-2 .tier-number { color: var(--accent-secondary); }
.tier-3 .tier-number { color: var(--accent-primary); }
.tier-4 .tier-number { color: var(--accent-hot); }
.tier-5 .tier-number { color: var(--accent-gold); }
.tier-info h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  text-transform: uppercase;
  margin-bottom: 6px;
  color: var(--text-primary);
}
.tier-info p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 12px;
}
@media (max-width: 640px) {
  .tier-card { grid-template-columns: 1fr; text-align: center; }
}

/* FAQ */
.faq-list { margin: 32px 0; }
.faq-item {
  border-bottom: 1px solid var(--border-base);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-primary);
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--accent-primary); }
.faq-chevron {
  font-size: 20px;
  color: var(--accent-primary);
  transition: transform 0.3s;
  flex-shrink: 0;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-item.open .faq-answer {
  max-height: 500px;
}
.faq-answer-inner {
  padding-bottom: 20px;
}
.faq-answer-inner p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-secondary);
}

/* ============================================================
   EARNINGS TABLE
   ============================================================ */
.earnings-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 14px;
}
.earnings-table th {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 12px;
  padding: 12px 16px;
  text-align: left;
  background: var(--bg-elevated);
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-bright);
}
.earnings-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-base);
  color: var(--text-primary);
}
.highlight-cell {
  font-family: var(--font-mono);
  font-weight: 600;
  color: var(--accent-gold);
}

/* ============================================================
   LEGAL / ABOUT
   ============================================================ */
.legal-content { padding: 40px 0; max-width: var(--container-narrow); margin: 0 auto; }
.legal-content h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 40px;
  margin-bottom: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--border-base);
  color: var(--text-primary);
}
.legal-content h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.legal-content p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 12px;
}
.legal-content ul {
  margin: 12px 0 12px 24px;
  list-style: disc;
}
.legal-content ul li {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 6px;
}

/* ============================================================
   404
   ============================================================ */
.page-404 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  text-align: center;
  padding: 40px 24px;
}
.page-404 h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 120px;
  line-height: 1;
  color: var(--accent-hot);
  margin-bottom: 8px;
}
.page-404 h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 24px;
}
.page-404 p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 32px;
}
.page-404-links { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

/* ============================================================
   AGE GATE
   ============================================================ */
.age-gate {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: var(--bg-overlay);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 24px;
}
.age-gate.hidden { display: none; }
.age-gate-card {
  background: var(--bg-card);
  border: 1px solid var(--border-bright);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  max-width: 440px;
  width: 100%;
  text-align: center;
}
.age-gate-card h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 32px;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: var(--text-primary);
}
.age-gate-card p {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.6;
}
.age-gate-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
}
.age-gate-buttons .btn { min-width: 140px; justify-content: center; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  border-top: 1px solid var(--border-base);
  padding: 40px 24px;
  margin-top: 60px;
}
.footer-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-links a {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--text-secondary); }
.footer-sister {
  font-size: 13px;
  color: var(--text-muted);
}
.footer-sister a { color: var(--accent-hot); }
.footer-copyright {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.text-center { text-align: center; }
.text-secondary { color: var(--text-secondary); }
.text-muted { color: var(--text-muted); }
.text-green { color: var(--accent-primary); }
.text-hot { color: var(--accent-hot); }
.text-gold { color: var(--accent-gold); }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in-up {
  animation: fadeInUp 0.5s ease forwards;
  opacity: 0;
}
