/* ============================================================
   SEXERSIZE — Retro 80s Neon Aesthetic
   Colors: Hot Pink #FF4DA6 | Teal #00C9C9 | Dark BG #0D0015
   ============================================================ */

/* --- RESET & BASE --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --pink: #FF4DA6;
  --pink-light: #ff7ac2;
  --pink-dark: #c2357f;
  --teal: #00C9C9;
  --teal-light: #33e8e8;
  --teal-dark: #009999;
  --bg-dark: #0D0015;
  --bg-card: #1a0a2e;
  --bg-card-hover: #241040;
  --text-main: #f0e6ff;
  --text-muted: #a090b8;
  --text-white: #ffffff;
  --glow-pink: 0 0 20px rgba(255, 77, 166, 0.5), 0 0 40px rgba(255, 77, 166, 0.2);
  --glow-teal: 0 0 20px rgba(0, 201, 201, 0.5), 0 0 40px rgba(0, 201, 201, 0.2);
  --glow-pink-text: 0 0 10px rgba(255, 77, 166, 0.8), 0 0 30px rgba(255, 77, 166, 0.4);
  --glow-teal-text: 0 0 10px rgba(0, 201, 201, 0.8), 0 0 30px rgba(0, 201, 201, 0.4);
  --radius: 12px;
  --radius-lg: 24px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--teal);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--teal-light);
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-pink { color: var(--pink); }
.text-teal { color: var(--teal); }

.section-label {
  font-family: 'Righteous', cursive;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--teal);
  margin-bottom: 16px;
}

/* --- BUTTONS --- */
.btn {
  display: inline-block;
  padding: 16px 40px;
  border-radius: 50px;
  font-family: 'Righteous', cursive;
  font-size: 1.125rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-primary {
  background: var(--pink);
  color: var(--text-white);
  box-shadow: var(--glow-pink);
}

.btn-primary:hover {
  background: var(--pink-light);
  color: var(--text-white);
  box-shadow: 0 0 30px rgba(255, 77, 166, 0.7), 0 0 60px rgba(255, 77, 166, 0.3);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--teal);
  border: 2px solid var(--teal);
  box-shadow: var(--glow-teal);
}

.btn-secondary:hover {
  background: var(--teal);
  color: var(--bg-dark);
  box-shadow: 0 0 30px rgba(0, 201, 201, 0.7), 0 0 60px rgba(0, 201, 201, 0.3);
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
}

/* --- FLOATING DECORATIONS — wallpaper grid --- */
.floating-decor {
  position: fixed;
  pointer-events: none;
  z-index: 0;
  opacity: 0.04;
  filter: brightness(0) invert(1);
}

/* Row 1 — top quarter */
.decor-1 {
  top: 2%;
  left: 2%;
  width: 150px;
  animation: float-slow 20s ease-in-out infinite;
}
.decor-2 {
  top: 5%;
  left: 28%;
  width: 170px;
  animation: float-slow 25s ease-in-out infinite 2s reverse;
}
.decor-3 {
  top: 3%;
  left: 55%;
  width: 140px;
  animation: float-slow 22s ease-in-out infinite 5s;
}
.decor-4 {
  top: 6%;
  left: 80%;
  width: 130px;
  animation: float-slow 18s ease-in-out infinite 3s;
}

/* Row 2 — upper-mid */
.decor-5 {
  top: 26%;
  left: 8%;
  width: 160px;
  animation: float-slow 24s ease-in-out infinite 8s;
}
.decor-6 {
  top: 28%;
  left: 38%;
  width: 140px;
  animation: float-slow 21s ease-in-out infinite 1s reverse;
}
.decor-7 {
  top: 25%;
  left: 65%;
  width: 120px;
  animation: float-slow 19s ease-in-out infinite 6s;
}
.decor-8 {
  top: 27%;
  left: 88%;
  width: 150px;
  animation: float-slow 23s ease-in-out infinite 4s reverse;
}

