/* ============================================================
   NightVault – Premium 18+ Entertainment | style.css
   ============================================================ */

/* ---------- CSS VARIABLES ---------- */
:root {
  --bg-primary: #0a0a0f;
  --bg-secondary: #10101a;
  --bg-card: #15151f;
  --bg-card-hover: #1c1c2e;
  --accent-1: #ff2d78;
  --accent-2: #ff6b35;
  --accent-3: #9b59b6;
  --accent-gold: #f1c40f;
  --gradient-main: linear-gradient(135deg, #ff2d78 0%, #ff6b35 50%, #9b59b6 100%);
  --gradient-hero: linear-gradient(135deg, #ff2d78 0%, #c0392b 100%);
  --gradient-gold: linear-gradient(135deg, #f1c40f 0%, #e67e22 100%);
  --text-primary: #ffffff;
  --text-secondary: #a0a0b0;
  --text-muted: #606070;
  --border: rgba(255, 255, 255, 0.08);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  --shadow-accent: 0 10px 40px rgba(255, 45, 120, 0.3);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --font-main: 'Outfit', sans-serif;
  --font-display: 'Playfair Display', serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- RESET ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background: var(--bg-primary);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
}

button {
  cursor: pointer;
  border: none;
  outline: none;
  font-family: var(--font-main);
}

/* ---------- UTILITY ---------- */
.hidden {
  display: none !important;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.gradient-text {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================================
   AGE GATE
============================================================ */
.age-gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.age-gate__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, #1a0010 0%, #0a0a0f 70%);
  animation: bgPulse 4s ease-in-out infinite;
}

@keyframes bgPulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.85;
  }
}

.age-gate__card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid rgba(255, 45, 120, 0.2);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  max-width: 520px;
  width: 100%;
  text-align: center;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8), 0 0 80px rgba(255, 45, 120, 0.1);
  animation: cardIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes cardIn {
  from {
    opacity: 0;
    transform: scale(0.85) translateY(30px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.age-gate__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.age-gate__logo .logo-icon {
  font-size: 32px;
}

.age-gate__badge {
  display: inline-block;
  background: var(--gradient-main);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 4px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.age-gate__title {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.2;
}

.age-gate__subtitle {
  color: var(--text-secondary);
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 1.7;
}

.age-gate__warning {
  background: rgba(255, 45, 120, 0.08);
  border: 1px solid rgba(255, 45, 120, 0.2);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 13px;
  color: var(--accent-1);
  margin-bottom: 28px;
}

.age-gate__buttons {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.btn-enter {
  flex: 1;
  background: var(--gradient-main);
  color: #fff;
  padding: 16px 24px;
  border-radius: var(--radius-md);
  font-size: 16px;
  font-weight: 700;
  transition: var(--transition);
  box-shadow: var(--shadow-accent);
}

.btn-enter:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 50px rgba(255, 45, 120, 0.5);
}

.btn-enter:active {
  transform: translateY(0);
}

.btn-leave {
  flex: 1;
  background: transparent;
  color: var(--text-secondary);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  font-size: 16px;
  font-weight: 600;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.btn-leave:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
}

.age-gate__legal {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.6;
}

.age-gate__legal a {
  color: var(--accent-1);
}

.age-gate__legal a:hover {
  text-decoration: underline;
}

/* ============================================================
   NAVBAR
============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(10, 10, 15, 0.98);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.5px;
  flex-shrink: 0;
}

.logo-icon {
  font-size: 26px;
}

.nav-links {
  display: flex;
  gap: 4px;
  align-items: center;
}

.nav-link {
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.07);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-search {
  background: transparent;
  color: var(--text-secondary);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 16px;
  transition: var(--transition);
}

.btn-search:hover {
  background: rgba(255, 255, 255, 0.07);
  color: var(--text-primary);
}

.btn-premium-nav {
  background: var(--gradient-main);
  color: #fff;
  padding: 9px 20px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 700;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(255, 45, 120, 0.3);
}

.btn-premium-nav:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 30px rgba(255, 45, 120, 0.5);
}

.nav-hamburger {
  display: none;
  background: transparent;
  color: var(--text-primary);
  font-size: 22px;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.nav-hamburger:hover {
  background: rgba(255, 255, 255, 0.07);
}

.search-bar {
  display: none;
  padding: 12px 24px;
  border-top: 1px solid var(--border);
  gap: 12px;
}

.search-bar.open {
  display: flex;
}

.search-bar input {
  flex: 1;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: var(--font-main);
  font-size: 14px;
  padding: 10px 16px;
  outline: none;
  transition: var(--transition);
}

.search-bar input:focus {
  border-color: var(--accent-1);
}

.search-bar button {
  background: var(--gradient-main);
  color: #fff;
  padding: 10px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 14px;
}

/* ============================================================
   HERO
============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 130px 80px 80px;
  position: relative;
  overflow: hidden;
  gap: 60px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 0% 50%, rgba(255, 45, 120, 0.12) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 100% 30%, rgba(155, 89, 182, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.particle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.4;
  animation: floatParticle linear infinite;
}

@keyframes floatParticle {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }

  10% {
    opacity: 0.4;
  }

  90% {
    opacity: 0.4;
  }

  100% {
    transform: translateY(-100px) rotate(360deg);
    opacity: 0;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  flex: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 45, 120, 0.12);
  border: 1px solid rgba(255, 45, 120, 0.25);
  color: var(--accent-1);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

.hero-title {
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -2px;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 40px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.stat-item>span:first-child {
  font-size: 36px;
  font-weight: 900;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-item>span:nth-child(2) {
  font-size: 36px;
  font-weight: 900;
  line-height: 1;
  color: var(--text-primary);
}

.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--gradient-main);
  color: #fff;
  padding: 16px 32px;
  border-radius: var(--radius-md);
  font-size: 16px;
  font-weight: 700;
  transition: var(--transition);
  box-shadow: var(--shadow-accent);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 60px rgba(255, 45, 120, 0.5);
}

.btn-primary:active {
  transform: translateY(-1px);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.07);
  color: var(--text-primary);
  padding: 16px 32px;
  border-radius: var(--radius-md);
  font-size: 16px;
  font-weight: 700;
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
}

.hero-visual {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  z-index: 2;
}

.hero-glow {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 45, 120, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.8;
  }

  50% {
    transform: scale(1.2);
    opacity: 0.5;
  }
}

.hero-cards {
  position: relative;
  width: 320px;
  height: 320px;
}

.hero-card {
  position: absolute;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 20px 28px;
  font-size: 14px;
  font-weight: 700;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.hero-card:hover {
  transform: translateY(-5px) scale(1.05);
  border-color: rgba(255, 45, 120, 0.4);
}

.card-1 {
  top: 0;
  left: 0;
  animation: float1 3s ease-in-out infinite;
  background: linear-gradient(135deg, rgba(255, 45, 120, 0.15), transparent);
}

.card-2 {
  top: 20px;
  right: 0;
  animation: float2 3.5s ease-in-out infinite;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.15), transparent);
}

.card-3 {
  bottom: 0;
  left: 30px;
  animation: float3 4s ease-in-out infinite;
  background: linear-gradient(135deg, rgba(155, 89, 182, 0.15), transparent);
}

.card-4 {
  bottom: 30px;
  right: 20px;
  animation: float4 2.8s ease-in-out infinite;
  background: linear-gradient(135deg, rgba(241, 196, 15, 0.15), transparent);
}

@keyframes float1 {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-12px)
  }
}

@keyframes float2 {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-8px)
  }
}

@keyframes float3 {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-15px)
  }
}

@keyframes float4 {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-10px)
  }
}

/* ============================================================
   TICKER
============================================================ */
.ticker-wrap {
  background: var(--gradient-main);
  padding: 12px 0;
  overflow: hidden;
  white-space: nowrap;
}

.ticker {
  display: inline-flex;
  gap: 60px;
  animation: tickerScroll 30s linear infinite;
}

.ticker span {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  flex-shrink: 0;
}

@keyframes tickerScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ============================================================
   SECTIONS COMMON
============================================================ */
.section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-badge {
  display: inline-block;
  background: rgba(255, 45, 120, 0.1);
  border: 1px solid rgba(255, 45, 120, 0.2);
  color: var(--accent-1);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 5px 18px;
  border-radius: 100px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 14px;
  line-height: 1.15;
}

.section-subtitle {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 540px;
  margin: 0 auto;
}

/* ---------- CATEGORIES ---------- */
.categories-section {
  background: var(--bg-secondary);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px;
}

.category-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.category-card:hover {
  border-color: var(--accent-1);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(255, 45, 120, 0.2);
}

.cat-icon {
  font-size: 36px;
}

.cat-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cat-count {
  font-size: 11px;
  color: var(--text-muted);
}

/* ---------- FILTER TABS ---------- */
.filter-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  justify-content: center;
}

.filter-tab {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  padding: 9px 20px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font-main);
  transition: var(--transition);
}

.filter-tab:hover,
.filter-tab.active {
  background: var(--gradient-main);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 20px rgba(255, 45, 120, 0.3);
}

/* ---------- CONTENT GRID ---------- */
.content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.content-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}

.content-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  border-color: rgba(255, 45, 120, 0.3);
}

.content-thumbnail {
  width: 100%;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  position: relative;
  overflow: hidden;
}

.content-thumbnail::before {
  content: '';
  position: absolute;
  inset: 0;
}

.thumb-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.content-card:hover .thumb-overlay {
  opacity: 1;
}

.play-btn {
  width: 56px;
  height: 56px;
  background: rgba(255, 45, 120, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transform: scale(0.8);
  transition: var(--transition);
}

.content-card:hover .play-btn {
  transform: scale(1);
}

.content-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--gradient-main);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 100px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.content-duration {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 4px;
}

.content-info {
  padding: 16px;
}

.content-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.4;
  color: var(--text-primary);
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

.content-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.content-meta-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.content-views {
  font-size: 12px;
  color: var(--text-muted);
}

.content-rating {
  font-size: 12px;
  color: var(--accent-gold);
  font-weight: 600;
}

.content-model {
  font-size: 12px;
  color: var(--accent-1);
  font-weight: 500;
}

.load-more-container {
  text-align: center;
  margin-top: 48px;
}

.btn-load-more {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-secondary);
  padding: 14px 36px;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font-main);
  transition: var(--transition);
}

