/* ============================================
   Strip Club Empire — Landing Page
   MotionSites-inspired: reactive, neon velvet
   Mobile-first, no heavy frameworks
   ============================================ */

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

:root {
  --bg-deep: #07040c;
  --bg-dark: #0c0714;
  --bg-card: rgba(22, 12, 32, 0.72);
  --bg-elevated: rgba(36, 18, 48, 0.85);
  --primary: #ff2d95;
  --primary-hover: #ff5aaf;
  --secondary: #b14dff;
  --accent: #ffc857;
  --cyan: #00f0ff;
  --text: #f7f0ff;
  --text-muted: #b9a8c9;
  --border: rgba(255, 255, 255, 0.1);
  --glow-pink: 0 0 40px rgba(255, 45, 149, 0.45);
  --glow-purple: 0 0 40px rgba(177, 77, 255, 0.35);
  --color-discord: #5865F2;
  --color-twitter: #1DA1F2;
  --color-instagram: #E4405F;
  --color-facebook: #1877F2;
  --color-youtube: #FF0000;
  --font-main: 'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Orbitron', 'Inter', system-ui, sans-serif;
  --font-script: 'Playfair Display', Georgia, serif;
  --radius: 14px;
  --radius-lg: 24px;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4.5rem;
  --transition: 0.25s cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 72px;
  --max: 1180px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  background: var(--bg-deep);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

/* Ambient reactive canvas / mesh + Steam page BG mood */
.ambient {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(1000px 600px at 15% 10%, rgba(255, 45, 149, 0.22), transparent 55%),
    radial-gradient(900px 700px at 85% 20%, rgba(177, 77, 255, 0.18), transparent 50%),
    radial-gradient(800px 500px at 50% 90%, rgba(0, 240, 255, 0.08), transparent 55%),
    linear-gradient(180deg, rgba(7, 4, 12, 0.82) 0%, rgba(7, 4, 12, 0.92) 55%, rgba(7, 4, 12, 0.96) 100%),
    url('../assets/images/page-bg.jpg') center top / cover no-repeat fixed;
  animation: ambientPulse 12s ease-in-out infinite alternate;
}

@keyframes ambientPulse {
  0% { filter: hue-rotate(0deg) brightness(1); }
  100% { filter: hue-rotate(12deg) brightness(1.08); }
}

.cursor-glow {
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
  background: radial-gradient(circle, rgba(255, 45, 149, 0.16) 0%, transparent 65%);
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  mix-blend-mode: screen;
}

body.has-pointer .cursor-glow {
  opacity: 1;
}

.noise {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover { color: var(--primary-hover); }

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--space-sm);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.4rem;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, #c1126a 45%, var(--secondary) 100%);
  color: white;
  box-shadow: var(--glow-pink);
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  color: white;
  box-shadow: 0 0 55px rgba(255, 45, 149, 0.55);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
}

.btn-secondary:hover {
  border-color: var(--primary);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 0 24px rgba(255, 45, 149, 0.25);
}

.btn-lg {
  padding: 1.05rem 1.75rem;
  font-size: 1.02rem;
}

.btn-sm {
  padding: 0.7rem 1.1rem;
  font-size: 0.88rem;
}

/* Mobile sticky CTA */
.mobile-cta-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem calc(0.85rem + env(safe-area-inset-bottom));
  background: rgba(10, 5, 16, 0.92);
  border-top: 1px solid rgba(255, 45, 149, 0.3);
  backdrop-filter: blur(16px);
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.45);
}

.btn-close-mobile-cta {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 900;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(7, 4, 12, 0.55);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.header.scrolled {
  background: rgba(7, 4, 12, 0.88);
  border-bottom-color: rgba(255, 45, 149, 0.18);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--text);
}

.logo {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 0 20px rgba(255, 45, 149, 0.35);
}

.logo-text {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.15;
}

.logo-text span {
  display: block;
  color: var(--primary);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 1.35rem;
}

.nav-links a {
  color: var(--text-muted);
  font-size: 0.92rem;
  font-weight: 500;
}

.nav-links a:hover { color: var(--text); }

.btn-header { display: none; }

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  position: relative;
  transition: var(--transition);
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: '';
  position: absolute;
  left: 0;
}

.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

.mobile-nav {
  display: none;
  position: absolute;
  top: var(--header-h);
  left: 0;
  right: 0;
  background: rgba(10, 5, 18, 0.96);
  border-bottom: 1px solid rgba(255, 45, 149, 0.2);
  padding: 1rem;
  flex-direction: column;
  gap: 0.75rem;
  backdrop-filter: blur(16px);
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
  color: var(--text);
  padding: 0.75rem 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* Hero */
.hero {
  position: relative;
  padding: 2.25rem 0 3.5rem;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1.1rem;
  justify-content: center;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-muted);
}

