/**
 * 18.network Theme - Neon Nights Premium
 * Luxury adult platform aesthetic with layered depth
 * Primary: Hot pink (#ff0066) | Secondary: Coral (#ff3366) | Tertiary: Electric Magenta (#ff00ff)
 */

/* ========================================
   CSS VARIABLES - NEON NIGHTS SYSTEM
   ======================================== */
:root {
  --pink-500: #ff0066;
  --pink-400: #ff3380;
  --pink-300: #ff66a3;
  --pink-600: #cc0052;
  --pink-700: #99003d;
  --coral-500: #ff3366;
  --coral-400: #ff5c85;
  --coral-300: #ff85a3;
  --coral-600: #cc2952;
  --magenta-500: #ff00ff;
  --magenta-400: #ff4dff;
  --magenta-300: #ff99ff;
  --magenta-600: #cc00cc;
  --cyan-500: #00ffff;
  --cyan-400: #4dffff;
  --cyan-300: #99ffff;
  --gold-500: #ffd700;
  --gold-400: #ffe44d;
  --gold-600: #ccac00;
  --bg-base: #050508;
  --bg-primary: #0a0a0f;
  --bg-secondary: #0f0f16;
  --bg-elevated-1: #13131c;
  --bg-elevated-2: #181824;
  --bg-elevated-3: #1e1e2e;
  --bg-elevated-4: #252538;
  --bg-card: #161622;
  --bg-card-hover: #1c1c2c;
  --bg-card-active: #222234;
  --bg-hover: rgba(255, 0, 102, 0.08);
  --bg-active: rgba(255, 0, 102, 0.12);
  --bg-selected: rgba(255, 0, 102, 0.15);
  --text-primary: #ffffff;
  --text-secondary: #c8c8d8;
  --text-tertiary: #9898b0;
  --text-muted: #6e6e88;
  --text-disabled: #4a4a60;
  --text-pink: #ff66a3;
  --text-coral: #ff85a3;
  --text-magenta: #ff99ff;
  --text-cyan: #99ffff;
  --text-gold: #ffe44d;
  --border-subtle: rgba(255, 255, 255, 0.06);
  --border-default: rgba(255, 255, 255, 0.1);
  --border-strong: rgba(255, 255, 255, 0.15);
  --border-accent: rgba(255, 0, 102, 0.5);
  --border-glow: rgba(255, 0, 102, 0.3);
  --gradient-primary: linear-gradient(135deg, var(--pink-500) 0%, var(--coral-500) 100%);
  --gradient-primary-hover: linear-gradient(135deg, var(--pink-400) 0%, var(--coral-400) 100%);
  --glow-pink: 0 0 20px rgba(255, 0, 102, 0.5);
  --glow-pink-sm: 0 0 10px rgba(255, 0, 102, 0.4);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.6);
  --space-3xs: 0.125rem;
  --space-2xs: 0.25rem;
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-2xl: 32px;
  --radius-full: 9999px;
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);
  --font-sans: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

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

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

.container {
  width: 100%;
  max-width: 1600px;
  margin-inline: auto;
  padding-inline: var(--space-md);
}

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

/* ========================================
   HEADER - Premium Glass Navigation
   ======================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid var(--border-subtle);
}

.scroll-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--gradient-primary);
  width: 0%;
  transition: width 0.1s linear;
  z-index: 1001;
}

.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-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}

.brand .custom-logo {
  max-height: 40px;
  width: auto;
  display: block;
}

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

.search-wrapper {
  position: relative;
}

.search-input {
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 2.75rem;
  background: var(--bg-elevated-1);
  border: 1px solid var(--border-default);
  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(--pink-500);
  box-shadow: 0 0 0 3px rgba(255, 0, 102, 0.15), var(--glow-pink-sm);
}

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

.search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-tertiary);
  pointer-events: none;
}

.search-shortcut {
  position: absolute;
  right: 2.5rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.7rem;
  color: var(--text-muted);
  background: var(--bg-elevated-2);
  padding: 0.15rem 0.4rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-default);
  pointer-events: none;
}

.search-input:focus ~ .search-shortcut,
.search-input:not(:placeholder-shown) ~ .search-shortcut {
  display: none;
}

.search-close-btn {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 0.25rem;
  display: none;
  border-radius: 50%;
  transition: all var(--transition-fast);
}

.search-close-btn:hover {
  color: var(--text-primary);
  background: var(--bg-hover);
}

.search-input:not(:placeholder-shown) ~ .search-close-btn {
  display: flex;
}

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

.menu {
  display: flex;
  gap: var(--space-xs);
  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 {
  color: var(--text-primary);
  background: var(--bg-hover);
}

.menu .current-menu-item a {
  color: var(--text-primary);
  background: var(--bg-selected);
  border: 1px solid var(--border-accent);
}

.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-default);
  background: transparent;
}

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

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

.btn-join:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(255, 0, 102, 0.45), var(--glow-pink-sm);
}

/* ========================================
   MOBILE MENU TOGGLE
   ======================================== */