.btn-load-more:hover {
  border-color: var(--accent-1);
  color: var(--accent-1);
  background: rgba(255, 45, 120, 0.05);
}

/* ============================================================
   PREMIUM PRICING
============================================================ */
.premium-section {
  background: var(--bg-secondary);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  transition: var(--transition);
}

.pricing-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 45, 120, 0.3);
}

.pricing-card.featured-plan {
  border-color: var(--accent-1);
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(255, 45, 120, 0.05) 100%);
  box-shadow: 0 20px 60px rgba(255, 45, 120, 0.2);
}

.plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-main);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  padding: 5px 18px;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-icon {
  font-size: 40px;
  margin-bottom: 16px;
}

.pricing-name {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 12px;
}

.pricing-price {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  margin-bottom: 28px;
}

.currency {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-secondary);
  padding-bottom: 6px;
}

.amount {
  font-size: 52px;
  font-weight: 900;
  line-height: 1;
}

.period {
  font-size: 14px;
  color: var(--text-muted);
  padding-bottom: 8px;
}

.pricing-features {
  list-style: none;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pricing-features li {
  font-size: 13px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.pricing-features li.disabled {
  color: var(--text-muted);
}

.btn-plan {
  width: 100%;
  padding: 14px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font-main);
  transition: var(--transition);
}

.btn-plan:hover {
  border-color: var(--accent-1);
  color: var(--accent-1);
  background: rgba(255, 45, 120, 0.05);
}

.btn-plan-featured {
  background: var(--gradient-main);
  border-color: transparent;
  box-shadow: var(--shadow-accent);
}

.btn-plan-featured:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(255, 45, 120, 0.5);
  color: #fff;
}