/* Row 3 — lower-mid */
.decor-9 {
  top: 50%;
  left: 1%;
  width: 140px;
  animation: float-slow 26s ease-in-out infinite 7s;
}
.decor-10 {
  top: 52%;
  left: 30%;
  width: 130px;
  animation: float-slow 20s ease-in-out infinite 2s;
}
.decor-11 {
  top: 48%;
  left: 58%;
  width: 160px;
  animation: float-slow 22s ease-in-out infinite 9s reverse;
}
.decor-12 {
  top: 51%;
  left: 82%;
  width: 140px;
  animation: float-slow 18s ease-in-out infinite 5s;
}

/* Row 4 — bottom quarter */
.decor-13 {
  top: 74%;
  left: 5%;
  width: 150px;
  animation: float-slow 23s ease-in-out infinite 3s reverse;
}
.decor-14 {
  top: 76%;
  left: 35%;
  width: 160px;
  animation: float-slow 19s ease-in-out infinite 6s;
}
.decor-15 {
  top: 72%;
  left: 62%;
  width: 130px;
  animation: float-slow 25s ease-in-out infinite 1s;
}
.decor-16 {
  top: 75%;
  left: 90%;
  width: 150px;
  animation: float-slow 21s ease-in-out infinite 8s reverse;
}

@keyframes float-slow {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-20px) rotate(3deg); }
  50% { transform: translateY(10px) rotate(-2deg); }
  75% { transform: translateY(-15px) rotate(1deg); }
}

/* --- NAV --- */
.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  background: rgba(13, 0, 21, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 77, 166, 0.15);
  transition: all 0.3s ease;
}

.main-nav.scrolled {
  padding: 12px 40px;
  background: rgba(13, 0, 21, 0.95);
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--pink);
  text-shadow: var(--glow-pink-text);
  letter-spacing: 1px;
}

.nav-logo em {
  font-style: italic;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-family: 'Righteous', cursive;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-main);
  transition: all 0.3s ease;
}

.nav-links a:hover {
  color: var(--pink);
  text-shadow: var(--glow-pink-text);
}

.nav-cta {
  padding: 10px 24px;
  border: 1px solid var(--pink);
  border-radius: 50px;
  color: var(--pink) !important;
}

.nav-cta:hover {
  background: var(--pink);
  color: var(--text-white) !important;
  box-shadow: var(--glow-pink);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--pink);
  transition: all 0.3s ease;
  border-radius: 2px;
}

/* --- HERO — VHS TAPE COVER --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  overflow: hidden;
  /* Transparent base so fixed floating decorations show through */
  background:
    radial-gradient(ellipse at 30% 20%, rgba(255, 77, 166, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 80%, rgba(0, 201, 201, 0.06) 0%, transparent 50%);
}

/* (doodle pattern removed — using floating SVG decorations instead) */

/* VHS scanlines */
.vhs-scanlines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    to bottom,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.15) 2px,
    rgba(0, 0, 0, 0.15) 4px
  );
  pointer-events: none;
  z-index: 10;
  opacity: 0.4;
}

/* VHS tracking glitch bar */
.vhs-tracking {
  position: absolute;
  left: 0;
  right: 0;
  height: 6px;
  background: rgba(255, 255, 255, 0.08);
  z-index: 11;
  pointer-events: none;
  animation: vhs-track 8s ease-in-out infinite;
}

@keyframes vhs-track {
  0%, 100% { top: -6px; opacity: 0; }
  10% { opacity: 1; }
  30% { top: 35%; opacity: 0.6; }
  50% { top: 55%; opacity: 0; }
  70% { opacity: 0; }
  80% { top: 80%; opacity: 0.4; }
  90% { top: 95%; opacity: 0; }
}