.mobile-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: var(--bg-elevated-1);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-fast);
  padding: 0;
}

.mobile-menu-toggle:hover {
  border-color: var(--pink-500);
  background: var(--bg-hover);
}

.hamburger-line {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Search Toggle */
.mobile-search-toggle {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  background: var(--bg-elevated-1);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  cursor: pointer;
  transition: all var(--transition-fast);
  flex-shrink: 0;
}

.mobile-search-toggle:hover {
  border-color: var(--pink-500);
  background: var(--bg-hover);
}

/* ========================================
   MOBILE DRAWER
   ======================================== */
.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 9000;
  pointer-events: none;
  visibility: hidden;
  transition: visibility 0s linear 0.3s;
}

.mobile-drawer[aria-hidden="false"] {
  pointer-events: auto;
  visibility: visible;
  transition: visibility 0s;
}

.drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 8, 0.85);
  backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-drawer[aria-hidden="false"] .drawer-backdrop {
  opacity: 1;
}

.drawer-content {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: min(320px, 85vw);
  background: var(--bg-secondary);
  border-right: 1px solid var(--border-default);
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 10px 0 40px rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.mobile-drawer[aria-hidden="false"] .drawer-content {
  transform: translateX(0);
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) var(--space-lg);
  border-bottom: 1px solid var(--border-subtle);
}

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

.drawer-close {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-elevated-1);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.drawer-close:hover {
  border-color: var(--pink-500);
  color: var(--text-primary);
  background: var(--bg-hover);
}

.drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: var(--space-lg);
}

.drawer-search {
  position: relative;
  margin-bottom: var(--space-lg);
}

.drawer-search .search-icon {
  position: absolute;
  left: var(--space-md);
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
}

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

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

.drawer-nav {
  margin-bottom: var(--space-lg);
}

.drawer-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.drawer-menu li {
  margin: 0;
}

.drawer-menu a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1rem;
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 1rem;
  transition: all var(--transition-fast);
}

.drawer-menu a:hover,
.drawer-menu .current-menu-item a {
  background: var(--bg-elevated-1);
  color: var(--text-primary);
  border: 1px solid var(--border-default);
}

.drawer-footer {
  padding: var(--space-lg);
  border-top: 1px solid var(--border-subtle);
  background: var(--bg-primary);
}

.drawer-actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.drawer-actions .btn-login,
.drawer-actions .btn-join {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
}

.drawer-actions .btn-login {
  background: transparent;
  border: 1px solid var(--border-default);
  color: var(--text-secondary);
}

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

.drawer-actions .btn-join {
  background: var(--gradient-primary);
  color: white;
  border: none;
}

/* ========================================
   MOBILE SEARCH OVERLAY
   ======================================== */
.mobile-search-overlay {
  position: fixed;
  inset: 0;
  z-index: 9500;
  display: flex;
  flex-direction: column;
  pointer-events: none;
  visibility: hidden;
  transition: visibility 0s linear 0.25s;
}

.mobile-search-overlay.active {
  pointer-events: auto;
  visibility: visible;
  transition: visibility 0s;
}

.mobile-search-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 8, 0.95);
  backdrop-filter: blur(12px);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.mobile-search-overlay.active .mobile-search-backdrop {
  opacity: 1;
}

.mobile-search-container {
  position: relative;
  padding: var(--space-md);
  padding-top: max(var(--space-lg), env(safe-area-inset-top));
  z-index: 1;
  transform: translateY(-20px);
  opacity: 0;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-search-overlay.active .mobile-search-container {
  transform: translateY(0);
  opacity: 1;
}

.mobile-search-form {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  background: var(--bg-elevated-1);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-full);
  padding: 0.5rem;
  padding-left: var(--space-md);
}

.mobile-search-form .search-icon {
  color: var(--text-muted);
  flex-shrink: 0;
}

.mobile-search-input {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-size: 1rem;
  padding: 0.5rem 0;
}

.mobile-search-input:focus {
  outline: none;
}

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

.mobile-search-cancel {
  padding: 0.5rem 1rem;
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
}

.mobile-search-cancel:hover {
  color: var(--text-primary);
  background: var(--bg-hover);
}

