/**
 * 18.network Theme - Hot Camgirl Style
 * Sexy, modern cam-site aesthetic
 * Primary: Hot pink (#ff0066), Secondary: Deep purple (#6600cc)
 */

/* ========================================
   CSS VARIABLES & BASE
   ======================================== */
:root {
  /* Core Colors - Hot Camgirl Theme */
  --bg-primary: #0a0a0f;
  --bg-secondary: #12121a;
  --bg-card: #161622;
  --bg-hover: #1e1e2e;
  
  /* Hot Accents */
  --hot-pink: #ff0066;
  --hot-pink-light: #ff3385;
  --hot-pink-dark: #cc0052;
  --deep-purple: #6600cc;
  --deep-purple-light: #9933ff;
  --neon-magenta: #ff00ff;
  
  /* Text Colors */
  --text-primary: #ffffff;
  --text-secondary: #b8b8c8;
  --text-muted: #8888a0;
  
  /* Borders & Effects */
  --border-color: #2a2a3e;
  --border-glow: rgba(255, 0, 102, 0.3);
  --glow-pink: 0 0 20px rgba(255, 0, 102, 0.4);
  --glow-purple: 0 0 30px rgba(102, 0, 204, 0.3);
  
  /* Gradients */
  --gradient-hot: linear-gradient(135deg, var(--hot-pink) 0%, var(--deep-purple) 100%);
  --gradient-dark: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
  --gradient-card: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.8) 100%);
  
  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-xxl: 3rem;
  
  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  
  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-normal: 250ms ease;
  --transition-slow: 350ms ease;
}

/* ========================================
   RESET & BASE STYLES
   ======================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-primary);
  background-image: 
    radial-gradient(ellipse at 20% 20%, rgba(255, 0, 102, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(102, 0, 204, 0.08) 0%, transparent 50%);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

/* ========================================
   CONTAINER & LAYOUT
   ======================================== */
.container {
  width: 100%;
  max-width: 1600px;
  margin-inline: auto;
  padding-inline: var(--space-md);
}

@media (min-width: 768px) {
  .container {
    padding-inline: var(--space-lg);
  }
}

@media (min-width: 1200px) {
  .container {
    padding-inline: var(--space-xl);
  }
}

/* ========================================
   HEADER - Sticky Sexy Navigation
   ======================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 10, 15, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  gap: var(--space-md);
}

.brand {
  font-size: 1.75rem;
  font-weight: 800;
  background: var(--gradient-hot);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
  text-shadow: 0 0 30px rgba(255, 0, 102, 0.3);
}

/* Search Bar */
.header-search {
  flex: 1;
  max-width: 400px;
  position: relative;
}

.search-input {
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 2.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-full);
  color: var(--text-primary);
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}

.search-input:focus {
  outline: none;
  border-color: var(--hot-pink);
  box-shadow: 0 0 0 3px rgba(255, 0, 102, 0.2);
}

.search-input::placeholder {
  color: var(--text-muted);
}

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

/* Navigation Menu */
.site-nav {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.menu {
  display: flex;
  gap: var(--space-sm);
  list-style: none;
}

.menu a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius-full);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

.menu a:hover,
.menu .current-menu-item a {
  color: var(--text-primary);
  background: rgba(255, 0, 102, 0.1);
}

.menu .live-link a {
  background: rgba(255, 0, 0, 0.15);
  color: #ff4444;
}

.menu .live-link a::before {
  content: '';
  width: 8px;
  height: 8px;
  background: #ff0000;
  border-radius: 50%;
  animation: pulse-live 2s infinite;
}

@keyframes pulse-live {
  0%, 100% { 
    box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7);
    transform: scale(1);
  }
  50% { 
    box-shadow: 0 0 0 6px rgba(255, 0, 0, 0);
    transform: scale(1.1);
  }
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.btn-login,
.btn-join {
  padding: 0.6rem 1.5rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--transition-fast);
}

.btn-login {
  color: var(--text-secondary);
  border: 1px solid var(--border-color);
}

.btn-login:hover {
  color: var(--text-primary);
  border-color: var(--hot-pink);
}

.btn-join {
  background: var(--gradient-hot);
  color: white;
  box-shadow: 0 4px 15px rgba(255, 0, 102, 0.3);
}

.btn-join:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 0, 102, 0.4);
}

/* ========================================
   CATEGORY PILLS
   ======================================== */
