/* =====================================================================
   PHONESEXPARADISE — Static site CSS (ported from Next.js + Tailwind 4)
   Single sheet, no framework. ~600 lines.
   ===================================================================== */

:root {
  --color-primary: #e91e63;
  --color-primary-hover: #c2185b;
  --color-secondary: #ff5252;
  --color-bg: #0a0a0a;
  --color-bg-card: #1a1a1a;
  --color-bg-card-hover: #242424;
  --color-border: #2a2a2a;
  --color-text: #d4d4d4;
  --color-text-muted: #999999;
  --color-text-heading: #ffffff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Montserrat', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

main { flex: 1; }

a { color: var(--color-primary); text-decoration: none; transition: color .2s; }
a:hover { color: var(--color-secondary); }
a.btn, .btn { color: inherit; text-decoration: none; }
a.btn:hover { color: inherit; }

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

button { font-family: inherit; cursor: pointer; }

/* =====================================================================
   LAYOUT
   ===================================================================== */
.site-container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 640px)  { .site-container { padding: 0 32px; } }
@media (min-width: 1024px) { .site-container { padding: 0 48px; } }

.py-6  { padding-top: 24px; padding-bottom: 24px; }
.py-10 { padding-top: 40px; padding-bottom: 40px; }
@media (min-width: 640px) { .py-10 { padding-top: 56px; padding-bottom: 56px; } }

.stack > * + * { margin-top: 28px; }

/* =====================================================================
   ANNOUNCEMENT BAR
   ===================================================================== */
/* Whole bar is clickable (matches React AnnouncementBar.tsx) */
.announcement-bar {
  position: relative;
  width: 100%;
  background: linear-gradient(135deg, #e91e63, #c2185b);
}
.announcement-bar.is-hidden { display: none; }
.announcement-bar-link {
  display: block;
  width: 100%;
  padding: 10px 32px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  transition: filter .2s;
}
@media (min-width: 640px) { .announcement-bar-link { font-size: 16px; } }
.announcement-bar-link:hover { filter: brightness(1.1); color: #fff; }
.announcement-bar-content {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.announcement-bar-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border-radius: 999px;
  padding: 2px 12px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  background-color: rgba(255, 255, 255, .2);
  border: 1px solid rgba(255, 255, 255, .4);
}
@media (min-width: 640px) { .announcement-bar-pill { font-size: 12px; } }
.announcement-bar-close {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0;
  border-radius: 999px;
  color: #fff;
  cursor: pointer;
  transition: background-color .2s;
}
.announcement-bar-close:hover { background-color: rgba(255, 255, 255, .2); }

/* =====================================================================
   HEADER
   ===================================================================== */
.site-header-wrap { position: sticky; top: 0; z-index: 50; transition: transform .3s; }
.site-header-wrap.is-hidden { transform: translateY(-100%); }

.site-header {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background-color: rgba(10, 10, 10, .92);
  border-bottom: 1px solid var(--color-border);
}
.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 64px;
}
.site-logo { font-size: 20px; font-weight: 800; letter-spacing: -.01em; color: var(--color-text-heading); display: inline-flex; align-items: center; }
.site-logo img { height: 40px; width: auto; }

.header-actions { display: flex; align-items: center; gap: 8px; }
.header-actions .pill {
  display: none;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .2);
  transition: background-color .15s;
}
.header-actions .pill:hover { background: rgba(255, 255, 255, .1); color: #fff; }
@media (min-width: 768px) { .header-actions .pill { display: inline-block; } }

.icon-btn {
  background: transparent; border: 0;
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--color-text-muted);
  border-radius: 8px;
  transition: background-color .15s, color .15s;
}
.icon-btn:hover { background: rgba(255, 255, 255, .06); color: var(--color-text-heading); }
.icon-btn.menu { display: inline-flex; }
@media (min-width: 768px) { .icon-btn.menu { display: none; } }

/* Category bar */
.cat-bar { display: none; background-color: rgba(20, 20, 20, .95); border-bottom: 1px solid var(--color-border); position: relative; }
@media (min-width: 768px) { .cat-bar { display: block; } }
.cat-bar-inner { position: relative; }
.cat-bar-scroll {
  display: flex; align-items: center; gap: 4px;
  overflow-x: auto; padding: 8px 24px;
  scrollbar-width: none; -ms-overflow-style: none;
}
.cat-bar-scroll::-webkit-scrollbar { display: none; }

