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

:root {
  --bg-dark: #0a0a0a;
  --bg-card: #141414;
  --bg-card-hover: #1a1a1a;
  --gold: #d4af37;
  --gold-light: #f0d060;
  --pink: #e91e8c;
  --pink-dim: #c4177a;
  --text: #e8e8e8;
  --text-muted: #999;
  --border: #2a2a2a;
  --wa-green: #25d366;
  --call-blue: #1a73e8;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  background-color: var(--bg-dark);
  color: var(--text);
  line-height: 1.65;
  padding-bottom: 80px;
}

body.age-locked {
  overflow: hidden;
}

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

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

/* ===== Age Gate ===== */
.age-gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.age-gate.hidden {
  display: none;
}

.age-gate-box {
  background: #111;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 36px 32px;
  max-width: 480px;
  text-align: center;
}

.age-gate-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  background: var(--pink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
}

.age-gate-box h2 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--gold);
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.age-gate-box p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.age-gate-box ul {
  text-align: left;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 16px 0;
  padding-left: 20px;
}

.age-gate-box li {
  margin-bottom: 6px;
}

.age-disclaimer {
  font-size: 0.8rem !important;
  font-style: italic;
}

.age-gate-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 20px;
}

.btn-age-enter {
  background: var(--pink);
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  font-size: 0.9rem;
}

.btn-age-exit {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
  padding: 12px 24px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.9rem;
}

/* ===== Header ===== */
.site-header {
  background: #000;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  max-width: 1200px;
  margin: 0 auto;
  gap: 16px;
}

.site-logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
}

.city-nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.city-nav a {
  font-size: 0.8rem;
  color: var(--text);
  font-weight: 500;
  transition: color 0.2s;
}

.city-nav a:hover {
  color: var(--gold);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.4rem;
  cursor: pointer;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 0 20px 12px;
  gap: 10px;
  border-top: 1px solid var(--border);
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: 6px 0;
}

.header-cta {
  display: flex;
  gap: 10px;
  justify-content: center;
  padding: 10px 20px 14px;
  border-top: 1px solid var(--border);
}

.btn-header {
  flex: 1;
  max-width: 280px;
  text-align: center;
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
}

.btn-wa-header {
  background: var(--wa-green);
  color: #fff;
}

/* ===== Hero Video Intro (girls69 style) ===== */
.hero-video-intro {
  position: relative;
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-banner-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
}

.hero-banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
  pointer-events: none;
}

.hero-banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 100px 20px 60px;
  max-width: 900px;
  width: 100%;
}

.hero-banner-content h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.6rem, 5vw, 3rem);
  color: #ffffff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  line-height: 1.25;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.8);
}

.hero-tagline {
  font-size: clamp(0.85rem, 2vw, 1.05rem);
  color: rgba(255, 255, 255, 0.92);
  font-weight: 400;
  line-height: 1.7;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 28px;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.7);
}

.hero-banner-content .search-sub {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-banner-content .city-select {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  display: block;
  padding: 14px 18px;
  font-size: 1rem;
  font-family: inherit;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  cursor: pointer;
}

.hero-banner-content .city-select:focus {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.hero-banner-content .fraud-note {
  margin-top: 16px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.75);
}

.hero-banner-content .fraud-note a {
  color: var(--gold);
}

.hero-book-btn {
  margin-top: 24px;
  padding: 14px 36px;
  font-size: 1rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== Video Hero ===== */
.video-hero {
  position: relative;
  background: #0a0a0a;
  padding: 36px 20px 44px;
  display: flex;
  justify-content: center;
}

.video-tile {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 780px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.video-tile-player {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
  background: #111;
  cursor: pointer;
}

.video-tile-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.video-tile:hover .video-tile-overlay,
.video-tile.paused .video-tile-overlay {
  opacity: 1;
  pointer-events: auto;
}

.video-control-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.8);
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-mute-btn {
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  font-size: 0.85rem;
}

.video-control-btn .hidden {
  display: none;
}

.live-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #e53935;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 0.5px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

/* ===== Search Section (legacy — used inside hero) ===== */
.section-label {
  color: var(--pink);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.search-sub {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.city-select {
  width: 100%;
  max-width: 480px;
  padding: 14px 18px;
  font-size: 1rem;
  font-family: inherit;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg-card);
  color: var(--text);
  cursor: pointer;
}

.city-select:focus {
  outline: 2px solid var(--pink);
  outline-offset: 2px;
}

.fraud-note {
  margin-top: 16px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.fraud-note a {
  color: var(--gold);
}

/* ===== Content Block ===== */
.content-block {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
  border-top: 1px solid var(--border);
}

.content-block h2 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--gold);
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.content-block p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 14px;
}

.check-list {
  list-style: none;
  margin-top: 16px;
}

.check-list li {
  padding: 10px 0 10px 28px;
  position: relative;
  color: var(--text-muted);
  font-size: 0.9rem;
  border-bottom: 1px solid var(--border);
}

.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--wa-green);
  font-weight: 700;
}

/* ===== Section Head ===== */
.section-head {
  text-align: center;
  margin-bottom: 36px;
}

.badge-pill {
  display: inline-block;
  background: rgba(233, 30, 140, 0.15);
  color: var(--pink);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.section-head h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.3rem, 3.5vw, 1.75rem);
  color: var(--gold);
}