/* VHS noise/grain */
.vhs-noise {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 9;
  opacity: 0.03;
  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.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

.hero-content {
  position: relative;
  z-index: 5;
  max-width: 700px;
  width: 100%;
}

/* === THE VHS CASSETTE LABEL === */
.vhs-label {
  position: relative;
  margin-bottom: 40px;
  max-width: 620px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  background: #080808;
  padding: 28px 28px 24px;
  aspect-ratio: auto;
}

/* --- THE SCREEN AREA --- */
.vhs-screen {
  position: relative;
  background:
    /* Pink glow wash from title area */
    radial-gradient(ellipse at 50% 35%, rgba(255, 77, 166, 0.08) 0%, transparent 60%),
    linear-gradient(180deg, #1a0832 0%, #120520 30%, #0d0318 60%, #1a0832 100%);
  border: 2px solid rgba(180, 160, 120, 0.35);
  border-radius: 14px;
  padding: 70px 32px 55px;
  text-align: center;
  overflow: visible;
}

/* Clip glow to the label boundaries */
.vhs-label {
  overflow: hidden;
}

/* Scanlines inside the screen */
.vhs-screen-scanlines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    to bottom,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.2) 2px,
    rgba(0, 0, 0, 0.2) 4px
  );
  pointer-events: none;
  z-index: 2;
  border-radius: 12px;
}

/* VHS tracking glitch bar inside screen */
.vhs-screen-tracking {
  position: absolute;
  left: 0;
  right: 0;
  height: 4px;
  background: rgba(255, 255, 255, 0.06);
  z-index: 8;
  pointer-events: none;
  animation: screen-track 10s ease-in-out infinite;
  opacity: 0;
}

@keyframes screen-track {
  0%, 100% { top: -4px; opacity: 0; }
  15% { opacity: 0.6; }
  35% { top: 40%; opacity: 0.3; }
  50% { top: 60%; opacity: 0; }
  75% { opacity: 0; }
  85% { top: 85%; opacity: 0.3; }
  95% { top: 100%; opacity: 0; }
}

/* VHS HUD (play icon + timestamp) */
.vhs-hud {
  position: absolute;
  top: 16px;
  left: 20px;
  right: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 6;
  pointer-events: none;
}

.vhs-hud-left {
  display: flex;
  align-items: center;
  gap: 6px;
}

.vhs-play-icon {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1;
}

.vhs-play-label {
  font-family: 'Special Elite', cursive;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: rgba(255, 255, 255, 0.45);
}

.vhs-hud-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.vhs-timestamp {
  font-family: 'Special Elite', cursive;
  font-size: 0.75rem;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.3);
  font-variant-numeric: tabular-nums;
}

/* Blinking REC dot */
.vhs-rec-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ff3333;
  box-shadow: 0 0 6px rgba(255, 50, 50, 0.6);
  animation: rec-blink 2s ease-in-out infinite;
}

@keyframes rec-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.15; }
}

/* Title divider line */
.vhs-title-divider {
  width: 60%;
  height: 2px;
  margin: 8px auto 20px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 77, 166, 0.4) 20%,
    rgba(255, 77, 166, 0.6) 50%,
    rgba(255, 77, 166, 0.4) 80%,
    transparent 100%
  );
  box-shadow: 0 0 8px rgba(255, 77, 166, 0.3);
  position: relative;
  z-index: 3;
}

/* Tagline below subtitle */
.vhs-tagline {
  font-family: 'Special Elite', cursive;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 20px;
  letter-spacing: 1px;
  position: relative;
  z-index: 3;
}

/* Breathing neon glow animation on title */
@keyframes neon-breathe {
  0%, 100% {
    filter: brightness(1);
    text-shadow:
      0 0 7px rgba(255, 77, 166, 1),
      0 0 15px rgba(255, 77, 166, 0.9),
      0 0 30px rgba(255, 77, 166, 0.7),
      0 0 50px rgba(255, 77, 166, 0.5),
      0 0 80px rgba(255, 77, 166, 0.4),
      0 0 120px rgba(255, 77, 166, 0.3),
      0 0 180px rgba(255, 77, 166, 0.15),
      0 3px 0 #a0285f;
  }
  50% {
    filter: brightness(1.05);
    text-shadow:
      0 0 10px rgba(255, 77, 166, 1),
      0 0 20px rgba(255, 77, 166, 1),
      0 0 40px rgba(255, 77, 166, 0.8),
      0 0 60px rgba(255, 77, 166, 0.6),
      0 0 100px rgba(255, 77, 166, 0.45),
      0 0 140px rgba(255, 77, 166, 0.35),
      0 0 200px rgba(255, 77, 166, 0.2),
      0 3px 0 #a0285f;
  }
}