/* Pink scroll arrows on the category bar */
.cat-scroll-arrow {
  position: absolute;
  top: 0; bottom: 0;
  display: none;
  align-items: center;
  z-index: 10;
  background: 0;
  border: 0;
  cursor: pointer;
}
.cat-scroll-arrow.is-visible { display: flex; }
.cat-scroll-arrow.left {
  left: 0;
  padding-left: 4px; padding-right: 24px;
  background: linear-gradient(to right, rgba(20, 20, 20, 1) 70%, transparent);
}
.cat-scroll-arrow.right {
  right: 0;
  padding-right: 4px; padding-left: 24px;
  background: linear-gradient(to left, rgba(20, 20, 20, 1) 70%, transparent);
}
.cat-scroll-pill {
  display: inline-flex;
  align-items: center; justify-content: center;
  background-color: var(--color-primary);
  border-radius: 999px;
  padding: 6px;
}
.cat-scroll-pill svg { color: #fff; }
.cat-chip {
  flex-shrink: 0;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  background: transparent;
  color: var(--color-text-muted);
  border: 0;
  white-space: nowrap;
  transition: background-color .15s, color .15s;
}
.cat-chip:hover, .cat-chip.is-active { background: var(--color-primary); color: #fff; }

.cat-dropdown {
  position: absolute; left: 0; right: 0;
  background: rgba(15, 15, 15, .98);
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 20px 40px rgba(0, 0, 0, .5);
  z-index: 60;
  display: none;
}
.cat-dropdown.is-open { display: block; }
.cat-dropdown-panel { display: none; }
.cat-dropdown-panel.is-active { display: block; }
.cat-dropdown-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  padding: 20px 0;
}
.cat-dropdown-link {
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-muted);
  transition: background-color .15s, color .15s;
  display: flex; align-items: center;
}
.cat-dropdown-link:hover { background: rgba(233, 30, 99, .1); color: var(--color-text-heading); }
.cat-dropdown-link.is-hot { color: #ff5722; }
.cat-dropdown-link.is-hot:hover { background: rgba(255, 87, 34, .1); color: #ff8a65; }

.hot-badge {
  display: inline-flex; align-items: center; gap: 2px;
  margin-left: 6px;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  background: rgba(255, 87, 34, .8);
  color: #fff;
  border: 1px solid rgba(255, 140, 100, .6);
  line-height: 1;
}
.hot-badge svg { width: 10px; height: 10px; }

/* =====================================================================
   MOBILE MENU
   ===================================================================== */
.mobile-menu {
  position: fixed; inset: 0;
  background: var(--color-bg);
  z-index: 9999;
  overflow-y: auto;
  display: none;
}
.mobile-menu.is-open { display: block; }
.mobile-menu-header {
  position: sticky; top: 0;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px; background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  z-index: 1;
}
.mobile-menu-title { font-size: 18px; font-weight: 700; color: var(--color-text-heading); }
.mobile-menu .quick-links { display: flex; gap: 8px; padding: 16px 16px 8px; }
.mobile-menu .quick-links a {
  flex: 1; display: inline-flex; align-items: center; justify-content: center;
  padding: 12px; border-radius: 999px;
  font-size: 13px; font-weight: 600; color: #fff;
  border: 1px solid rgba(255, 255, 255, .2);
}
.mobile-menu-list { padding: 8px 16px; }
.mobile-menu-cat {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 12px 0;
  background: transparent; border: 0;
  font-size: 15px; font-weight: 600;
  color: var(--color-text-muted);
}
.mobile-menu-cat.is-open { color: var(--color-primary); }
.mobile-menu-cat svg { transition: transform .2s; }
.mobile-menu-cat.is-open svg { transform: rotate(180deg); }
.mobile-menu-cat-pages {
  display: none;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
  padding-bottom: 12px;
}
.mobile-menu-cat-pages.is-open { display: grid; }
.mobile-menu-cat-pages a {
  display: flex; align-items: center;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 14px; font-weight: 500;
  background: var(--color-bg-card);
  color: var(--color-text-muted);
}
.mobile-menu-cat-pages a.is-hot { color: #ff5722; }

/* =====================================================================
   SEARCH OVERLAY
   ===================================================================== */
.search-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0, 0, 0, .75); backdrop-filter: blur(4px);
  display: none;
  align-items: flex-start; justify-content: center;
  padding-top: 15vh;
}
.search-overlay.is-open { display: flex; }
.search-box {
  width: 100%; max-width: 512px; margin: 0 16px;
  border-radius: 16px; overflow: hidden;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  box-shadow: 0 25px 50px rgba(0, 0, 0, .5);
}
.search-input-row {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--color-border);
}
.search-input-row input {
  flex: 1; background: transparent; border: 0;
  font-size: 16px; font-weight: 500; color: var(--color-text-heading);
  outline: none;
}
.search-input-row .esc {
  font-size: 11px; font-weight: 600;
  padding: 4px 8px; border-radius: 6px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
}
.search-results { max-height: 320px; overflow-y: auto; padding: 8px 0; }
.search-result {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 20px;
  color: var(--color-text-muted);
  font-size: 14px;
}
.search-result:hover, .search-result.is-selected {
  background: rgba(255, 255, 255, .06);
  color: var(--color-text-heading);
}
.search-result svg { color: var(--color-primary); flex-shrink: 0; }
.search-result .hint { font-size: 12px; opacity: .6; margin-top: 2px; }
.search-no-results { padding: 16px 20px; font-size: 14px; color: var(--color-text-muted); }