.pill.hot {
  color: #ffd6ea;
  border-color: rgba(255, 45, 149, 0.45);
  background: rgba(255, 45, 149, 0.12);
  box-shadow: 0 0 20px rgba(255, 45, 149, 0.15);
}

.pill.gold {
  color: #ffe7a8;
  border-color: rgba(255, 200, 87, 0.4);
  background: rgba(255, 200, 87, 0.1);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.15rem, 8vw, 4.4rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-align: center;
  margin-bottom: 0.9rem;
  text-transform: uppercase;
}

.hero-title .glow {
  background: linear-gradient(120deg, #fff 10%, #ff8ac8 35%, #b14dff 65%, #00f0ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 24px rgba(255, 45, 149, 0.35));
}

.hero-tagline {
  font-family: var(--font-script);
  font-size: clamp(1.15rem, 3.4vw, 1.65rem);
  font-style: italic;
  color: var(--accent);
  text-align: center;
  margin-bottom: 1rem;
  text-shadow: 0 0 24px rgba(255, 200, 87, 0.25);
}

.hero-subtitle {
  max-width: 620px;
  margin: 0 auto 1.5rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 1.02rem;
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.trust-row strong { color: var(--text); }

.hero-visual {
  position: relative;
  margin-top: 0.5rem;
}

.hero-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 45, 149, 0.08),
    inset 0 0 60px rgba(255, 45, 149, 0.08);
  background: #120818;
}

.hero-frame img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
  transform: scale(1.01);
  transition: transform 1.2s ease;
}

.hero-frame:hover img {
  transform: scale(1.06);
}

.hero-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(7, 4, 12, 0.75) 100%);
  pointer-events: none;
}

.hero-caption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 2;
  font-size: 0.82rem;
  color: #f7e9ff;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border-radius: 999px;
  padding: 0.4rem 0.8rem;
}

.float-card {
  display: none;
  position: absolute;
  width: min(180px, 28vw);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
  background: #1a0d24;
  animation: floatY 5.5s ease-in-out infinite;
}

.float-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.float-card.one { top: 8%; left: -4%; animation-delay: 0s; }
.float-card.two { top: 14%; right: -4%; animation-delay: 1.2s; }
.float-card.three {
  bottom: 8%;
  left: 6%;
  width: min(120px, 20vw);
  animation-delay: 0.6s;
  border-radius: 50%;
  border-color: rgba(255, 45, 149, 0.45);
  box-shadow: 0 0 28px rgba(255, 45, 149, 0.35), 0 18px 40px rgba(0, 0, 0, 0.45);
}
.float-card.three img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #000;
}

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* Marquee */
.marquee {
  overflow: hidden;
  border-block: 1px solid rgba(255, 45, 149, 0.18);
  background: linear-gradient(90deg, rgba(255, 45, 149, 0.08), rgba(177, 77, 255, 0.08), rgba(0, 240, 255, 0.05));
  padding: 0.85rem 0;
  margin-bottom: 0.5rem;
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 2.5rem;
  animation: marquee 28s linear infinite;
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.marquee-track .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 10px var(--primary);
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Sections */
.section {
  padding: var(--space-2xl) 0;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.section.visible,
.section.hero {
  opacity: 1;
  transform: none;
}

.hero.section {
  opacity: 1;
  transform: none;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  text-align: center;
  margin-bottom: 0.55rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 2rem;
}

/* Video */
.video-shell {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #0a0610;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.45), var(--glow-purple);
  aspect-ratio: 16 / 9;
}

.video-shell iframe,
.video-shell video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-stub {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  cursor: pointer;
  background: #100818;
}

.video-stub img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.55) saturate(1.15);
  transition: transform 0.8s ease, filter 0.4s ease;
}

.video-stub:hover img {
  transform: scale(1.04);
  filter: brightness(0.65) saturate(1.25);
}

.play-btn {
  position: absolute;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: linear-gradient(135deg, rgba(255, 45, 149, 0.9), rgba(177, 77, 255, 0.9));
  display: grid;
  place-items: center;
  box-shadow: var(--glow-pink);
  transition: transform var(--transition);
}

.video-stub:hover .play-btn { transform: scale(1.08); }

.play-btn svg {
  width: 28px;
  height: 28px;
  margin-left: 4px;
  fill: white;
}

.video-note {
  text-align: center;
  margin-top: 1rem;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.video-note .stub-label {
  display: inline-block;
  margin-left: 0.35rem;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ffe4f1;
  background: rgba(255, 45, 149, 0.15);
  border: 1px solid rgba(255, 45, 149, 0.35);
}

/* Carousel */
.carousel {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
}

.carousel-viewport {
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.02);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
  touch-action: pan-y;
}

.carousel-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.carousel-slide {
  min-width: 100%;
  position: relative;
}