/* --- VHS TITLE (neon pink block letters) --- */
.vhs-title {
  font-family: 'Righteous', cursive;
  font-weight: 400;
  font-style: italic;
  font-size: clamp(2.75rem, 9vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: 2px;
  text-transform: uppercase;
  /* Outlined letters with slightly darker fill */
  color: #e8408f;
  -webkit-text-stroke: 2px #ff6cb5;
  text-shadow:
    /* Inner glow — tight, bright */
    0 0 7px rgba(255, 77, 166, 1),
    0 0 15px rgba(255, 77, 166, 0.9),
    /* Mid glow — wider */
    0 0 30px rgba(255, 77, 166, 0.7),
    0 0 50px rgba(255, 77, 166, 0.5),
    /* Outer glow — very wide, diffuse halo */
    0 0 80px rgba(255, 77, 166, 0.4),
    0 0 120px rgba(255, 77, 166, 0.3),
    0 0 180px rgba(255, 77, 166, 0.15),
    /* Subtle depth */
    0 3px 0 #a0285f;
  position: relative;
  z-index: 3;
  margin-bottom: 28px;
  animation: neon-breathe 4s ease-in-out infinite;
}

/* Large radial glow behind the title (illuminating the wall) */
.vhs-title::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 130%;
  height: 280%;
  background: radial-gradient(
    ellipse at center,
    rgba(255, 77, 166, 0.25) 0%,
    rgba(255, 77, 166, 0.12) 25%,
    rgba(255, 77, 166, 0.05) 50%,
    transparent 70%
  );
  pointer-events: none;
  z-index: -1;
  border-radius: 50%;
}

/* Subtitle */
.vhs-subtitle {
  font-family: 'Righteous', cursive;
  font-size: clamp(1.125rem, 2.8vw, 1.625rem);
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--teal);
  text-shadow:
    0 0 8px rgba(0, 201, 201, 0.6),
    0 0 20px rgba(0, 201, 201, 0.3),
    0 0 40px rgba(0, 201, 201, 0.15);
  line-height: 1.5;
  position: relative;
  z-index: 3;
}

/* --- BOTTOM DETAILS AREA --- */
.vhs-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 24px 4px 0;
  margin-top: 20px;
}

.vhs-bottom-left {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* "Be Kind, Rewind" rental sticker */
.vhs-rewind-sticker {
  background: rgba(180, 165, 130, 0.2);
  border: 1px solid rgba(180, 165, 130, 0.3);
  padding: 8px 14px;
  border-radius: 3px;
  display: inline-block;
  transform: rotate(-1deg);
}

.vhs-rewind-text {
  font-family: 'Special Elite', cursive;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(200, 185, 150, 0.7);
  line-height: 1.3;
}

.vhs-private {
  font-family: 'Special Elite', cursive;
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.2);
  padding-left: 4px;
}

/* Center -- property line */
.vhs-bottom-center {
  text-align: center;
  flex: 1;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin: 0 20px;
  align-self: flex-end;
}

.vhs-property {
  font-family: 'Righteous', cursive;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.25);
}

/* Right -- volume badge */
.vhs-bottom-right {
  display: flex;
  align-items: flex-end;
}

.vhs-vol-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 8px 12px;
  border-radius: 4px;
}

.vhs-vol-icon {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.2);
}

.vhs-vol-text {
  font-family: 'Righteous', cursive;
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.3;
}

.vhs-vol-text strong {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
  display: block;
}

.hero-sub {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: 40px;
}

.hero-sub em {
  color: var(--pink-light);
  font-style: normal;
  border-bottom: 2px solid var(--pink);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.5;
}

.hero-scroll-indicator span {
  font-family: 'Righteous', cursive;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--teal);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--teal), transparent);
  animation: scroll-bounce 2s ease-in-out infinite;
}

@keyframes scroll-bounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(10px); opacity: 0.3; }
}