/* =====================================================================
   BLOCKS — Title / Text
   ===================================================================== */
.block-title-h1 {
  font-size: 36px; line-height: 1.1;
  font-weight: 800; letter-spacing: -.02em;
  color: var(--color-text-heading); margin: 0;
}
@media (min-width: 640px)  { .block-title-h1 { font-size: 48px; } }
@media (min-width: 1024px) { .block-title-h1 { font-size: 60px; } }

.block-title-h2 {
  font-size: 30px; line-height: 1.1;
  font-weight: 800; letter-spacing: -.02em;
  color: var(--color-text-heading); margin: 0;
}
@media (min-width: 640px) { .block-title-h2 { font-size: 36px; } }

.block-title-h3 {
  font-size: 24px; line-height: 1.25;
  font-weight: 700;
  color: var(--color-text-heading); margin: 0;
}
@media (min-width: 640px) { .block-title-h3 { font-size: 30px; } }

.text-center { text-align: center; }
.text-right { text-align: right; }
.title-highlight { color: var(--color-primary); }

.rich-text { font-size: 17px; line-height: 1.55; color: var(--color-text); }
.rich-text p { margin: 0 0 .5em; }
.rich-text p:last-child { margin-bottom: 0; }
.rich-text ul, .rich-text ol { margin: 0 0 1em; padding-left: 24px; }
.rich-text ul { list-style: disc; }
.rich-text ol { list-style: decimal; }
.rich-text h2, .rich-text h3, .rich-text h4 {
  margin: 1.5em 0 .5em; color: var(--color-text-heading); font-weight: 700;
}
.rich-text a { color: var(--color-primary); font-weight: 600; }
.rich-text a:hover { text-decoration: underline; }
.rich-text strong { font-weight: 700; }
.rich-text em { font-style: italic; }
.rich-text u { text-decoration: underline; }
.rich-text s { text-decoration: line-through; }

/* =====================================================================
   BLOCKS — CTA / Image / Separator / FAQ
   ===================================================================== */
.block-cta { display: flex; justify-content: center; }
.cta-btn {
  display: inline-block;
  padding: 16px 40px;
  border-radius: 12px;
  font-size: 18px; font-weight: 700; letter-spacing: .03em;
  transition: transform .2s, box-shadow .2s, background-color .2s;
}
.cta-btn.is-primary {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 4px 20px rgba(233, 30, 99, .3);
}
.cta-btn.is-primary:hover { background: var(--color-primary-hover); color: #fff; transform: scale(1.05); box-shadow: 0 6px 25px rgba(233, 30, 99, .45); }
.cta-btn.is-secondary {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}
.cta-btn.is-secondary:hover { background: rgba(233, 30, 99, .08); transform: scale(1.05); }

.block-image img { width: 100%; border-radius: 12px; }

.block-separator { border: 0; border-top: 1px solid var(--color-border); margin: 0; }

.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  overflow: hidden;
}
.faq-item > summary {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px;
  font-size: 16px; font-weight: 700;
  color: var(--color-text-heading);
  cursor: pointer;
  list-style: none;
}
.faq-item > summary::-webkit-details-marker { display: none; }
.faq-item > summary svg { color: var(--color-text-muted); transition: transform .2s; flex-shrink: 0; }
.faq-item[open] > summary svg { transform: rotate(180deg); }
.faq-answer { padding: 0 20px 20px; font-size: 16px; color: var(--color-text-muted); line-height: 1.6; }

/* =====================================================================
   MODELS GRID
   ===================================================================== */