/* ============================================================
   MODELS
============================================================ */
.models-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}

.model-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.model-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 45, 120, 0.4);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.4);
}

.model-avatar {
  width: 100%;
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  position: relative;
}

.model-avatar::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(transparent, var(--bg-card));
}

.model-info {
  padding: 16px;
}

.model-name {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}

.model-category {
  font-size: 11px;
  color: var(--accent-1);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.model-followers {
  font-size: 12px;
  color: var(--text-muted);
}

.model-badge {
  display: inline-block;
  background: rgba(255, 45, 120, 0.1);
  border: 1px solid rgba(255, 45, 120, 0.2);
  color: var(--accent-1);
  font-size: 10px;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 100px;
  margin-top: 6px;
}

/* ============================================================
   LIVE SECTION
============================================================ */
.live-section {
  padding: 50px 0;
}

.live-banner {
  background: linear-gradient(135deg, rgba(255, 45, 120, 0.15) 0%, rgba(155, 89, 182, 0.1) 100%);
  border: 1px solid rgba(255, 45, 120, 0.2);
  border-radius: var(--radius-xl);
  padding: 48px 60px;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.live-dot {
  width: 16px;
  height: 16px;
  background: #ff4444;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(255, 68, 68, 0.6);
  animation: livePulse 1.5s ease-out infinite;
}

@keyframes livePulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 68, 68, 0.6);
  }

  70% {
    box-shadow: 0 0 0 20px rgba(255, 68, 68, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 68, 68, 0);
  }
}

.live-text {
  flex: 1;
}

.live-text h2 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 8px;
}

.live-text p {
  color: var(--text-secondary);
  font-size: 14px;
}