/* ===== Profile Cards ===== */
.profiles-section {
  max-width: 960px;
  margin: 0 auto;
  padding: 48px 20px;
}

.profiles-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.profile-card {
  display: flex;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.profile-card:hover {
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.profile-card.hidden {
  display: none;
}

.profile-image {
  flex: 0 0 220px;
  min-height: 300px;
}

.profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.profile-body {
  flex: 1;
  padding: 24px;
  display: flex;
  flex-direction: column;
  border-left: 3px solid var(--gold);
}

.profile-tag {
  font-size: 0.75rem;
  color: var(--pink);
  text-transform: capitalize;
  font-weight: 600;
  margin-bottom: 4px;
}

.profile-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.4rem;
  color: var(--gold-light);
  margin-bottom: 6px;
}

.profile-badge {
  display: inline-block;
  font-size: 0.7rem;
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold);
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 8px;
  width: fit-content;
}

.profile-meta {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.profile-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 10px;
  line-height: 1.7;
}

.profile-desc strong {
  color: var(--text);
  font-weight: 600;
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 11px 24px;
  font-size: 0.88rem;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
  text-align: center;
  margin-top: auto;
  width: fit-content;
}

.btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.btn-whatsapp {
  background: var(--wa-green);
  color: #fff;
}

.btn-call {
  background: var(--call-blue);
  color: #fff;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.8rem;
  margin-top: 12px;
  width: 100%;
}

/* ===== Promo Block ===== */
.promo-block {
  background: linear-gradient(135deg, #1a0a14 0%, #0a0a0a 50%, #0a1018 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 56px 20px;
}

.promo-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.promo-tag {
  color: var(--pink);
  font-size: 0.8rem;
  font-weight: 600;
}

.promo-label {
  color: var(--gold);
  font-size: 0.85rem;
  margin: 6px 0 12px;
}

.promo-inner h2 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--gold-light);
  font-size: clamp(1.3rem, 3vw, 1.6rem);
  margin-bottom: 16px;
}

.promo-inner p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 12px;
}

.promo-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 24px;
}

.promo-btns .btn {
  margin-top: 0;
  min-width: 140px;
}

/* ===== Featured Grid ===== */
.featured-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 56px 20px;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}

.featured-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  padding-bottom: 16px;
  position: relative;
  transition: transform 0.2s, border-color 0.2s;
}

.featured-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.3);
}

.featured-img {
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.featured-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  color: #fff;
}

.featured-badge.vip { background: var(--gold); color: #000; }
.featured-badge.hot { background: #e53935; }
.featured-badge.new { background: var(--wa-green); }

.featured-cat {
  font-size: 0.68rem;
  color: var(--pink);
  padding: 10px 14px 0;
  text-transform: capitalize;
}

.featured-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.05rem;
  color: var(--gold-light);
  padding: 4px 14px;
}

.featured-size {
  font-size: 0.78rem;
  color: var(--text-muted);
  padding: 0 14px 8px;
}

.featured-card .btn {
  margin: 0 14px;
  display: block;
}

/* ===== Services ===== */
.services-section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 56px 20px;
  border-top: 1px solid var(--border);
}

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

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px;
}

.service-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--gold);
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ===== FAQ ===== */
.faq-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 56px 20px;
  border-top: 1px solid var(--border);
}

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

.faq-item summary {
  padding: 16px 20px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text);
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  float: right;
  color: var(--gold);
  font-size: 1.2rem;
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-item p {
  padding: 0 20px 16px;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ===== Tags ===== */
.tags-section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
  border-top: 1px solid var(--border);
}

.tags-section h3 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 16px;
  text-align: center;
}

.tags-cloud {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 2;
  text-align: center;
}

/* ===== Footer ===== */
.site-footer {
  background: #000;
  border-top: 1px solid var(--border);
  padding: 32px 20px;
  text-align: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  justify-content: center;
  margin-bottom: 16px;
}

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

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

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

/* ===== Floating CTA ===== */
.floating-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
}

.float-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 14px;
  font-size: 0.9rem;
  font-weight: 700;
}

.float-wa {
  background: var(--wa-green);
  color: #fff;
}

/* ===== Cookie Banner ===== */
.cookie-banner {
  position: fixed;
  bottom: 52px;
  left: 16px;
  right: 16px;
  max-width: 500px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 850;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.cookie-banner.hidden {
  display: none;
}

.cookie-banner p {
  font-size: 0.8rem;
  color: var(--text-muted);
  flex: 1;
}

.cookie-banner button {
  background: var(--pink);
  color: #fff;
  border: none;
  padding: 8px 18px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  font-size: 0.8rem;
  white-space: nowrap;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .profile-card {
    flex-direction: column;
  }

  .profile-image {
    flex: none;
    min-height: 280px;
  }

  .profile-body {
    border-left: none;
    border-top: 3px solid var(--gold);
  }

  .header-cta {
    padding: 8px 16px 12px;
  }

  .promo-btns {
    flex-direction: column;
    align-items: center;
  }

  .cookie-banner {
    flex-direction: column;
    text-align: center;
    bottom: 56px;
  }
}

@media (min-width: 769px) {
  .floating-cta {
    display: none;
  }

  body {
    padding-bottom: 0;
  }
}