.category-bar {
  position: sticky;
  top: 70px;
  z-index: 999;
  background: rgba(10, 10, 15, 0.9);
  backdrop-filter: blur(10px);
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--border-color);
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.category-bar::-webkit-scrollbar {
  display: none;
}

.category-pills {
  display: flex;
  gap: var(--space-sm);
  padding-inline: var(--space-md);
}

.category-pill {
  flex-shrink: 0;
  padding: 0.5rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-full);
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.category-pill:hover,
.category-pill.active {
  background: rgba(255, 0, 102, 0.15);
  border-color: var(--hot-pink);
  color: var(--text-primary);
}

.category-pill.all {
  background: var(--gradient-hot);
  border-color: transparent;
  color: white;
}

/* ========================================
   FILTER TABS
   ======================================== */
.filter-tabs {
  display: flex;
  gap: var(--space-xs);
  margin-bottom: var(--space-lg);
  padding: 0.25rem;
  background: var(--bg-card);
  border-radius: var(--radius-full);
  width: fit-content;
}

.filter-tab {
  padding: 0.6rem 1.5rem;
  border-radius: var(--radius-full);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition-fast);
  border: none;
  background: transparent;
}

.filter-tab:hover {
  color: var(--text-primary);
}

.filter-tab.active {
  background: var(--gradient-hot);
  color: white;
  box-shadow: 0 4px 15px rgba(255, 0, 102, 0.3);
}

/* ========================================
   SECTION HEADERS
   ======================================== */
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-lg);
  flex-wrap: wrap;
  gap: var(--space-md);
}

.section-title {
  font-size: 1.75rem;
  font-weight: 700;
  background: linear-gradient(135deg, #fff 0%, var(--hot-pink-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-count {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.section-count span {
  color: var(--hot-pink);
  font-weight: 600;
}

/* ========================================
   MODEL GRID - Hot Camgirl Layout
   ======================================== */
.model-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-sm);
}

@media (min-width: 640px) {
  .model-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
  }
}

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

@media (min-width: 1400px) {
  .model-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: var(--space-md);
  }
}

/* ========================================
   MODEL CARD - Hot Style
   ======================================== */
.model-card {
  position: relative;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-normal);
  border: 1px solid var(--border-color);
}

.model-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.9) 100%);
  z-index: 2;
  pointer-events: none;
  opacity: 0.7;
  transition: opacity var(--transition-normal);
}

.model-card:hover {
  transform: scale(1.03);
  border-color: var(--hot-pink);
  box-shadow: var(--glow-pink), 0 20px 40px rgba(0,0,0,0.4);
  z-index: 10;
}

.model-card:hover::before {
  opacity: 0.9;
}

.model-card-link {
  display: block;
  position: relative;
}

/* Card Image */
.model-card-image-wrap {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.model-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.model-card:hover .model-card-image {
  transform: scale(1.1);
}

/* Live Badge */
.live-badge {
  position: absolute;
  top: var(--space-sm);
  left: var(--space-sm);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.75rem;
  background: rgba(255, 0, 0, 0.9);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 3;
  animation: pulse-badge 2s infinite;
}

.live-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-badge {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.5); }
  50% { box-shadow: 0 0 0 8px rgba(255, 0, 0, 0); }
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.2); }
}

/* HD Badge */
.hd-badge {
  position: absolute;
  top: var(--space-sm);
  right: var(--space-sm);
  padding: 0.25rem 0.5rem;
  background: rgba(255, 215, 0, 0.9);
  border-radius: var(--radius-sm);
  font-size: 0.7rem;
  font-weight: 800;
  color: #000;
  z-index: 3;
}

/* Watch Now Overlay */
.watch-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(2px);
  opacity: 0;
  transition: opacity var(--transition-normal);
  z-index: 4;
}

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

.watch-btn {
  padding: 0.75rem 1.5rem;
  background: var(--gradient-hot);
  border-radius: var(--radius-full);
  color: white;
  font-weight: 700;
  font-size: 0.9rem;
  transform: translateY(10px);
  transition: all var(--transition-normal);
  box-shadow: 0 4px 20px rgba(255, 0, 102, 0.4);
}

.model-card:hover .watch-btn {
  transform: translateY(0);
}

/* Card Info */
.model-card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-md);
  z-index: 3;
}

.model-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-xs);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Card Stats */
.model-card-stats {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-sm);
}