/* --- ABOUT --- */
.about {
  padding: 120px 0;
  position: relative;
  z-index: 1;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-headline {
  font-family: 'Righteous', cursive;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  line-height: 1.3;
  color: var(--text-white);
  margin-bottom: 24px;
}

.about-text p {
  margin-bottom: 16px;
  color: var(--text-muted);
  font-size: 1rem;
}

.about-visual {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 77, 166, 0.15);
  border-radius: var(--radius);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all 0.4s ease;
  cursor: default;
}

.about-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--pink);
  box-shadow: var(--glow-pink);
  transform: translateX(8px);
}

.about-card-2:hover {
  border-color: var(--teal);
  box-shadow: var(--glow-teal);
}

.card-icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
  opacity: 0.8;
}

.card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.card-label {
  font-family: 'Righteous', cursive;
  font-size: 1.125rem;
  color: var(--text-white);
  letter-spacing: 1px;
}

/* --- MARQUEE --- */
.marquee-strip {
  padding: 20px 0;
  background: linear-gradient(90deg, var(--pink), var(--teal));
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.marquee-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
}

.marquee-track span {
  font-family: 'Righteous', cursive;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--bg-dark);
  padding: 0 16px;
  flex-shrink: 0;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* --- STORIES --- */
.stories {
  padding: 120px 0;
  position: relative;
  z-index: 1;
}

.stories-headline {
  font-family: 'Righteous', cursive;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  line-height: 1.3;
  color: var(--text-white);
  margin-bottom: 60px;
}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.story-card {
  background: var(--bg-card);
  border: 1px solid rgba(0, 201, 201, 0.1);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  transition: all 0.4s ease;
  overflow: hidden;
}

.story-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--pink), var(--teal));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.story-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(0, 201, 201, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.story-card:hover::before {
  opacity: 1;
}

.story-card-featured {
  grid-column: 1 / -1;
  border-color: rgba(255, 77, 166, 0.2);
}

.story-badge {
  display: inline-block;
  padding: 4px 14px;
  background: rgba(255, 77, 166, 0.15);
  color: var(--pink);
  font-family: 'Righteous', cursive;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.story-category {
  font-family: 'Righteous', cursive;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--teal);
  margin-bottom: 12px;
}

.story-title {
  font-family: 'Righteous', cursive;
  font-size: 1.375rem;
  color: var(--text-white);
  margin-bottom: 12px;
  line-height: 1.3;
}

.story-excerpt {
  color: var(--text-muted);
  font-size: 0.9375rem;
  margin-bottom: 16px;
  line-height: 1.6;
}

.story-meta {
  font-size: 0.8125rem;
  color: var(--text-muted);
  opacity: 0.7;
}

.stories-cta {
  text-align: center;
}

.stories-cta p {
  font-family: 'Righteous', cursive;
  font-size: 1.25rem;
  color: var(--text-white);
  margin-bottom: 20px;
}

/* --- SOCIAL PROOF --- */
.social-proof {
  padding: 80px 0;
  position: relative;
  z-index: 1;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}

.proof-item {
  padding: 40px 20px;
  border: 1px solid rgba(0, 201, 201, 0.15);
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  transition: all 0.4s ease;
}

.proof-item:hover {
  border-color: var(--teal);
  box-shadow: var(--glow-teal);
}

.proof-number {
  font-family: 'Bungee Shade', cursive;
  font-size: 3.5rem;
  color: var(--teal);
  text-shadow: var(--glow-teal-text);
  display: inline;
}

.proof-suffix {
  font-family: 'Bungee Shade', cursive;
  font-size: 2rem;
  color: var(--teal);
  text-shadow: var(--glow-teal-text);
}

.proof-label {
  display: block;
  font-family: 'Righteous', cursive;
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin-top: 8px;
  letter-spacing: 1px;
}

/* --- NEWSLETTER --- */
.newsletter {
  padding: 120px 0;
  position: relative;
  z-index: 1;
}

.newsletter-inner {
  background: var(--bg-card);
  border: 1px solid rgba(255, 77, 166, 0.2);
  border-radius: var(--radius-lg);
  padding: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.newsletter-inner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 77, 166, 0.1), transparent 70%);
  pointer-events: none;
}