/* ========================================
   SEARCH OVERLAY (DESKTOP)
   ======================================== */
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 5, 8, 0.95);
  backdrop-filter: blur(20px);
  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-elevated-1);
  border: 2px solid var(--border-default);
  border-radius: var(--radius-xl);
  color: var(--text-primary);
  font-size: 1.25rem;
  text-align: center;
  transition: all var(--transition-fast);
}

.search-overlay-input:focus {
  outline: none;
  border-color: var(--pink-500);
  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-elevated-1);
  border: 1px solid var(--border-default);
  border-radius: 50%;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.search-close:hover {
  border-color: var(--pink-500);
  color: var(--text-primary);
  box-shadow: var(--glow-pink-sm);
}

.search-hint {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: var(--space-lg);
}

.search-hint kbd {
  background: var(--bg-elevated-2);
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.85rem;
  border: 1px solid var(--border-default);
}

/* ========================================
   CATEGORY PILLS
   ======================================== */
.category-bar {
  position: sticky;
  top: 70px;
  z-index: 999;
  background: rgba(10, 10, 15, 0.88);
  backdrop-filter: blur(16px);
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--border-subtle);
  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-elevated-1);
  border: 1px solid var(--border-default);
  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 {
  background: var(--bg-elevated-2);
  border-color: var(--border-strong);
  color: var(--text-primary);
}

.category-pill.active {
  background: var(--bg-selected);
  border-color: var(--pink-500);
  color: var(--text-primary);
  box-shadow: var(--glow-pink-sm);
}

.category-pill.all {
  background: var(--gradient-primary);
  border-color: transparent;
  color: white;
  box-shadow: 0 4px 15px rgba(255, 0, 102, 0.3);
}

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

.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);
  background: var(--bg-hover);
}

.filter-tab.active {
  background: var(--gradient-primary);
  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, #ffffff 0%, var(--pink-300) 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(--pink-400);
  font-weight: 600;
}

/* ========================================
   MODEL GRID
   ======================================== */
.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
   ======================================== */
.model-card {
  position: relative;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-slow);
  border: 1px solid var(--border-default);
  box-shadow: var(--shadow-sm);
}

.model-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.9) 100%);
  z-index: 2;
  pointer-events: none;
  opacity: 0.8;
}

.model-card:hover {
  transform: translateY(-4px) scale(1.02);
  border-color: var(--pink-500);
  box-shadow: var(--glow-pink), var(--shadow-lg);
  z-index: 10;
}

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

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

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

.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), 0 2px 10px rgba(255, 0, 0, 0.4); }
  50% { box-shadow: 0 0 0 8px rgba(255, 0, 0, 0), 0 2px 10px rgba(255, 0, 0, 0.4); }
}

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

.hd-badge {
  position: absolute;
  top: var(--space-sm);
  right: var(--space-sm);
  padding: 0.25rem 0.5rem;
  background: var(--gold-500);
  border-radius: var(--radius-sm);
  font-size: 0.7rem;
  font-weight: 800;
  color: #000;
  z-index: 3;
}

.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;
}

.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);
}

.model-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

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

/* ========================================
   LOAD MORE BUTTON
   ======================================== */
.load-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: var(--space-2xl);
}

.btn-load-more {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: var(--bg-elevated-1);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-full);
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-load-more:hover {
  border-color: var(--pink-500);
  color: var(--text-primary);
  background: var(--bg-hover);
}

.btn-load-more:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn-spinner {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ========================================
   LOADING SPINNER
   ======================================== */
.loading-spinner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  gap: 0.5rem;
}

.loading-spinner .dot {
  width: 12px;
  height: 12px;
  background: var(--pink-500);
  border-radius: 50%;
  animation: loadingBounce 1.4s infinite ease-in-out both;
}

.loading-spinner .dot:nth-child(1) { animation-delay: -0.32s; }
.loading-spinner .dot:nth-child(2) { animation-delay: -0.16s; }

@keyframes loadingBounce {
  0%, 80%, 100% { transform: scale(0); opacity: 0.5; }
  40% { transform: scale(1); opacity: 1; }
}

.loading-end {
  text-align: center;
  padding: 2rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ========================================
   EMPTY STATE
   ======================================== */
.empty-state {
  text-align: center;
  padding: var(--space-3xl) var(--space-lg);
  color: var(--text-secondary);
}

.empty-icon {
  font-size: 4rem;
  margin-bottom: var(--space-lg);
  opacity: 0.7;
}

.empty-state h2 {
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
}

.empty-state p {
  color: var(--text-muted);
}

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

.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-primary);
  -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: all var(--transition-fast);
}

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

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