.stat {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.stat-icon {
  font-size: 0.9rem;
}

.stat.likes .stat-icon {
  color: var(--hot-pink);
}

.stat.views .stat-icon {
  color: var(--deep-purple-light);
}

/* Card Tags */
.model-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.tag {
  padding: 0.2rem 0.6rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.tag.age {
  background: rgba(255, 0, 102, 0.2);
  color: var(--hot-pink-light);
}

.tag.featured {
  background: rgba(255, 215, 0, 0.2);
  color: #ffd700;
}

/* ========================================
   SINGLE MODEL PAGE - Hot Layout
   ======================================== */
.single-model {
  padding: var(--space-xl) 0;
}

/* Hero Section */
.model-hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xxl);
}

@media (min-width: 1024px) {
  .model-hero {
    grid-template-columns: 1fr 400px;
  }
}

/* Hero Image */
.model-hero-media {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.model-hero-media img,
.model-hero-media iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
}

/* Floating Join Button */
.join-fab {
  position: fixed;
  bottom: var(--space-lg);
  right: var(--space-lg);
  z-index: 100;
  padding: 1rem 2rem;
  background: var(--gradient-hot);
  border: none;
  border-radius: var(--radius-full);
  color: white;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(255, 0, 102, 0.4), var(--glow-pink);
  transition: all var(--transition-fast);
  animation: float 3s ease-in-out infinite;
}

.join-fab:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 30px rgba(255, 0, 102, 0.5);
}

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

/* Model Info Sidebar */
.model-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
}

.model-name {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: var(--space-xs);
  background: linear-gradient(135deg, #fff 0%, var(--hot-pink-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.model-username {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: var(--space-lg);
}

/* Stats Bar */
.model-stats-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  padding: var(--space-lg);
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-lg);
}

.stat-item {
  text-align: center;
}

.stat-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-primary);
  display: block;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.stat-item.online .stat-value {
  color: #00ff88;
}

/* Action Buttons */
.model-actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.btn-primary,
.btn-secondary {
  padding: 1rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: none;
}

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

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 0, 102, 0.4);
}

.btn-secondary {
  background: transparent;
  border: 2px solid var(--border-color);
  color: var(--text-secondary);
}

.btn-secondary:hover {
  border-color: var(--hot-pink);
  color: var(--text-primary);
}

/* Bio Section */
.model-bio {
  margin-bottom: var(--space-lg);
}

.bio-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-sm);
}

.bio-text {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* Model Tags */
.model-tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.model-tag {
  padding: 0.5rem 1rem;
  background: rgba(255, 0, 102, 0.1);
  border: 1px solid rgba(255, 0, 102, 0.3);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  color: var(--hot-pink-light);
  transition: all var(--transition-fast);
}

.model-tag:hover {
  background: rgba(255, 0, 102, 0.2);
  border-color: var(--hot-pink);
}

/* ========================================
   RELATED MODELS CAROUSEL
   ======================================== */
.related-models {
  padding: var(--space-xxl) 0;
  border-top: 1px solid var(--border-color);
}

.related-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: var(--space-lg);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.related-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--border-color) 0%, transparent 100%);
}

/* ========================================
   AFFILIATE EMBED
   ======================================== */
.affiliate-section {
  margin-top: var(--space-xl);
}

.affiliate-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-md);
}

.affiliate-title {
  font-size: 1.25rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.live-dot {
  width: 10px;
  height: 10px;
  background: #00ff00;
  border-radius: 50%;
  animation: pulse-live 2s infinite;
}

.affiliate-iframe-ratio {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
}

.affiliate-iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ========================================
   PAGINATION
   ======================================== */
.pagination-wrap {
  margin-top: var(--space-xxl);
  display: flex;
  justify-content: center;
}

.pagination .nav-links {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  justify-content: center;
}

.pagination .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  font-weight: 500;
  transition: all var(--transition-fast);
}

.pagination .page-numbers:hover {
  border-color: var(--hot-pink);
  color: var(--text-primary);
}

.pagination .current {
  background: var(--gradient-hot);
  border-color: transparent;
  color: white;
  box-shadow: 0 4px 15px rgba(255, 0, 102, 0.3);
}

.pagination .dots {
  border-color: transparent;
  background: transparent;
}

/* ========================================
   FOOTER
   ======================================== */
.site-footer {
  margin-top: var(--space-xxl);
  padding: var(--space-xl) 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  text-align: center;
}