.models-grid { display: grid; gap: 28px; }
.models-grid.cols-1 { grid-template-columns: 1fr; max-width: 28rem; margin: 0 auto; }
.models-grid.cols-2 { grid-template-columns: 1fr; max-width: 48rem; margin: 0 auto; }
.models-grid.cols-3 { grid-template-columns: 1fr; }
.models-grid.cols-4 { grid-template-columns: 1fr; }
@media (min-width: 640px) {
  .models-grid.cols-2 { grid-template-columns: 1fr 1fr; }
  .models-grid.cols-3 { grid-template-columns: 1fr 1fr; }
  .models-grid.cols-4 { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .models-grid.cols-3 { grid-template-columns: 1fr 1fr 1fr; }
  .models-grid.cols-4 { grid-template-columns: 1fr 1fr 1fr; }
}
@media (min-width: 1280px) {
  .models-grid.cols-4 { grid-template-columns: 1fr 1fr 1fr 1fr; }
}

/* =====================================================================
   MODEL CARD
   ===================================================================== */
.model-card {
  position: relative;
  display: block;
  background-color: #141414;
  border: 2px solid #2a2a2a;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow:
    0 4px 12px rgba(0, 0, 0, .5),
    0 1px 3px rgba(0, 0, 0, .3),
    inset 0 1px 0 rgba(255, 255, 255, .04);
  transition: transform .3s, border-color .3s, background-color .3s, box-shadow .3s;
}
.model-card:hover {
  transform: translateY(-4px);
  background-color: #1a1a1a;
  border-color: var(--color-primary);
  box-shadow:
    0 12px 40px rgba(233, 30, 99, .2),
    0 4px 15px rgba(0, 0, 0, .5);
  color: inherit;
}
.model-card.is-featured {
  border-color: var(--color-primary);
  box-shadow:
    0 4px 20px rgba(233, 30, 99, .15),
    0 4px 12px rgba(0, 0, 0, .5);
}

.model-card-overlay-tl {
  position: absolute; top: 12px; left: 12px;
  z-index: 5;
  display: flex; flex-wrap: wrap; gap: 6px;
  max-width: 65%;
}
.pill-featured {
  background: var(--color-primary);
  color: #fff;
  border-radius: 999px;
  padding: 4px 12px;
  font-size: 12px; font-weight: 700;
}
.badge-pill {
  display: inline-flex; align-items: center; gap: 6px;
  border-radius: 999px;
  padding: 4px 12px;
  font-size: 12px; font-weight: 700;
  backdrop-filter: blur(4px);
}

.model-card-gallery {
  position: relative;
  aspect-ratio: 3 / 4;
  background-color: #0e0e0e;
  overflow: visible;
}
.model-card-img-wrap {
  position: absolute; inset: 0;
  overflow: hidden;
}
.model-card-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: none;
}
.model-card-img-wrap img.is-active { display: block; }

.gallery-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 10;
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(0, 0, 0, .55);
  color: #fff;
  border: 0; border-radius: 999px;
}
.gallery-nav.prev { left: 4px; }
.gallery-nav.next { right: 4px; }
.gallery-nav svg { width: 18px; height: 18px; }

.gallery-dots {
  position: absolute; left: 0; right: 0; bottom: 8px;
  z-index: 10;
  display: flex; align-items: center; justify-content: center;
  gap: 0;
}
.gallery-dot {
  background: transparent; border: 0;
  padding: 12px 10px;
  display: inline-flex; align-items: center; justify-content: center;
}
.gallery-dot span {
  display: block;
  width: 8px; height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .5);
  transition: width .2s, background-color .2s;
}
.gallery-dot.is-active span { width: 20px; background: #fff; }

/* Video circle overlay (bottom-right) */
.video-bubble {
  position: absolute; right: 16px; bottom: -20px;
  z-index: 20;
  width: 72px; height: 72px;
  border-radius: 999px;
  border: 3.5px solid var(--color-primary);
  box-shadow: 0 4px 16px rgba(233, 30, 99, .5), 0 0 0 3px rgba(0, 0, 0, .8);
  background: rgba(0, 0, 0, .7);
  overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform .2s;
}
.video-bubble:hover { transform: scale(1.1); }
.video-bubble > img,
.video-bubble > video {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  border-radius: 999px;
}
.video-bubble .play-shade {
  position: absolute; inset: 0;
  background: rgba(0, 0, 0, .3);
  border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
}
.video-bubble .play-shade svg {
  width: 30px; height: 30px;
  color: #fff;
  margin-left: 3px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, .6));
}
.video-bubble .video-count-badge {
  position: absolute; top: -2px; right: -2px;
  width: 22px; height: 22px;
  border-radius: 999px;
  background: var(--color-primary);
  color: #fff;
  font-size: 10px; font-weight: 700;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 1px 4px rgba(0, 0, 0, .4);
}