/* ========================================
   AGE GATE
   ======================================== */
.age-gate-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.age-gate-bg {
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 8, 0.97);
  backdrop-filter: blur(20px);
}

.age-gate-modal {
  position: relative;
  z-index: 1;
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-xl);
  padding: 3rem 2.5rem;
  max-width: 420px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-xl), var(--glow-pink);
}

.age-gate-logo {
  font-size: 1.75rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
}

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

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

.age-gate-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.age-gate-btn {
  flex: 1;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  text-align: center;
  border: none;
}

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

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

body.age-gate-active .site-header,
body.age-gate-active .site-main,
body.age-gate-active .site-footer {
  filter: blur(8px);
  pointer-events: none;
  user-select: none;
}

/* ========================================
   MOBILE RESPONSIVE
   ======================================== */
@media (max-width: 768px) {
  .site-header {
    z-index: 8000;
  }

  .header-inner {
    min-height: 60px;
    gap: var(--space-sm);
  }

  .header-search {
    display: none;
  }

  .menu {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
    order: -1;
  }

  .brand {
    font-size: 1.25rem;
    margin-right: auto;
  }

  .brand .custom-logo {
    max-height: 32px;
  }

  .mobile-search-toggle {
    display: flex;
  }

  .header-actions {
    display: none;
  }

  .site-nav {
    gap: var(--space-sm);
  }

  .section-title {
    font-size: 1.35rem;
  }

  .filter-tabs {
    width: 100%;
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .filter-tabs::-webkit-scrollbar {
    display: none;
  }

  .age-gate-modal {
    padding: 2rem 1.5rem;
    max-width: 90%;
  }

  .age-gate-title {
    font-size: 1.25rem;
  }

  .age-gate-buttons {
    flex-direction: column;
  }
}

/* ========================================
   SCROLLBAR STYLING
   ======================================== */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

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

::-webkit-scrollbar-thumb {
  background: var(--bg-elevated-3);
  border-radius: var(--radius-full);
  border: 2px solid var(--bg-primary);
}

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

* {
  scrollbar-width: thin;
  scrollbar-color: var(--bg-elevated-3) var(--bg-primary);
}

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

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

/* ========================================
   CREATIVE PREMIUM HEADER v2.9.0
   ======================================== */

/* Header Base */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(255, 0, 102, 0.2);
  transition: all 0.3s ease;
}

.site-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 0, 102, 0.05) 0%,
    transparent 100%
  );
  pointer-events: none;
}

/* Floating Particles */
.header-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--pink-500);
  border-radius: 50%;
  opacity: 0.6;
  animation: float 6s ease-in-out infinite;
}

.particle:nth-child(1) { left: 10%; top: 50%; animation-delay: 0s; }
.particle:nth-child(2) { left: 30%; top: 30%; animation-delay: 1s; }
.particle:nth-child(3) { left: 50%; top: 70%; animation-delay: 2s; }
.particle:nth-child(4) { left: 70%; top: 40%; animation-delay: 3s; }
.particle:nth-child(5) { left: 90%; top: 60%; animation-delay: 4s; }

@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.6; }
  50% { transform: translateY(-20px) scale(1.2); opacity: 1; }
}

/* Gradient Border */
.header-gradient-border {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  overflow: hidden;
}

.gradient-line {
  width: 200%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--pink-500) 25%,
    var(--coral-500) 50%,
    var(--pink-500) 75%,
    transparent 100%
  );
  animation: gradientShift 4s linear infinite;
}

@keyframes gradientShift {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0%); }
}

/* Header Inner */
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 72px;
  position: relative;
}

/* Brand */
.brand {
  display: flex;
  align-items: center;
  position: relative;
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--pink-500) 0%, var(--coral-500) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.brand:hover {
  transform: scale(1.05);
}