.newsletter-headline {
  font-family: 'Righteous', cursive;
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.3;
  color: var(--text-white);
  margin-bottom: 16px;
}

.newsletter-content p {
  color: var(--text-muted);
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group input {
  width: 100%;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  color: var(--text-white);
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input::placeholder {
  color: var(--text-muted);
  opacity: 0.6;
}

.form-group input:focus {
  outline: none;
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(255, 77, 166, 0.15);
  background: rgba(255, 255, 255, 0.08);
}

.form-disclaimer {
  font-size: 0.8125rem;
  color: var(--text-muted);
  opacity: 0.6;
  text-align: center;
}

/* --- SOCIAL --- */
.social {
  padding: 80px 0;
  text-align: center;
  position: relative;
  z-index: 1;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  color: var(--text-main);
  font-family: 'Righteous', cursive;
  font-size: 0.9375rem;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.social-link svg {
  width: 20px;
  height: 20px;
}

.social-link:hover {
  transform: translateY(-3px);
}

.social-instagram:hover {
  border-color: #E1306C;
  color: #E1306C;
  box-shadow: 0 0 20px rgba(225, 48, 108, 0.3);
}

.social-tiktok:hover {
  border-color: var(--teal);
  color: var(--teal);
  box-shadow: var(--glow-teal);
}

.social-twitter:hover {
  border-color: var(--text-white);
  color: var(--text-white);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.social-threads:hover {
  border-color: var(--pink);
  color: var(--pink);
  box-shadow: var(--glow-pink);
}

/* --- FOOTER --- */
.footer {
  padding: 60px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  z-index: 1;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--pink);
  text-shadow: var(--glow-pink-text);
  display: block;
  margin-bottom: 12px;
}

.footer-logo em {
  font-style: italic;
}

.footer-brand p {
  font-size: 0.8125rem;
  color: var(--text-muted);
  opacity: 0.6;
  max-width: 400px;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--pink);
}

/* --- ANIMATIONS (scroll reveal) --- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- SUCCESS STATE --- */
.form-success {
  text-align: center;
  padding: 20px;
}

.form-success h4 {
  font-family: 'Righteous', cursive;
  font-size: 1.5rem;
  color: var(--teal);
  margin-bottom: 8px;
}

.form-success p {
  color: var(--text-muted);
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .newsletter-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px;
  }

  .stories-grid {
    grid-template-columns: 1fr;
  }

  .story-card-featured {
    grid-column: auto;
  }
}

@media (max-width: 768px) {
  .main-nav {
    padding: 16px 20px;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(13, 0, 21, 0.98);
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid rgba(255, 77, 166, 0.15);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    padding: 100px 16px 60px;
  }

  .vhs-label {
    padding: 16px;
  }

  .vhs-screen {
    padding: 40px 20px 36px;
    border-radius: 10px;
  }

  .vhs-bottom {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
  }

  .vhs-bottom-left {
    align-items: center;
  }

  .vhs-bottom-center {
    margin: 0;
    border-top: none;
    padding-top: 0;
  }

  .vhs-rewind-sticker {
    transform: none;
  }

  .proof-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
    flex-wrap: wrap;
  }

  .social-link span {
    display: none;
  }

  .social-link {
    padding: 16px;
    border-radius: 50%;
  }

  .floating-decor {
    width: 80px !important;
    opacity: 0.03;
  }

  .newsletter-inner {
    padding: 32px 20px;
  }
}

@media (max-width: 480px) {
  .vhs-title {
    font-size: 2.5rem;
    letter-spacing: 2px;
  }

  .vhs-subtitle {
    letter-spacing: 2px;
    font-size: 0.875rem;
  }

  .vhs-vol-badge {
    display: none;
  }

  .stories-headline,
  .about-headline,
  .newsletter-headline {
    font-size: 1.5rem;
  }

  .story-card {
    padding: 24px;
  }

  .btn {
    padding: 14px 32px;
    font-size: 1rem;
  }
}