.btn-live {
  background: #ff4444;
  color: #fff;
  padding: 14px 32px;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font-main);
  transition: var(--transition);
  box-shadow: 0 8px 30px rgba(255, 68, 68, 0.4);
}

.btn-live:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(255, 68, 68, 0.6);
}

/* ============================================================
   NEWSLETTER
============================================================ */
.newsletter-section {
  padding: 50px 0;
}

.newsletter-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 60px;
  text-align: center;
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(155, 89, 182, 0.05) 100%);
}

.newsletter-card h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 12px;
}

.newsletter-card p {
  color: var(--text-secondary);
  margin-bottom: 28px;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 500px;
  margin: 0 auto 14px;
  flex-wrap: wrap;
}

.newsletter-form input {
  flex: 1;
  min-width: 200px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: 14px;
  font-family: var(--font-main);
  padding: 14px 20px;
  outline: none;
  transition: var(--transition);
}

.newsletter-form input:focus {
  border-color: var(--accent-1);
}

.newsletter-form button {
  background: var(--gradient-main);
  color: #fff;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font-main);
  transition: var(--transition);
}

.newsletter-form button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-accent);
}

.newsletter-note {
  font-size: 12px;
  color: var(--text-muted);
}

/* ============================================================
   FOOTER
============================================================ */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.7;
  margin: 16px 0 20px;
  max-width: 260px;
}

.footer-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.badge {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
}

.footer-links h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.footer-links a {
  display: block;
  color: var(--text-muted);
  font-size: 13px;
  margin-bottom: 10px;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--accent-1);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 28px;
  text-align: center;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 12px;
  margin-bottom: 8px;
}

.footer-disclaimer {
  max-width: 700px;
  margin: 0 auto !important;
  line-height: 1.7;
}

/* ============================================================
   BACK TO TOP
============================================================ */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: var(--gradient-main);
  color: #fff;
  border-radius: 50%;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  z-index: 50;
  box-shadow: 0 8px 30px rgba(255, 45, 120, 0.4);
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: all;
}

.back-to-top:hover {
  transform: translateY(-4px);
}