.footer-brand {
  font-size: 1.5rem;
  font-weight: 800;
  background: var(--gradient-hot);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-links {
  display: flex;
  gap: var(--space-lg);
  flex-wrap: wrap;
  justify-content: center;
}

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

.footer-links a:hover {
  color: var(--hot-pink-light);
}

.footer-copyright {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* ========================================
   LOADING & ANIMATIONS
   ======================================== */
.loading-shimmer {
  background: linear-gradient(
    90deg,
    var(--bg-card) 25%,
    var(--bg-hover) 50%,
    var(--bg-card) 75%
  );
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Pulse Animation for Live Elements */
.pulse-glow {
  animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 5px var(--hot-pink), 0 0 10px var(--hot-pink); }
  50% { box-shadow: 0 0 20px var(--hot-pink), 0 0 30px var(--hot-pink); }
}

/* ========================================
   UTILITIES
   ======================================== */
.section-space {
  padding: var(--space-xl) 0;
}

.section-space-sm {
  padding: var(--space-lg) 0;
}

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

.glow-text {
  text-shadow: 0 0 20px rgba(255, 0, 102, 0.5);
}

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: var(--border-color);
  border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--hot-pink);
}

/* ========================================
   MOBILE RESPONSIVE
   ======================================== */
@media (max-width: 768px) {
  .header-search {
    display: none;
  }
  
  .menu {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .model-name {
    font-size: 1.5rem;
  }
  
  .model-stats-bar {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
  }
  
  .join-fab {
    bottom: var(--space-md);
    right: var(--space-md);
    padding: 0.875rem 1.5rem;
    font-size: 0.9rem;
  }
  
  .section-title {
    font-size: 1.35rem;
  }
}

/* Mobile Menu */
.mobile-menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: 1.25rem;
  cursor: pointer;
}

/* ========================================
   SEARCH OVERLAY
   ======================================== */
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 15, 0.95);
  backdrop-filter: blur(10px);
  z-index: 2000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 15vh;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.search-overlay.active {
  opacity: 1;
  visibility: visible;
}

.search-overlay-content {
  width: 100%;
  max-width: 600px;
  padding: 0 var(--space-md);
}

.search-overlay-input {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: var(--bg-card);
  border: 2px solid var(--border-color);
  border-radius: var(--radius-xl);
  color: var(--text-primary);
  font-size: 1.25rem;
  text-align: center;
}

.search-overlay-input:focus {
  outline: none;
  border-color: var(--hot-pink);
  box-shadow: var(--glow-pink);
}

.search-close {
  position: absolute;
  top: var(--space-lg);
  right: var(--space-lg);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  color: var(--text-secondary);
  font-size: 1.5rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.search-close:hover {
  border-color: var(--hot-pink);
  color: var(--text-primary);
}

/* ========================================
   AGE GATE STYLES
   ======================================== */

.age-gate-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-primary);
  backdrop-filter: blur(30px);
}

/* When age gate is active, hide all site content */
body.age-gate-active {
  overflow: hidden;
}

body.age-gate-active .site-header,
body.age-gate-active .site-content,
body.age-gate-active .site-footer {
  display: none !important;
}

.age-gate-modal {
  background: var(--bg-card);
  border: 2px solid var(--hot-pink);
  border-radius: var(--radius-xl);
  padding: var(--space-xxl);
  text-align: center;
  max-width: 500px;
  width: 90%;
  box-shadow: var(--glow-pink), 0 20px 60px rgba(0,0,0,0.5);
  position: relative;
  z-index: 2;
}

.age-gate-logo {
  font-size: 2rem;
  font-weight: 800;
  background: var(--gradient-hot);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-lg);
}

.age-gate-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
}

.age-gate-text {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: var(--space-xl);
}

.age-gate-buttons {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  margin-bottom: var(--space-lg);
  flex-wrap: wrap;
}

.age-gate-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md) var(--space-xl);
  border-radius: var(--radius-lg);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  min-width: 140px;
}

.age-gate-yes {
  background: var(--gradient-hot);
  color: white;
  box-shadow: 0 4px 15px rgba(255, 0, 102, 0.4);
}

.age-gate-yes:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(255, 0, 102, 0.6);
}

.age-gate-leave {
  background: transparent;
  color: var(--text-secondary);
  border: 2px solid var(--border-color);
}

.age-gate-leave:hover {
  border-color: var(--text-muted);
  color: var(--text-primary);
}

.age-gate-disclaimer {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin: 0;
}

.age-gate-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(ellipse at 20% 50%, rgba(255, 0, 102, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(102, 0, 204, 0.1) 0%, transparent 50%);
  z-index: 1;
}

/* Hide age gate when accepted */
body.age-verified .age-gate-overlay {
  display: none !important;
}
