/* ==========================================================================
  STRIPFOR.ME - Premium Dark Neon Glassmorphic Stylesheet
  Designed for High Conversion SEO Pre-Lander (StripEase.cc)
  ========================================================================== */

:root {
  /* Color Palette */
  --bg-dark: #07080c;
  --bg-card: rgba(18, 20, 32, 0.75);
  --bg-card-hover: rgba(28, 31, 48, 0.88);
  --bg-glass: rgba(255, 255, 255, 0.03);
  
  --primary-magenta: #ff007a;
  --primary-rose: #ff2a85;
  --primary-purple: #7928ca;
  --accent-cyan: #00f2fe;
  --accent-green: #00f5a0;
  --accent-gold: #ffb703;

  --gradient-primary: linear-gradient(135deg, #ff007a 0%, #7928ca 100%);
  --gradient-glow: linear-gradient(135deg, rgba(255, 0, 122, 0.4) 0%, rgba(121, 40, 202, 0.4) 100%);
  --gradient-gold: linear-gradient(135deg, #ffb703 0%, #fb8500 100%);
  
  --text-main: #f3f4f6;
  --text-muted: #9ca3af;
  --text-dim: #6b7280;
  
  --border-color: rgba(255, 255, 255, 0.08);
  --border-highlight: rgba(255, 0, 122, 0.4);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  --shadow-subtle: 0 10px 30px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 25px rgba(255, 0, 122, 0.35);

  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
}

/* Reset & Global */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  background-image: 
    radial-gradient(circle at 15% 20%, rgba(255, 0, 122, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 85% 70%, rgba(121, 40, 202, 0.1) 0%, transparent 45%);
  background-attachment: fixed;
}

a {
  color: inherit;
  text-decoration: none;
}

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

/* Utility Containers */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.text-center { text-align: center; }
.text-pink { color: var(--primary-rose); }
.text-green { color: var(--accent-green); }
.text-neon { color: #ffe600; }
.margin-top-sm { margin-top: 15px; }

/* Buttons & Badges */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 24px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--gradient-primary);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(255, 0, 122, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 0, 122, 0.5);
}

.btn-glow {
  position: relative;
  z-index: 1;
}

.btn-glow::before {
  content: '';
  position: absolute;
  top: -2px; left: -2px; right: -2px; bottom: -2px;
  background: var(--gradient-primary);
  border-radius: var(--radius-md);
  z-index: -1;
  filter: blur(10px);
  opacity: 0.7;
  transition: opacity 0.3s;
}

.btn-glow:hover::before {
  opacity: 1;
}

.btn-outline {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  color: var(--text-main);
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--primary-rose);
  color: #ffffff;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.btn-gradient {
  background: var(--gradient-gold);
  color: #000;
}

.btn-hero {
  padding: 16px 32px;
  font-size: 1.1rem;
}

.btn-hero-secondary {
  padding: 16px 28px;
  font-size: 1.05rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.85rem;
  border-radius: var(--radius-sm);
}

.btn-lg {
  padding: 18px 36px;
  font-size: 1.15rem;
}

/* Keyframe Animations */
@keyframes pulseGlow {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 0, 122, 0.6); }
  70% { transform: scale(1.03); box-shadow: 0 0 0 15px rgba(255, 0, 122, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 0, 122, 0); }
}

.pulse-btn {
  animation: pulseGlow 2.5s infinite;
}

.pulse-ring {
  width: 10px;
  height: 10px;
  background-color: var(--accent-green);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 0 rgba(0, 245, 160, 0.7);
  animation: pulseRing 1.8s infinite;
}