.brand-text {
  background: linear-gradient(135deg, var(--pink-500) 0%, var(--coral-500) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.custom-logo {
  max-height: 36px;
  width: auto;
}

.brand-glow {
  position: absolute;
  inset: -10px;
  background: radial-gradient(circle, rgba(255, 0, 102, 0.3) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.brand:hover .brand-glow {
  opacity: 1;
}

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

.header-search {
  position: relative;
  display: flex;
  align-items: center;
}

.search-icon {
  position: absolute;
  left: 14px;
  color: var(--text-muted);
  pointer-events: none;
  transition: color 0.3s ease;
}

.search-input {
  width: 100%;
  padding: 12px 40px 12px 42px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  color: var(--text-primary);
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

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

.search-input:focus + .search-icon {
  color: var(--pink-500);
}

.search-shortcut {
  position: absolute;
  right: 14px;
  padding: 2px 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  font-size: 0.7rem;
  color: var(--text-muted);
  opacity: 1;
  transition: opacity 0.3s ease;
}

.search-input:focus ~ .search-shortcut {
  opacity: 0;
}

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

.header-icon-btn {
  position: relative;
  padding: 10px;
  color: var(--text-secondary);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.header-icon-btn:hover {
  color: var(--pink-500);
  background: rgba(255, 0, 102, 0.1);
}

.icon-badge {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 8px;
  height: 8px;
  background: var(--pink-500);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.btn-login {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  color: var(--text-primary);
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn-login:hover {
  color: var(--pink-500);
}

.btn-login .btn-icon {
  transition: transform 0.3s ease;
}

.btn-login:hover .btn-icon {
  transform: translateX(3px);
}

.btn-join {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  background: linear-gradient(135deg, var(--pink-500) 0%, var(--coral-500) 100%);
  color: white;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 50px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.btn-join::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.btn-join:hover::before {
  transform: translateX(100%);
}

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

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 2000;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
}

.mobile-drawer.active {
  visibility: visible;
  opacity: 1;
}

.drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(4px);
}

.drawer-content {
  position: absolute;
  top: 0;
  right: 0;
  width: 320px;
  max-width: 90vw;
  height: 100%;
  background: var(--bg-secondary);
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.mobile-drawer.active .drawer-content {
  transform: translateX(0);
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-bottom: 1px solid var(--border-color);
}

.drawer-title {
  font-size: 1.2rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--pink-500) 0%, var(--coral-500) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.drawer-close {
  padding: 8px;
  color: var(--text-secondary);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: color 0.3s ease;
}

.drawer-close:hover {
  color: var(--pink-500);
}

.drawer-nav {
  flex: 1;
  padding: 20px 0;
  overflow-y: auto;
}

.drawer-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  color: var(--text-secondary);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.drawer-link:hover,
.drawer-link--active {
  color: var(--text-primary);
  background: rgba(255, 0, 102, 0.1);
}

.drawer-link--highlight {
  background: linear-gradient(135deg, var(--pink-500) 0%, var(--coral-500) 100%);
  color: white;
  margin: 10px 20px;
  border-radius: 50px;
  justify-content: center;
}

.link-icon {
  font-size: 1.2rem;
}

.drawer-divider {
  margin: 16px 20px;
  border: none;
  height: 1px;
  background: var(--border-color);
}

.drawer-footer {
  padding: 20px;
  border-top: 1px solid var(--border-color);
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* Search Overlay */
.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 3000;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
}

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

.search-overlay-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
}

.search-overlay-content {
  position: relative;
  max-width: 600px;
  margin: 100px auto;
  padding: 0 20px;
}

.search-close {
  position: absolute;
  top: -60px;
  right: 20px;
  padding: 10px;
  color: var(--text-secondary);
  background: transparent;
  border: none;
  cursor: pointer;
}

.search-overlay-form {
  position: relative;
}

.search-overlay-input {
  width: 100%;
  padding: 20px 60px 20px 24px;
  background: var(--bg-elevated-1);
  border: 2px solid var(--border-color);
  border-radius: 16px;
  color: var(--text-primary);
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.search-overlay-input:focus {
  outline: none;
  border-color: var(--pink-500);
  box-shadow: 0 0 30px rgba(255, 0, 102, 0.3);
}

.search-overlay-submit {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  padding: 12px;
  background: linear-gradient(135deg, var(--pink-500) 0%, var(--coral-500) 100%);
  border: none;
  border-radius: 12px;
  color: white;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.search-overlay-submit:hover {
  transform: translateY(-50%) scale(1.1);
}

.search-suggestions {
  margin-top: 30px;
}

.suggestions-title {
  color: var(--text-muted);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.suggestion-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.suggestion-tag {
  padding: 10px 18px;
  background: var(--bg-elevated-1);
  border: 1px solid var(--border-color);
  border-radius: 50px;
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.suggestion-tag:hover {
  border-color: var(--pink-500);
  color: var(--pink-500);
  transform: translateY(-2px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .header-inner {
    height: 64px;
  }
  
  .header-search-wrap {
    display: none;
  }
  
  .btn-login span,
  .btn-join span {
    display: none;
  }
  
  .btn-login,
  .btn-join {
    padding: 10px;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .header-actions {
    gap: 8px;
  }
  
  .brand {
    font-size: 1.25rem;
  }
  
  .custom-logo {
    max-height: 30px;
  }
}
