/* ============================================
   INFLATABLE DREAMS - Shared Stylesheet
   ============================================ */

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

:root {
  --bg-primary: #0a0612;
  --bg-secondary: #14091f;
  --bg-card: #1c0e2c;
  --bg-card-hover: #2a1440;
  --accent-pink: #ff2d87;
  --accent-purple: #a855f7;
  --accent-gold: #ffb347;
  --text-primary: #f5e9ff;
  --text-secondary: #b39cc9;
  --text-muted: #7a6a8f;
  --border: #2a1b3d;
  --gradient-hero: linear-gradient(135deg, #ff2d87 0%, #a855f7 50%, #6b21a8 100%);
  --gradient-card: linear-gradient(135deg, rgba(255, 45, 135, 0.15), rgba(168, 85, 247, 0.15));
  --shadow-glow: 0 0 40px rgba(255, 45, 135, 0.3);
}

html, body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  min-height: 100vh;
  scroll-behavior: smooth;
}

a { color: var(--accent-pink); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--accent-purple); }

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

/* ============ AGE GATE MODAL ============ */
.age-gate {
  position: fixed;
  inset: 0;
  background: rgba(5, 2, 12, 0.97);
  backdrop-filter: blur(10px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.age-gate-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 3rem;
  max-width: 480px;
  text-align: center;
  box-shadow: var(--shadow-glow);
}
.age-gate-box h2 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.age-gate-box p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  font-size: 0.95rem;
}
.age-gate-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

/* ============ HEADER / NAV ============ */
.site-header {
  position: sticky;
  top: 0;
  background: rgba(10, 6, 18, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  z-index: 100;
}
.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.logo-mark {
  display: inline-block;
  margin-right: 0.4rem;
}
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}
.nav-links a {
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.95rem;
}
.nav-links a:hover,
.nav-links a.active { color: var(--text-primary); }

.nav-actions {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-block;
  padding: 0.7rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
  text-align: center;
}
.btn-primary {
  background: var(--gradient-hero);
  color: white;
  box-shadow: 0 4px 20px rgba(255, 45, 135, 0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(255, 45, 135, 0.5);
  color: white;
}
.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border);
}
.btn-secondary:hover {
  background: var(--bg-card);
  border-color: var(--accent-purple);
}
.btn-large {
  padding: 1rem 2.25rem;
  font-size: 1rem;
}
.btn-block { width: 100%; }

/* ============ HERO ============ */
.hero {
  position: relative;
  padding: 6rem 2rem 5rem;
  text-align: center;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 45, 135, 0.2), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(168, 85, 247, 0.25), transparent 50%);
  z-index: -1;
}
.hero h1 {
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  max-width: 900px;
  margin-inline: auto;
}
.hero h1 .accent {
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-tagline {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0 auto 2.5rem;
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-stats {
  display: flex;
  gap: 3rem;
  justify-content: center;
  margin-top: 4rem;
  flex-wrap: wrap;
}
.stat-item .num {
  font-size: 2rem;
  font-weight: 800;
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-item .label {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ============ SECTIONS ============ */
.section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 4rem 2rem;
}
.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.section-header h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}
.section-header .subtitle {
  color: var(--text-secondary);
  margin-top: 0.5rem;
  font-size: 1rem;
}
.section-header a {
  font-weight: 600;
  font-size: 0.9rem;
}

/* ============ CATEGORY GRID ============ */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
}
.category-tile {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 16px;
  overflow: hidden;
  background: var(--gradient-card);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: end;
  padding: 1.5rem;
}
.category-tile::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--category-bg, linear-gradient(135deg, #ff2d87, #a855f7));
  opacity: 0.7;
  z-index: 0;
  transition: opacity 0.3s;
}
.category-tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent 60%);
  z-index: 1;
}
.category-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(168, 85, 247, 0.25);
}
.category-tile:hover::before { opacity: 0.85; }
.category-content {
  position: relative;
  z-index: 2;
  width: 100%;
}
.category-tile h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.category-tile .count {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}
.category-tile .icon {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  z-index: 2;
  font-size: 1.75rem;
  opacity: 0.85;
}