@keyframes pulseRing {
  0% { box-shadow: 0 0 0 0 rgba(0, 245, 160, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(0, 245, 160, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 245, 160, 0); }
}

/* Announcement Bar */
.announcement-bar {
  background: linear-gradient(90deg, #7928ca 0%, #ff007a 50%, #7928ca 100%);
  padding: 8px 0;
  font-size: 0.88rem;
  font-weight: 600;
  color: #ffffff;
}

.announcement-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.announcement-link {
  text-decoration: underline;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

/* Header & Navbar */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 8, 12, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  padding: 14px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand-logo {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.8rem;
  letter-spacing: -0.5px;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.logo-accent {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.logo-dot {
  color: #ffffff;
}

.whitelabel-tag {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.08);
  padding: 2px 8px;
  border-radius: var(--radius-full);
  margin-left: 8px;
}

.live-counter-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-color);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
}

.header-search {
  position: relative;
  flex: 1;
  max-width: 320px;
}

.header-search input {
  width: 100%;
  padding: 10px 16px 10px 40px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-full);
  color: #fff;
  font-size: 0.9rem;
  outline: none;
  transition: all 0.3s;
}

.header-search input:focus {
  border-color: var(--primary-rose);
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 0 15px rgba(255, 0, 122, 0.2);
}

.search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 0.9rem;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Language Selector Dropdown */
.lang-selector-dropdown {
  position: relative;
  display: inline-block;
}

.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-full);
  color: var(--text-main);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.lang-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--primary-rose);
}

.lang-arrow {
  font-size: 0.75rem;
  color: var(--text-muted);
  transition: transform 0.3s;
}

.lang-selector-dropdown.active .lang-arrow {
  transform: rotate(180deg);
}

.lang-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 210px;
  max-height: 300px;
  overflow-y: auto;
  background: #0d0e15;
  border: 1px solid var(--border-highlight);
  border-radius: var(--radius-md);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.95), 0 0 20px rgba(255, 0, 122, 0.3);
  padding: 6px;
  display: none;
  flex-direction: column;
  gap: 2px;
  z-index: 99999;
  scrollbar-width: thin;
  scrollbar-color: var(--primary-rose) rgba(255, 255, 255, 0.05);
}

.lang-dropdown-menu::-webkit-scrollbar {
  width: 6px;
}

.lang-dropdown-menu::-webkit-scrollbar-thumb {
  background: var(--primary-rose);
  border-radius: 4px;
}

.lang-dropdown-menu.active {
  display: flex;
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.lang-option:hover {
  background: rgba(255, 0, 122, 0.15);
  color: #ffffff;
}

.lang-option.selected {
  background: var(--gradient-primary);
  color: #ffffff;
  font-weight: 700;
}

/* Hero Section */
.hero-section {
  position: relative;
  padding: 40px 0 20px;
  overflow: hidden;
}

.hero-bg-glow {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 0, 122, 0.18) 0%, rgba(121, 40, 202, 0.08) 50%, transparent 80%);
  filter: blur(60px);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(255, 0, 122, 0.1);
  border: 1px solid var(--border-highlight);
  border-radius: var(--radius-full);
  color: var(--primary-rose);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 30px;
  max-width: 540px;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 35px;
}

.hero-trust-bullets {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.trust-item i {
  color: var(--accent-green);
}

/* Hero Visual Card & Player Embed */
.hero-visual-card {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-player-wrapper {
  position: relative;
  width: 100%;
  max-width: 550px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-highlight);
  box-shadow: var(--shadow-glow);
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 309px;
}

.awe-player-box {
  width: 100% !important;
  max-width: 550px;
  height: 309px !important;
  display: inline-block;
}

.awe-player-box iframe {
  width: 100% !important;
  height: 100% !important;
  border: none !important;
  border-radius: var(--radius-lg);
}

.hero-img-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-highlight);
  box-shadow: var(--shadow-glow);
}

.hero-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.hero-img-wrapper:hover .hero-img {
  transform: scale(1.03);
}

.hero-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 60%);
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero-stream-status {
  display: flex;
  gap: 10px;
}

.badge {
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.badge-live {
  background: #e63946;
  color: #fff;
}

.badge-dark {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  color: #fff;
}

.badge-primary {
  background: rgba(255, 0, 122, 0.2);
  color: var(--primary-rose);
  border: 1px solid var(--border-highlight);
}

.hero-stream-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hero-model-name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
}