.model-card-body { padding: 14px; }
@media (min-width: 640px) { .model-card-body { padding: 16px; } }

.model-card-name {
  font-size: 16px; font-weight: 800;
  color: #fff;
  margin: 0 0 2px;
}
@media (min-width: 640px) { .model-card-name { font-size: 18px; } }

.model-card-rate {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 700;
  color: #f06292;
  margin-bottom: 4px;
}
.model-card-langs {
  font-size: 11px;
  color: var(--color-text-muted);
  margin: 0 0 6px;
}

.voice-btn {
  display: flex; align-items: center; gap: 4px;
  width: 100%;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 8px;
  padding: 8px 12px;
  margin-bottom: 8px;
  color: #ce93d8;
}
.voice-btn.is-playing {
  background: rgba(156, 39, 176, .12);
  border-color: rgba(156, 39, 176, .3);
}
.voice-btn .icon { flex-shrink: 0; margin-right: 4px; }
.voice-bars { display: flex; align-items: center; gap: 2px; flex: 1; height: 20px; }
.voice-bars span {
  display: inline-block;
  width: 3px;
  border-radius: 999px;
  background: #ce93d8;
  opacity: .5;
  flex-shrink: 0;
}
.voice-btn.is-playing .voice-bars span {
  opacity: 1;
  animation: media-wave .6s ease-in-out infinite alternate;
}
.voice-btn .label { flex-shrink: 0; font-size: 10px; font-weight: 600; margin-left: 4px; }

@keyframes media-wave { 0% { height: 4px; } 100% { height: 14px; } }