.carousel-slide img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #120818;
}

.carousel-slide .caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.1rem 1.2rem;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.78));
  color: #fff;
  font-size: 0.92rem;
  text-align: left;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(10, 5, 18, 0.72);
  color: white;
  cursor: pointer;
  backdrop-filter: blur(10px);
  z-index: 3;
  transition: var(--transition);
}

.carousel-btn:hover {
  border-color: var(--primary);
  box-shadow: 0 0 20px rgba(255, 45, 149, 0.35);
}

.carousel-btn.prev { left: 0.75rem; }
.carousel-btn.next { right: 0.75rem; }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.carousel-dots button {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: none;
  background: rgba(255, 255, 255, 0.22);
  cursor: pointer;
  transition: var(--transition);
}

.carousel-dots button.active {
  width: 26px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  box-shadow: 0 0 12px rgba(255, 45, 149, 0.5);
}

.thumb-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.6rem;
  margin-top: 1rem;
}

.thumb-strip button {
  border: 1px solid transparent;
  border-radius: 12px;
  overflow: hidden;
  background: transparent;
  cursor: pointer;
  opacity: 0.55;
  transition: var(--transition);
  padding: 0;
}

.thumb-strip button.active,
.thumb-strip button:hover {
  opacity: 1;
  border-color: rgba(255, 45, 149, 0.55);
  box-shadow: 0 0 18px rgba(255, 45, 149, 0.2);
}

.thumb-strip img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

/* Features */
.features-grid {
  display: grid;
  gap: 1rem;
}

.feature-card {
  position: relative;
  padding: 1.35rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(160deg, rgba(36, 16, 48, 0.75), rgba(14, 8, 22, 0.9));
  text-align: left;
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 45, 149, 0.12), transparent 40%, rgba(0, 240, 255, 0.06));
  opacity: 0;
  transition: opacity var(--transition);
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 45, 149, 0.4);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35), 0 0 30px rgba(255, 45, 149, 0.12);
}

.feature-card:hover::before { opacity: 1; }

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 0.9rem;
  background: rgba(255, 45, 149, 0.12);
  border: 1px solid rgba(255, 45, 149, 0.28);
  font-size: 1.35rem;
  position: relative;
  z-index: 1;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.45rem;
  position: relative;
  z-index: 1;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  position: relative;
  z-index: 1;
  margin: 0;
}

/* Showcase strip */
.showcase-grid {
  display: grid;
  gap: 1rem;
}

.showcase-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  min-height: 280px;
  background: #120818;
}

.showcase-card img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.showcase-card:hover img { transform: scale(1.05); }

.showcase-card .overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.2rem;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.82));
}

.showcase-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.showcase-card p {
  color: #d8cbe6;
  font-size: 0.9rem;
  margin: 0;
}

.stub-chip {
  display: inline-block;
  margin-bottom: 0.45rem;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffd6ea;
  background: rgba(255, 45, 149, 0.2);
  border: 1px solid rgba(255, 45, 149, 0.35);
  border-radius: 999px;
  padding: 0.2rem 0.55rem;
}

/* Modes */
.modes {
  display: grid;
  gap: 0.85rem;
}

.mode-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.2rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  text-align: left;
}

.mode-key {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: white;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  box-shadow: 0 0 20px rgba(255, 45, 149, 0.25);
}

.mode-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.mode-card p {
  color: var(--text-muted);
  margin: 0;
  font-size: 0.94rem;
}

/* Signup */
.signup-wrapper {
  max-width: 640px;
  margin: 0 auto;
  padding: 2rem 1.25rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 45, 149, 0.25);
  background:
    linear-gradient(180deg, rgba(255, 45, 149, 0.08), rgba(177, 77, 255, 0.05)),
    rgba(16, 8, 24, 0.8);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  position: relative;
  overflow: hidden;
}

.signup-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), var(--secondary), var(--cyan), transparent);
}

.signup-description {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.signup-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.signup-form input {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.28);
  color: var(--text);
  font-size: 1rem;
  outline: none;
}

.signup-form input:focus {
  border-color: rgba(255, 45, 149, 0.55);
  box-shadow: 0 0 0 3px rgba(255, 45, 149, 0.15);
}

.form-note,
.integration-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.82rem;
  margin-top: 0.75rem;
}

.integration-note {
  padding: 0.75rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px dashed rgba(255, 255, 255, 0.12);
}

.integration-note code {
  color: var(--accent);
}

/* Social */
.social-grid {
  display: grid;
  gap: 0.85rem;
}

.social-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding: 1.25rem 1rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  transition: var(--transition);
}