/* Filter & Categories Section */
.filter-section {
  padding: 10px 0 20px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 25px;
  flex-wrap: wrap;
  gap: 15px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1rem;
  margin-top: 4px;
}

.quick-stats-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 245, 160, 0.08);
  border: 1px solid rgba(0, 245, 160, 0.2);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
}

.category-pills {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 10px;
  scrollbar-width: thin;
}

.pill-btn {
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-full);
  color: var(--text-muted);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.pill-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.pill-btn.active {
  background: var(--gradient-primary);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(255, 0, 122, 0.3);
}

/* Models Catalog Grid */
.catalog-section {
  padding: 20px 0 60px;
}

.models-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.model-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  backdrop-filter: blur(16px);
  cursor: pointer;
}

.model-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-highlight);
  box-shadow: var(--shadow-glow);
  background: var(--bg-card-hover);
}

.card-img-wrapper {
  position: relative;
  width: 100%;
  height: 320px;
  overflow: hidden;
}

.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.model-card:hover .card-img {
  transform: scale(1.06);
}

.card-top-badges {
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 2;
}

.card-hover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 3;
}

.model-card:hover .card-hover-overlay {
  opacity: 1;
}

.play-preview-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 0 25px rgba(255, 0, 122, 0.8);
  cursor: pointer;
  transition: transform 0.2s;
}

.play-preview-btn:hover {
  transform: scale(1.1);
}

.card-content {
  padding: 16px;
}

.model-name-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.card-model-name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
}

.model-flag {
  font-size: 1rem;
}

.card-tags {
  display: flex;
  gap: 6px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.tag-pill {
  font-size: 0.72rem;
  padding: 2px 8px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-sm);
  color: var(--text-muted);
}

.card-footer {
  display: flex;
  gap: 10px;
}

.card-footer .btn {
  flex: 1;
}

.load-more-wrapper {
  margin-top: 40px;
  text-align: center;
}

/* Features Section */
.features-section {
  padding: 80px 0;
  background: rgba(255, 255, 255, 0.01);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.section-intro {
  max-width: 650px;
  margin: 0 auto 50px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 30px 24px;
  text-align: center;
  transition: transform 0.3s;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-highlight);
}

.feature-icon {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: rgba(255, 0, 122, 0.1);
  border: 1px solid var(--border-highlight);
  color: var(--primary-rose);
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
}

/* SEO Article Section */
.seo-article-section {
  padding: 70px 0;
}

.seo-content-box {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.seo-content-box h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.seo-content-box h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  margin: 25px 0 12px;
  color: var(--primary-rose);
}

.seo-content-box p {
  color: var(--text-muted);
  margin-bottom: 15px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin: 25px 0;
}

.step-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  padding: 20px;
  border-radius: var(--radius-md);
}

.step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: #fff;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.step-card h4 {
  font-family: var(--font-heading);
  margin-bottom: 8px;
}

/* FAQ Accordion */
.faq-section {
  padding: 60px 0;
}

.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 20px;
  background: transparent;
  border: none;
  color: var(--text-main);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question i {
  transition: transform 0.3s;
  color: var(--primary-rose);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 20px 20px;
  color: var(--text-muted);
  font-size: 0.95rem;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

/* CTA Banner Section */
.cta-banner-section {
  padding: 60px 0 80px;
}

.cta-banner-box {
  background: linear-gradient(135deg, rgba(255, 0, 122, 0.2) 0%, rgba(121, 40, 202, 0.3) 100%);
  border: 1px solid var(--border-highlight);
  border-radius: var(--radius-lg);
  padding: 60px 20px;
  text-align: center;
  box-shadow: var(--shadow-glow);
}

.cta-content h2 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  margin-bottom: 12px;
}

.cta-content p {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 20px;
}

/* Footer */
.site-footer {
  background: #040508;
  border-top: 1px solid var(--border-color);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-desc {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin: 15px 0;
}

.adult-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: rgba(230, 57, 70, 0.15);
  border: 1px solid rgba(230, 57, 70, 0.3);
  color: #e63946;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 800;
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 16px;

}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: color 0.2s;
}

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