/* ============ MEMBERSHIP PLANS ============ */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.plan-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  position: relative;
  transition: all 0.3s;
}
.plan-card.featured {
  border-color: var(--accent-pink);
  box-shadow: 0 0 60px rgba(255, 45, 135, 0.2);
  transform: scale(1.03);
}
.plan-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-purple);
}
.plan-card.featured:hover {
  transform: scale(1.03) translateY(-4px);
}
.plan-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-hero);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.35rem 1rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.plan-name {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.plan-price {
  margin-bottom: 1.5rem;
}
.plan-price .amount {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.plan-price .period {
  color: var(--text-muted);
  font-size: 0.9rem;
}
.plan-features {
  list-style: none;
  margin-bottom: 2rem;
}
.plan-features li {
  padding: 0.6rem 0;
  color: var(--text-secondary);
  font-size: 0.9rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.plan-features li:last-child { border-bottom: none; }
.plan-features li::before {
  content: '✓';
  color: var(--accent-pink);
  font-weight: 700;
}

/* ============ FORMS ============ */
.form-wrapper {
  max-width: 560px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 3rem;
}
.form-wrapper h2 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}
.form-wrapper .form-sub {
  color: var(--text-secondary);
  margin-bottom: 2rem;
}
.form-group {
  margin-bottom: 1.25rem;
}
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.form-group input,
.form-group select {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text-primary);
  font-size: 1rem;
  font-family: inherit;
  transition: border 0.2s;
}
.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent-pink);
  box-shadow: 0 0 0 3px rgba(255, 45, 135, 0.15);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
}
.form-check input { margin-top: 0.25rem; }
.form-footer {
  margin-top: 1rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* ============ MODELS GRID ============ */
.filters-bar {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  padding: 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
}
.filter-chip {
  padding: 0.5rem 1rem;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text-secondary);
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s;
}
.filter-chip.active,
.filter-chip:hover {
  background: var(--gradient-hero);
  color: white;
  border-color: transparent;
}

.model-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}
.model-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s;
  cursor: pointer;
  position: relative;
}
.model-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-pink);
  box-shadow: 0 20px 40px rgba(255, 45, 135, 0.2);
}
.model-photo {
  position: relative;
  aspect-ratio: 3 / 4;
  background: var(--model-bg, linear-gradient(135deg, #ff2d87, #a855f7));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: rgba(255, 255, 255, 0.4);
}
.model-photo .status {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.status.live::before {
  content: '';
  width: 8px;
  height: 8px;
  background: #ff4040;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}
.status.online::before {
  content: '';
  width: 8px;
  height: 8px;
  background: #40ff80;
  border-radius: 50%;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.model-photo .heart {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  border: none;
  color: white;
  transition: all 0.2s;
}
.model-photo .heart:hover {
  background: var(--accent-pink);
  transform: scale(1.1);
}
.model-info {
  padding: 1.25rem;
}
.model-name {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.model-name .verified {
  color: var(--accent-pink);
  font-size: 0.9rem;
}
.model-meta {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
}
.model-tags {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}
.model-tag {
  font-size: 0.7rem;
  padding: 0.2rem 0.6rem;
  background: var(--bg-secondary);
  border-radius: 999px;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ============ FOOTER ============ */
.site-footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 3rem 2rem 2rem;
  margin-top: 4rem;
}
.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-brand .logo { margin-bottom: 0.75rem; }
.footer-brand p {
  color: var(--text-muted);
  font-size: 0.85rem;
  max-width: 320px;
}
.footer-col h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-primary);
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.5rem; }
.footer-col a {
  color: var(--text-muted);
  font-size: 0.9rem;
}
.footer-col a:hover { color: var(--text-primary); }
.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-muted);
  font-size: 0.8rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.compliance-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  max-width: 800px;
  margin: 0 auto 1rem;
  text-align: center;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-container { padding: 1rem; }
  .section { padding: 2.5rem 1rem; }
  .hero { padding: 3rem 1rem; }
  .hero-stats { gap: 1.5rem; }
  .form-wrapper { padding: 2rem 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .plan-card.featured { transform: scale(1); }
  .footer-container { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-container { grid-template-columns: 1fr; }
}