.social-card:hover {
  transform: translateY(-3px);
  border-color: var(--primary);
  color: white;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.social-icon { width: 40px; height: 40px; }
.social-icon svg { width: 40px; height: 40px; }

.social-card.facebook .social-icon { color: var(--color-facebook); }
.social-card.youtube .social-icon { color: var(--color-youtube); }
.social-card.discord .social-icon { color: var(--color-discord); }
.social-card.twitter .social-icon { color: var(--color-twitter); }
.social-card.instagram .social-icon { color: var(--color-instagram); }

.social-name { font-weight: 700; }
.social-desc { color: var(--text-muted); font-size: 0.85rem; }

/* Footer */
.footer {
  padding: 2.5rem 0 calc(7rem + env(safe-area-inset-bottom));
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.25);
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
  margin-bottom: 1.5rem;
}

.footer-logo {
  width: 56px;
  height: 56px;
  border-radius: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.footer-links a:hover { color: var(--text); }

.footer-social {
  display: flex;
  gap: 0.85rem;
}

.footer-social a {
  color: var(--text-muted);
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.footer-social a:hover {
  color: white;
  border-color: var(--primary);
}

.footer-social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-bottom {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.82rem;
}

.footer-bottom p { margin-bottom: 0.35rem; }

.mature-note {
  color: #e8c4d6;
  font-weight: 600;
}

.content-warn {
  display: inline-block;
  margin-top: 0.35rem;
  color: #ffb3d4;
  font-weight: 600;
  font-size: 0.92em;
}

/* ========== 18+ Age gate ========== */
html.age-locked,
html.age-locked body {
  overflow: hidden !important;
}

html.age-locked .site-shell {
  visibility: hidden !important;
  pointer-events: none !important;
  user-select: none !important;
}

html.age-ok .site-shell {
  visibility: visible;
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  background:
    radial-gradient(800px 500px at 50% 30%, rgba(255, 45, 149, 0.18), transparent 60%),
    rgba(5, 2, 10, 0.97);
  backdrop-filter: blur(10px);
}

.age-gate[hidden] {
  display: none !important;
}

.age-gate-card {
  width: min(440px, 100%);
  background: rgba(18, 8, 28, 0.95);
  border: 1px solid rgba(255, 45, 149, 0.35);
  border-radius: 20px;
  padding: 1.75rem 1.5rem 1.4rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55), 0 0 40px rgba(255, 45, 149, 0.12);
  text-align: center;
}

.age-gate-logo {
  display: block;
  margin: 0 auto 0.75rem;
  border-radius: 12px;
}

.age-gate-kicker {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.4rem;
}

.age-gate-title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 4vw, 1.7rem);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.age-gate-copy {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 0.65rem;
  text-align: left;
}

.age-gate-copy.muted {
  font-size: 0.86rem;
  opacity: 0.9;
}

.age-gate-copy strong {
  color: #ffd0e6;
  font-weight: 600;
}

.age-gate-actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin: 1.15rem 0 0.85rem;
}

.age-gate-fine {
  font-size: 0.75rem;
  color: var(--text-muted);
  opacity: 0.85;
}

.age-gate-denied {
  width: min(400px, 100%);
  text-align: center;
  padding: 2rem 1.25rem;
}

.age-gate-denied h2 {
  font-family: var(--font-display);
  margin-bottom: 0.5rem;
}

.age-gate-denied p {
  color: var(--text-muted);
}

@media (min-width: 520px) {
  .age-gate-actions {
    flex-direction: row;
    justify-content: center;
  }
  .age-gate-actions .btn {
    flex: 1;
  }
}

/* Utility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* Breakpoints */
@media (min-width: 640px) {
  .signup-form {
    flex-direction: row;
  }
  .signup-form input { flex: 1; }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .showcase-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .modes {
    grid-template-columns: repeat(3, 1fr);
  }
  .social-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .container { padding: 0 var(--space-md); }
  .nav-toggle { display: none; }
  .nav-links { display: flex; }
  .btn-header { display: inline-flex; }
  .mobile-nav { display: none !important; }
  .hero { padding: 3rem 0 4rem; }
  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2.5rem;
    text-align: left;
  }
  .badge-row,
  .hero-title,
  .hero-tagline,
  .hero-subtitle,
  .cta-group,
  .trust-row {
    justify-content: flex-start;
    text-align: left;
  }
  .hero-subtitle { margin-left: 0; }
  .float-card { display: block; }
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .social-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .footer-content {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

@media (min-width: 1024px) {
  .thumb-strip {
    grid-template-columns: repeat(8, 1fr);
  }
}

@media (max-width: 480px) {
  .hero-title { font-size: 1.95rem; }
  .carousel-btn { width: 38px; height: 38px; }
  .thumb-strip {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .ambient,
  .marquee-track,
  .float-card,
  .section {
    animation: none !important;
    transition: none !important;
  }
  .section { opacity: 1; transform: none; }
}