.model-card-desc {
  font-size: 12px;
  color: rgba(255, 255, 255, .75);
  line-height: 1.3;
  margin: 0 0 10px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (min-width: 640px) { .model-card-desc { font-size: 13px; } }

.phone-row {
  width: 100%;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: rgba(0, 200, 83, .15);
  color: #fff;
  border: 1px solid rgba(0, 200, 83, .3);
  border-radius: 8px;
  padding: 8px;
  margin-bottom: 8px;
  font-size: 13px; font-weight: 700;
}
@media (min-width: 640px) { .phone-row { font-size: 14px; } }
.phone-row.is-reveal { background: rgba(0, 200, 83, .1); color: #00c853; }

.model-card-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%;
  padding: 11px 20px;
  border-radius: 12px;
  font-size: 14px; font-weight: 800;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, #e91e63, #c2185b);
  box-shadow: 0 4px 15px rgba(233, 30, 99, .35);
  transition: transform .25s, box-shadow .25s, background .25s;
  text-decoration: none;
}
@media (min-width: 640px) { .model-card-btn { padding: 14px 24px; font-size: 15px; } }
.model-card-btn:hover { background: linear-gradient(135deg, #f02e73, #d81b60); box-shadow: 0 6px 25px rgba(233, 30, 99, .5); transform: translateY(-2px); color: #fff; }
.model-card-btn:active { transform: translateY(0); }

/* =====================================================================
   RELATED PAGES
   ===================================================================== */
.related-pages { margin-top: 56px; padding-top: 32px; border-top: 1px solid var(--color-border); }
.related-pages h2 { font-size: 18px; font-weight: 700; color: var(--color-text-heading); margin: 0 0 20px; }
.related-grid { display: grid; grid-template-columns: 1fr; gap: 12px; }
@media (min-width: 640px) { .related-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .related-grid { grid-template-columns: 1fr 1fr 1fr; } }
.related-page-card {
  position: relative;
  display: flex; flex-direction: column; gap: 6px;
  padding: 16px 20px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .03);
  border: 1px solid var(--color-border);
  text-decoration: none;
  transition: border-color .2s, background-color .2s;
}
.related-page-card:hover { border-color: var(--color-primary); background: rgba(233, 30, 99, .05); }
.related-page-title { font-size: 15px; font-weight: 700; color: #f06292; line-height: 1.3; padding-right: 24px; }
.related-page-desc { font-size: 13px; color: var(--color-text-muted); line-height: 1.5; }
.related-page-arrow { position: absolute; top: 16px; right: 16px; font-size: 16px; color: var(--color-primary); transition: transform .2s; }
.related-page-card:hover .related-page-arrow { transform: translateX(3px); }

/* =====================================================================
   FOOTER
   ===================================================================== */
.site-footer {
  border-top: 1px solid var(--color-border);
  background: var(--color-bg);
  padding: 40px 0;
}
.footer-cols {
  display: grid;
  gap: 32px;
  margin-bottom: 40px;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 768px) { .footer-cols.cols-3 { grid-template-columns: repeat(3, 1fr); } .footer-cols.cols-4 { grid-template-columns: repeat(4, 1fr); } }
.footer-cols h4 {
  font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .07em;
  color: var(--color-text-heading);
  margin: 0 0 16px;
}
.footer-cols ul { list-style: none; margin: 0; padding: 0; }
.footer-cols li { margin-bottom: 10px; }
.footer-cols a { font-size: 14px; color: var(--color-text-muted); transition: filter .2s; }
.footer-cols a:hover { filter: brightness(1.25); color: var(--color-text-muted); }
.footer-divider { border: 0; border-top: 1px solid var(--color-border); margin-bottom: 24px; }
.footer-disclaimer { font-size: 12px; color: #808080; margin: 0 0 24px; line-height: 1.6; }
.footer-legal {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 20px; margin-bottom: 20px;
}
.footer-legal a, .footer-legal span { font-size: 12px; color: #808080; }
.footer-bottom {
  display: flex; flex-direction: column; align-items: center; justify-content: space-between;
  gap: 12px;
}
@media (min-width: 640px) { .footer-bottom { flex-direction: row; } }
.footer-bottom p { font-size: 14px; font-weight: 500; color: var(--color-text-muted); margin: 0; }
.footer-age {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 700;
  background: rgba(233, 30, 99, .15);
  color: #f06292;
  border: 1px solid rgba(233, 30, 99, .3);
  border-radius: 6px;
  padding: 4px 10px;
}
.footer-age span { font-weight: 500; color: var(--color-text-muted); }

/* =====================================================================
   HOMEPAGE
   ===================================================================== */
.hp-wrap { padding-top: 32px; padding-bottom: 56px; }
@media (min-width: 640px) { .hp-wrap { padding-top: 56px; padding-bottom: 80px; } }

.hp-hero { text-align: center; margin-bottom: 32px; }
.hp-hero-pill {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .03em;
  margin-bottom: 12px;
  padding: 4px 12px;
  border-radius: 6px;
  background-color: rgba(255, 255, 255, .05);
  color: var(--color-text-muted);
}
@media (min-width: 640px) { .hp-hero-pill { font-size: 14px; } }
.hp-hero-h1 {
  font-size: 24px;
  line-height: 1.15;
  font-weight: 800;
  color: var(--color-text-heading);
  margin: 0 0 8px;
}
@media (min-width: 640px) { .hp-hero-h1 { font-size: 30px; } }
.hp-hero-sub {
  font-size: 14px;
  color: var(--color-text-muted);
  max-width: 42rem;
  margin: 0 auto;
}
@media (min-width: 640px) { .hp-hero-sub { font-size: 16px; } }

.hp-section { margin-bottom: 56px; }
.hp-section-head { text-align: center; margin-bottom: 24px; }
.hp-section-h2 {
  font-size: 24px;
  line-height: 1.15;
  font-weight: 800;
  color: var(--color-text-heading);
  margin: 0 0 8px;
}
@media (min-width: 640px) { .hp-section-h2 { font-size: 30px; } }
.hp-section-h2-center { text-align: center; margin-bottom: 24px; }
.hp-section-sub {
  font-size: 14px;
  color: var(--color-text-muted);
  margin: 0;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

/* Image cards (category cards on homepage) */
.image-card-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 640px) {
  .image-card-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
  .image-card-grid.cols-4 { grid-template-columns: repeat(3, 1fr); }
  .image-card-grid.cols-6 { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1024px) {
  .image-card-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
  .image-card-grid.cols-6 { grid-template-columns: repeat(6, 1fr); }
}
.image-card-grid.cols-3.narrow { max-width: 42rem; margin-left: auto; margin-right: auto; }

.image-card {
  position: relative;
  display: block;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  background-color: #0e0e0e;
}
.image-card-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s;
}
.image-card:hover .image-card-img { transform: scale(1.1); }
.image-card-fallback { position: absolute; inset: 0; background: var(--color-bg-card); }
.image-card-shade {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .8) 0%, rgba(0, 0, 0, .3) 50%, rgba(0, 0, 0, .1) 100%);
  z-index: 10;
  transition: background .3s;
}
.image-card:hover .image-card-shade { background: linear-gradient(to top, rgba(0, 0, 0, .6) 0%, rgba(0, 0, 0, .25) 50%, rgba(0, 0, 0, .1) 100%); }
.image-card-label {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 12px;
  z-index: 20;
  text-align: center;
}
.image-card-label h3 {
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .03em;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .7);
  margin: 0 0 4px;
}
@media (min-width: 640px) { .image-card-label h3 { font-size: 16px; } }
.image-card-label span {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  opacity: .7;
  transition: opacity .2s, gap .2s;
}
.image-card:hover .image-card-label span { opacity: 1; gap: 6px; }

/* Homepage CTA buttons (pink + blue pills) */
.hp-cta-row { text-align: center; margin-bottom: 56px; }
.hp-cta-pair { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px; }
@media (min-width: 640px) { .hp-cta-pair { flex-direction: row; } }
.hp-cta-pink, .hp-cta-blue {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px;
  border-radius: 999px;
  font-size: 16px; font-weight: 700;
  color: #fff;
  text-decoration: none;
  transition: transform .2s;
}
.hp-cta-pink { background-color: var(--color-primary); }
.hp-cta-blue { background-color: #2196f3; }
.hp-cta-pink:hover, .hp-cta-blue:hover { transform: scale(1.05); color: #fff; }

.hp-cat-sections { display: flex; flex-direction: column; gap: 56px; }

/* Reassurance blocks */
.hp-reassure {
  margin-top: 64px;
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 1024px) { .hp-reassure { grid-template-columns: repeat(4, 1fr); } }
.reassure-card {
  background-color: var(--color-bg-card);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
}
.reassure-icon { display: flex; justify-content: center; margin-bottom: 12px; color: var(--color-primary); }
.reassure-card h3 { font-size: 14px; font-weight: 700; color: var(--color-text-heading); margin: 0 0 8px; }
@media (min-width: 640px) { .reassure-card h3 { font-size: 16px; } }
.reassure-card p { font-size: 12px; color: var(--color-text-muted); margin: 0; line-height: 1.5; }
@media (min-width: 640px) { .reassure-card p { font-size: 14px; } }

/* SEO content */
.hp-seo {
  margin-top: 64px;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}
.hp-seo h2 {
  font-size: 24px;
  font-weight: 800;
  text-align: center;
  color: var(--color-text-heading);
  margin: 0 0 32px;
}
@media (min-width: 640px) { .hp-seo h2 { font-size: 30px; } }
.hp-seo p {
  font-size: 14px;
  line-height: 1.85;
  color: var(--color-text-muted);
  margin: 0 0 32px;
}
@media (min-width: 640px) { .hp-seo p { font-size: 16px; } }
.hp-seo p strong { color: var(--color-text-heading); }

/* FAQ */
.hp-faq {
  margin-top: 64px;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}
.hp-faq h2 {
  font-size: 24px;
  font-weight: 800;
  text-align: center;
  color: var(--color-text-heading);
  margin: 0 0 32px;
}
@media (min-width: 640px) { .hp-faq h2 { font-size: 30px; } }

/* Final CTA */
.hp-final-cta { margin-top: 64px; text-align: center; }
.hp-final-cta h2 {
  font-size: 24px;
  font-weight: 800;
  color: var(--color-text-heading);
  margin: 0 0 16px;
}
@media (min-width: 640px) { .hp-final-cta h2 { font-size: 30px; } }
.hp-final-cta > p {
  font-size: 14px;
  color: var(--color-text-muted);
  max-width: 36rem;
  margin: 0 auto 32px;
}
@media (min-width: 640px) { .hp-final-cta > p { font-size: 16px; } }

/* =====================================================================
   404 PAGE
   ===================================================================== */
.notfound-wrap {
  padding-top: 80px;
  padding-bottom: 80px;
  text-align: center;
}
@media (min-width: 640px) {
  .notfound-wrap { padding-top: 128px; padding-bottom: 128px; }
}
.notfound-h1 {
  font-size: 60px;
  font-weight: 800;
  color: var(--color-primary);
  margin: 0 0 16px;
  line-height: 1;
}
@media (min-width: 640px) { .notfound-h1 { font-size: 96px; } }
.notfound-h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-text-heading);
  margin: 0 0 16px;
}
@media (min-width: 640px) { .notfound-h2 { font-size: 30px; } }
.notfound-sub {
  font-size: 16px;
  color: var(--color-text-muted);
  max-width: 28rem;
  margin: 0 auto 32px;
}
@media (min-width: 640px) { .notfound-sub { font-size: 18px; } }
.notfound-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .03em;
  background: linear-gradient(135deg, #e91e63, #c2185b);
  color: #fff;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
}
.notfound-cta:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(233, 30, 99, .5);
}

/* =====================================================================
   LEGAL PAGES (privacy, terms, 2257, site-map)
   ===================================================================== */
.legal-wrap { padding-top: 40px; padding-bottom: 64px; }
@media (min-width: 640px) { .legal-wrap { padding-top: 64px; padding-bottom: 80px; } }
.legal-inner { max-width: 48rem; margin: 0 auto; }
.legal-h1 {
  font-size: 30px; font-weight: 800;
  color: var(--color-text-heading);
  margin: 0 0 8px;
}
@media (min-width: 640px) { .legal-h1 { font-size: 36px; } }
.legal-sub {
  font-size: 14px; color: var(--color-text-muted);
  margin: 0 0 40px;
}
.legal-content { color: var(--color-text); }
.legal-content > section + section { margin-top: 32px; }
.legal-content .legal-h2 {
  font-size: 20px; font-weight: 700;
  color: var(--color-text-heading);
  margin: 0 0 12px;
}
.legal-content p { line-height: 1.7; margin: 0 0 12px; }
.legal-content p:last-child { margin-bottom: 0; }
.legal-content ul { list-style: disc; padding-left: 24px; margin: 8px 0 0; }
.legal-content li { line-height: 1.7; margin-bottom: 8px; }
.legal-content strong { color: var(--color-text-heading); font-weight: 700; }

.sitemap-sections { display: flex; flex-direction: column; gap: 40px; }
.sitemap-h2 {
  font-size: 18px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .07em;
  color: var(--color-primary);
  margin: 0 0 16px;
}
.sitemap-list { list-style: none; margin: 0; padding: 0; }
.sitemap-list li { margin-bottom: 8px; }
.sitemap-list a {
  font-size: 14px;
  color: var(--color-text-muted);
  transition: filter .2s;
}
.sitemap-list a:hover { filter: brightness(1.25); color: var(--color-text-muted); }

/* =====================================================================
   AGE GATE — narrow centered card, identical to React component
   ===================================================================== */
.age-gate {
  position: fixed; inset: 0;
  background: rgba(0, 0, 0, .92); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  z-index: 99999;
  display: none;
  align-items: center; justify-content: center;
  padding: 16px;
}
.age-gate.is-open { display: flex; }
.age-gate-box {
  max-width: 384px; width: 100%;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  box-shadow: 0 25px 50px rgba(0, 0, 0, .5);
}
.age-gate-title {
  font-size: 18px; font-weight: 700;
  color: var(--color-text-heading);
  margin: 0 0 8px;
}
.age-gate-sub {
  font-size: 14px; color: var(--color-text-muted);
  margin: 0 0 24px;
  line-height: 1.5;
}
.age-gate-actions { display: flex; gap: 12px; }
.age-gate-actions button {
  flex: 1;
  padding: 10px 0;
  border-radius: 8px;
  font-size: 14px; font-weight: 600;
  border: 0;
  cursor: pointer;
  transition: opacity .2s, background-color .2s;
}
.age-gate-actions .yes { background: #c2185b; color: #fff; }
.age-gate-actions .yes:hover { opacity: .9; }
.age-gate-actions .no {
  background: rgba(255, 255, 255, .06);
  color: var(--color-text-muted);
  border: 1px solid var(--color-border);
}
.age-gate-actions .no:hover { background: rgba(255, 255, 255, .1); }

/* =====================================================================
   VIDEO MODAL (lightweight, used by ModelCard video bubble)
   ===================================================================== */
.video-modal {
  position: fixed; inset: 0;
  background: rgba(0, 0, 0, .9); backdrop-filter: blur(6px);
  z-index: 99999;
  display: none;
  align-items: center; justify-content: center;
  padding: 24px;
}
.video-modal.is-open { display: flex; }
.video-modal-box {
  position: relative;
  max-width: 900px; width: 100%;
  background: #000;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 80px rgba(0, 0, 0, .8);
}
.video-modal-box video,
.video-modal-box iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  background: #000;
}
.video-modal-close {
  position: absolute; top: 12px; right: 12px;
  width: 40px; height: 40px;
  background: rgba(0, 0, 0, .6);
  border: 1.5px solid rgba(255, 255, 255, .3);
  border-radius: 999px;
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  z-index: 2;
}