/* ============================================================
   MODAL
============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.modal-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 48px;
  max-width: 500px;
  width: 100%;
  text-align: center;
  position: relative;
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-overlay.open .modal-box {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-secondary);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 14px;
  transition: var(--transition);
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--text-primary);
}

.modal-video-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.play-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-main);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #fff;
  box-shadow: var(--shadow-accent);
}

#modal-title {
  font-size: 18px;
  font-weight: 700;
}

.modal-lock {
  color: var(--text-muted);
  font-size: 13px;
}

/* ============================================================
   SCROLLBAR
============================================================ */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 45, 120, 0.4);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent-1);
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
  .hero {
    padding: 120px 40px 80px;
  }

  .hero-visual {
    display: none;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .hero {
    padding: 100px 24px 60px;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-stats {
    gap: 20px;
  }

  .stat-item>span:first-child,
  .stat-item>span:nth-child(2) {
    font-size: 28px;
  }

  .categories-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .content-grid {
    grid-template-columns: 1fr 1fr;
  }

  .models-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .live-banner {
    flex-direction: column;
    padding: 36px 28px;
    text-align: center;
  }

  .newsletter-card {
    padding: 40px 24px;
  }

  .age-gate__card {
    padding: 36px 24px;
  }

  .age-gate__buttons {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .content-grid {
    grid-template-columns: 1fr;
  }

  .models-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 16px;
  }

  .stat-divider {
    display: none;
  }
}

/* ============================================================
   SIGN UP BUTTON (Navbar)
============================================================ */
.btn-signup-nav {
  background: transparent;
  color: var(--text-primary);
  padding: 9px 20px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 700;
  border: 1px solid rgba(255, 45, 120, 0.5);
  transition: var(--transition);
  letter-spacing: 0.3px;
}

.btn-signup-nav:hover {
  background: rgba(255, 45, 120, 0.12);
  border-color: var(--accent-1);
  color: var(--accent-1);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(255, 45, 120, 0.25);
}

/* ============================================================
   SIGN UP MODAL
============================================================ */
.signup-overlay {
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.signup-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.signup-modal {
  position: relative;
  background: var(--bg-card);
  border: 1px solid rgba(255, 45, 120, 0.25);
  border-radius: var(--radius-xl);
  padding: 48px 40px 40px;
  max-width: 460px;
  width: 100%;
  text-align: center;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.8), 0 0 80px rgba(255, 45, 120, 0.12);
  transform: scale(0.88) translateY(24px);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.35s ease;
  opacity: 0;
}

.signup-overlay.open .signup-modal {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.signup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-secondary);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.signup-close:hover {
  background: rgba(255, 45, 120, 0.15);
  color: var(--accent-1);
  transform: scale(1.1) rotate(90deg);
}

.signup-icon {
  font-size: 52px;
  margin-bottom: 20px;
  display: block;
  filter: drop-shadow(0 0 20px rgba(255, 45, 120, 0.5));
  animation: bounceIcon 2s ease-in-out infinite;
}

@keyframes bounceIcon {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

.signup-title {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 10px;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.signup-subtitle {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 340px;
  margin-left: auto;
  margin-right: auto;
}

.signup-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 14px;
}

.signup-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.signup-input-icon {
  position: absolute;
  left: 16px;
  font-size: 18px;
  pointer-events: none;
  z-index: 1;
}

.signup-input-wrap input {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-family: var(--font-main);
  font-size: 15px;
  padding: 15px 18px 15px 50px;
  outline: none;
  transition: var(--transition);
}

.signup-input-wrap input::placeholder {
  color: var(--text-muted);
}

.signup-input-wrap input:focus {
  border-color: var(--accent-1);
  background: rgba(255, 45, 120, 0.05);
  box-shadow: 0 0 0 3px rgba(255, 45, 120, 0.12);
}

.btn-signup-submit {
  width: 100%;
  background: var(--gradient-main);
  color: #fff;
  padding: 16px 24px;
  border-radius: var(--radius-md);
  font-size: 16px;
  font-weight: 700;
  font-family: var(--font-main);
  transition: var(--transition);
  box-shadow: 0 8px 30px rgba(255, 45, 120, 0.35);
  letter-spacing: 0.3px;
}

.btn-signup-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 50px rgba(255, 45, 120, 0.55);
}

.btn-signup-submit:active {
  transform: translateY(-1px);
}

.signup-note {
  font-size: 12px;
  color: var(--text-muted);
}

/* -- Success State -- */
.success-animation {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

.success-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--gradient-main);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: #fff;
  font-weight: 900;
  box-shadow: 0 0 50px rgba(255, 45, 120, 0.5);
  animation: successPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes successPop {
  from {
    transform: scale(0);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.success-badge {
  display: inline-block;
  background: rgba(39, 200, 100, 0.1);
  border: 1px solid rgba(39, 200, 100, 0.3);
  color: #27c864;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 100px;
  margin-top: 20px;
  letter-spacing: 0.3px;
}

/* ============================================================
   HERO MULTI-LAYERED IMAGERY
============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 100px 20px;
}

/* 1. Background Layer */
.hero-bg-layer {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
  filter: blur(8px) saturate(1.2);
  transform: scale(1.1);
}

.hero-overlay-dark {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 0%, var(--bg-primary) 85%);
}

/* 2. Side Scrolling Strips */
.hero-scroll {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 120px;
  height: 80vh;
  overflow: hidden;
  z-index: 1;
  opacity: 0.5;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
  transition: opacity 0.3s ease;
}

.hero-scroll:hover {
  opacity: 0.8;
}

.hero-scroll-left {
  left: 40px;
}

.hero-scroll-right {
  right: 40px;
}

.hero-scroll-track {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.hero-scroll-left .hero-scroll-track {
  animation: scrollUpLong 25s linear infinite;
}

.hero-scroll-right .hero-scroll-track {
  animation: scrollDownLong 30s linear infinite;
}

.hero-scroll:hover .hero-scroll-track {
  animation-play-state: paused;
}

@keyframes scrollUpLong {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-50%);
  }
}

@keyframes scrollDownLong {
  0% {
    transform: translateY(-50%);
  }

  100% {
    transform: translateY(0);
  }
}

.hero-scroll-track img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(255, 45, 120, 0.2);
}

/* 3. Main Banner */
.hero-main-banner {
  width: 100%;
  max-width: 600px;
  margin: 30px auto;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(255, 45, 120, 0.3);
  animation: bannerFloat 6s ease-in-out infinite;
}

.hero-main-banner img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}

.hero-main-banner:hover img {
  transform: scale(1.05);
}

.banner-border-glow {
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 60px rgba(255, 45, 120, 0.2);
  pointer-events: none;
}

@keyframes bannerFloat {

  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-10px) scale(1.02);
  }
}

/* Responsiveness */
@media (max-width: 1200px) {
  .hero-scroll {
    width: 90px;
  }

  .hero-scroll-left {
    left: 15px;
  }

  .hero-scroll-right {
    right: 15px;
  }
}

@media (max-width: 900px) {
  .hero-scroll {
    display: none;
  }

  .hero-main-banner {
    max-width: 90%;
  }
}