.compliance-text {
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-bottom: 12px;
}

.legal-links {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 20px;
  font-size: 0.85rem;
  color: var(--text-dim);
}

/* Modals System */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 20px;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

body.age-unverified {
  overflow: hidden;
}

body.age-unverified > *:not(#ageModal) {
  filter: blur(25px);
  pointer-events: none;
  user-select: none;
}

.modal-card {
  background: #0f111a;
  border: 1px solid var(--border-highlight);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(0,0,0,0.8);
  position: relative;
  max-width: 520px;
  width: 100%;
  padding: 35px;
  text-align: center;
}

.age-badge-icon {
  font-size: 2rem;
  color: var(--accent-gold);
  margin-bottom: 10px;
}

.age-card h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.age-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 25px;
}

.modal-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.age-disclaimer {
  font-size: 0.75rem !important;
  color: var(--text-dim) !important;
  margin-top: 15px;
}

/* Preview Modal Specifics */
.preview-card {
  max-width: 720px;
  padding: 0;
  overflow: hidden;
  text-align: left;
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0,0,0,0.6);
  border: 1px solid var(--border-color);
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preview-header {
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.model-info-quick {
  display: flex;
  align-items: center;
  gap: 10px;
}

.live-dot-pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #e63946;
  box-shadow: 0 0 10px #e63946;
}

.video-preview-container {
  position: relative;
  height: 360px;
  background: #000;
}

.video-preview-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 60%);
  pointer-events: none;
}

.video-live-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(230, 57, 70, 0.9);
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 800;
}

.stream-interactive-controls {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sound-toggle {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  padding: 8px 14px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  cursor: pointer;
  border: 1px solid var(--border-color);
}

.preview-footer {
  padding: 20px 24px;
}

.preview-cta-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
  background: rgba(255, 183, 3, 0.08);
  border: 1px solid rgba(255, 183, 3, 0.3);
  padding: 12px 18px;
  border-radius: var(--radius-md);
}

.bonus-tag {
  font-size: 0.9rem;
  color: var(--accent-gold);
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-title {
    font-size: 2.4rem;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .header-search {
    display: none;
  }
  .hero-title {
    font-size: 2rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .cta-content h2 {
    font-size: 1.6rem;
  }
  .preview-cta-bar {
    flex-direction: column;
    gap: 10px;
  }
}

/* --- VIP 20% Extra Credits Promo Banner --- */
.vip-promo-banner {
  background: linear-gradient(135deg, #430b55 0%, #1a0524 100%);
  border: 1px solid rgba(255, 255, 38, 0.4);
  box-shadow: 0 10px 35px rgba(67, 11, 85, 0.6), 0 0 25px rgba(255, 255, 38, 0.15);
  border-radius: var(--radius-lg);
  padding: 20px 30px;
  margin: 30px auto 40px auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}

.vip-promo-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 38, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.vip-promo-content {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 2;
}

.vip-promo-badge {
  background: #ffff26;
  color: #212121;
  font-weight: 900;
  font-size: 1.3rem;
  padding: 10px 18px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(255, 255, 38, 0.5);
  letter-spacing: 0.5px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
}

.vip-promo-text h3 {
  color: #ffffff;
  font-size: 1.2rem;
  margin-bottom: 4px;
  font-weight: 700;
}

.vip-promo-text p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.92rem;
  margin: 0;
}

.vip-promo-btn {
  background: #ffff26;
  color: #212121;
  font-weight: 800;
  padding: 12px 26px;
  border-radius: 50px;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 255, 38, 0.3);
  position: relative;
  z-index: 2;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.vip-promo-btn:hover {
  transform: translateY(-2px) scale(1.04);
  background: #ffffff;
  color: #430b55;
  box-shadow: 0 6px 25px rgba(255, 255, 255, 0.6);
}

@media (max-width: 768px) {
  .vip-promo-banner {
    flex-direction: column;
    text-align: center;
    padding: 20px 18px;
  }
  .vip-promo-content {
    flex-direction: column;
    text-align: center;
  }
}

