/* Auto-generated by scripts/setup-fonts.js. Self-hosted Poppins (latin subset). */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/poppins-400.woff2') format('woff2');
}

@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/fonts/poppins-500.woff2') format('woff2');
}

@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/fonts/poppins-600.woff2') format('woff2');
}

@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/fonts/poppins-700.woff2') format('woff2');
}

@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('/fonts/poppins-800.woff2') format('woff2');
}

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

:root {
  --color-primary: #9c27b0;
  --color-primary-hover: #7b1fa2;
  --color-secondary: #ec407a;
  --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: 'Poppins', 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.vcb-btn, .vcb-btn { color: inherit; text-decoration: none; }
a.vcb-btn:hover { color: inherit; }

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

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

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

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

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

/* =====================================================================
   ANNOUNCEMENT BAR
   ===================================================================== */
/* Whole bar is clickable (matches React AnnouncementBar.vcb-tsx) */
.vcb-announcement-bar {
  position: relative;
  width: 100%;
  background: linear-gradient(135deg, #e91e63, #c2185b);
}
.vcb-announcement-bar.vcb-is-hidden { display: none; }
.vcb-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) { .vcb-announcement-bar-link { font-size: 16px; } }
.vcb-announcement-bar-link:hover { filter: brightness(1.1); color: #fff; }
.vcb-announcement-bar-content {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.vcb-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) { .vcb-announcement-bar-pill { font-size: 12px; } }
.vcb-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;
}
.vcb-announcement-bar-close:hover { background-color: rgba(255, 255, 255, .2); }

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

.vcb-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);
}
.vcb-site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 64px;
}
.vcb-site-logo { font-size: 20px; font-weight: 800; letter-spacing: -.01em; color: var(--color-text-heading); display: inline-flex; align-items: center; }
.vcb-site-logo img { height: 40px; width: auto; }

.vcb-header-actions { display: flex; align-items: center; gap: 8px; }
.vcb-header-actions .vcb-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;
}
.vcb-header-actions .vcb-pill:hover { background: rgba(255, 255, 255, .1); color: #fff; }
@media (min-width: 768px) { .vcb-header-actions .vcb-pill { display: inline-block; } }

.vcb-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;
}
.vcb-icon-btn:hover { background: rgba(255, 255, 255, .06); color: var(--color-text-heading); }
.vcb-icon-btn.vcb-menu { display: inline-flex; }
@media (min-width: 768px) { .vcb-icon-btn.vcb-menu { display: none; } }

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

/* Pink scroll arrows on the category bar */
.vcb-cat-scroll-arrow {
  position: absolute;
  top: 0; bottom: 0;
  display: none;
  align-items: center;
  z-index: 10;
  background: 0;
  border: 0;
  cursor: pointer;
}
.vcb-cat-scroll-arrow.vcb-is-visible { display: flex; }
.vcb-cat-scroll-arrow.vcb-left {
  left: 0;
  padding-left: 4px; padding-right: 24px;
  background: linear-gradient(to right, rgba(20, 20, 20, 1) 70%, transparent);
}
.vcb-cat-scroll-arrow.vcb-right {
  right: 0;
  padding-right: 4px; padding-left: 24px;
  background: linear-gradient(to left, rgba(20, 20, 20, 1) 70%, transparent);
}
.vcb-cat-scroll-pill {
  display: inline-flex;
  align-items: center; justify-content: center;
  background-color: var(--color-primary);
  border-radius: 999px;
  padding: 6px;
}
.vcb-cat-scroll-pill svg { color: #fff; }
.vcb-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;
}
.vcb-cat-chip:hover, .vcb-cat-chip.vcb-is-active { background: var(--color-primary); color: #fff; }

.vcb-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;
}
.vcb-cat-dropdown.vcb-is-open { display: block; }
.vcb-cat-dropdown-panel { display: none; }
.vcb-cat-dropdown-panel.vcb-is-active { display: block; }
.vcb-cat-dropdown-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  padding: 20px 0;
}
.vcb-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;
}
.vcb-cat-dropdown-link:hover { background: rgba(233, 30, 99, .1); color: var(--color-text-heading); }
.vcb-cat-dropdown-link.vcb-is-hot { color: #ff5722; }
.vcb-cat-dropdown-link.vcb-is-hot:hover { background: rgba(255, 87, 34, .1); color: #ff8a65; }

.vcb-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;
}
.vcb-hot-badge svg { width: 10px; height: 10px; }

/* =====================================================================
   MOBILE MENU
   ===================================================================== */
.vcb-mobile-menu {
  position: fixed; inset: 0;
  background: var(--color-bg);
  z-index: 9999;
  overflow-y: auto;
  display: none;
}
.vcb-mobile-menu.vcb-is-open { display: block; }
.vcb-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;
}
.vcb-mobile-menu-title { font-size: 18px; font-weight: 700; color: var(--color-text-heading); }
.vcb-mobile-menu .vcb-quick-links { display: flex; gap: 8px; padding: 16px 16px 8px; }
.vcb-mobile-menu .vcb-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);
}
.vcb-mobile-menu-list { padding: 8px 16px; }
.vcb-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);
}
.vcb-mobile-menu-cat.vcb-is-open { color: var(--color-primary); }
.vcb-mobile-menu-cat svg { transition: transform .2s; }
.vcb-mobile-menu-cat.vcb-is-open svg { transform: rotate(180deg); }
.vcb-mobile-menu-cat-pages {
  display: none;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
  padding-bottom: 12px;
}
.vcb-mobile-menu-cat-pages.vcb-is-open { display: grid; }
.vcb-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);
}
.vcb-mobile-menu-cat-pages a.vcb-is-hot { color: #ff5722; }

/* =====================================================================
   SEARCH OVERLAY
   ===================================================================== */
.vcb-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;
}
.vcb-search-overlay.vcb-is-open { display: flex; }
.vcb-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);
}
.vcb-search-input-row {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--color-border);
}
.vcb-search-input-row input {
  flex: 1; background: transparent; border: 0;
  font-size: 16px; font-weight: 500; color: var(--color-text-heading);
  outline: none;
}
.vcb-search-input-row .vcb-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);
}
.vcb-search-results { max-height: 320px; overflow-y: auto; padding: 8px 0; }
.vcb-search-result {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 20px;
  color: var(--color-text-muted);
  font-size: 14px;
}
.vcb-search-result:hover, .vcb-search-result.vcb-is-selected {
  background: rgba(255, 255, 255, .06);
  color: var(--color-text-heading);
}
.vcb-search-result svg { color: var(--color-primary); flex-shrink: 0; }
.vcb-search-result .vcb-hint { font-size: 12px; opacity: .6; margin-top: 2px; }
.vcb-search-no-results { padding: 16px 20px; font-size: 14px; color: var(--color-text-muted); }

/* =====================================================================
   BLOCKS — Title / Text
   ===================================================================== */
.vcb-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)  { .vcb-block-title-h1 { font-size: 48px; } }
@media (min-width: 1024px) { .vcb-block-title-h1 { font-size: 60px; } }

.vcb-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) { .vcb-block-title-h2 { font-size: 36px; } }

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

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

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

/* =====================================================================
   BLOCKS — CTA / Image / Separator / FAQ
   ===================================================================== */
.vcb-block-cta { display: flex; justify-content: center; }
.vcb-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;
}
.vcb-cta-btn.vcb-is-primary {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 4px 20px rgba(233, 30, 99, .3);
}
.vcb-cta-btn.vcb-is-primary:hover { background: var(--color-primary-hover); color: #fff; transform: scale(1.05); box-shadow: 0 6px 25px rgba(233, 30, 99, .45); }
.vcb-cta-btn.vcb-is-secondary {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}
.vcb-cta-btn.vcb-is-secondary:hover { background: rgba(233, 30, 99, .08); transform: scale(1.05); }

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

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

.vcb-faq-list { display: flex; flex-direction: column; gap: 12px; }
.vcb-faq-item {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  overflow: hidden;
}
.vcb-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;
}
.vcb-faq-item > summary::-webkit-details-marker { display: none; }
.vcb-faq-item > summary svg { color: var(--color-text-muted); transition: transform .2s; flex-shrink: 0; }
.vcb-faq-item[open] > summary svg { transform: rotate(180deg); }
.vcb-faq-answer { padding: 0 20px 20px; font-size: 16px; color: var(--color-text-muted); line-height: 1.6; }

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

/* =====================================================================
   MODEL CARD
   ===================================================================== */
.vcb-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;
}
.vcb-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;
}
.vcb-model-card.vcb-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);
}

.vcb-model-card-overlay-tl {
  position: absolute; top: 12px; left: 12px;
  z-index: 5;
  display: flex; flex-wrap: wrap; gap: 6px;
  max-width: 65%;
}
.vcb-pill-featured {
  background: var(--color-primary);
  color: #fff;
  border-radius: 999px;
  padding: 4px 12px;
  font-size: 12px; font-weight: 700;
}
.vcb-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);
}

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

.vcb-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;
}
.vcb-gallery-nav.vcb-prev { left: 4px; }
.vcb-gallery-nav.vcb-next { right: 4px; }
.vcb-gallery-nav svg { width: 18px; height: 18px; }

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

/* Video circle overlay (bottom-right) */
.vcb-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;
}
.vcb-video-bubble:hover { transform: scale(1.1); }
.vcb-video-bubble > img,
.vcb-video-bubble > video {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  border-radius: 999px;
}
.vcb-video-bubble .vcb-play-shade {
  position: absolute; inset: 0;
  background: rgba(0, 0, 0, .3);
  border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
}
.vcb-video-bubble .vcb-play-shade svg {
  width: 30px; height: 30px;
  color: #fff;
  margin-left: 3px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, .6));
}
.vcb-video-bubble .vcb-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);
}

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

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

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

.vcb-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;
}
.vcb-voice-btn.vcb-is-playing {
  background: rgba(156, 39, 176, .12);
  border-color: rgba(156, 39, 176, .3);
}
.vcb-voice-btn .vcb-icon { flex-shrink: 0; margin-right: 4px; }
.vcb-voice-bars { display: flex; align-items: center; gap: 2px; flex: 1; height: 20px; }
.vcb-voice-bars span {
  display: inline-block;
  width: 3px;
  border-radius: 999px;
  background: #ce93d8;
  opacity: .5;
  flex-shrink: 0;
}
.vcb-voice-btn.vcb-is-playing .vcb-voice-bars span {
  opacity: 1;
  animation: media-wave .6s ease-in-out infinite alternate;
}
.vcb-voice-btn .vcb-label { flex-shrink: 0; font-size: 10px; font-weight: 600; margin-left: 4px; }

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

.vcb-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) { .vcb-model-card-desc { font-size: 13px; } }

.vcb-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) { .vcb-phone-row { font-size: 14px; } }
.vcb-phone-row.vcb-is-reveal { background: rgba(0, 200, 83, .1); color: #00c853; }

.vcb-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) { .vcb-model-card-btn { padding: 14px 24px; font-size: 15px; } }
.vcb-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; }
.vcb-model-card-btn:active { transform: translateY(0); }

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

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

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

.vcb-hp-hero { text-align: center; margin-bottom: 32px; }
.vcb-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) { .vcb-hp-hero-pill { font-size: 14px; } }
.vcb-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) { .vcb-hp-hero-h1 { font-size: 30px; } }
.vcb-hp-hero-sub {
  font-size: 14px;
  color: var(--color-text-muted);
  max-width: 42rem;
  margin: 0 auto;
}
@media (min-width: 640px) { .vcb-hp-hero-sub { font-size: 16px; } }

.vcb-hp-section { margin-bottom: 56px; }
.vcb-hp-section-head { text-align: center; margin-bottom: 24px; }
.vcb-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) { .vcb-hp-section-h2 { font-size: 30px; } }
.vcb-hp-section-h2-center { text-align: center; margin-bottom: 24px; }
.vcb-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) */
.vcb-image-card-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 640px) {
  .vcb-image-card-grid.vcb-cols-3 { grid-template-columns: repeat(3, 1fr); }
  .vcb-image-card-grid.vcb-cols-4 { grid-template-columns: repeat(3, 1fr); }
  .vcb-image-card-grid.vcb-cols-6 { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1024px) {
  .vcb-image-card-grid.vcb-cols-4 { grid-template-columns: repeat(4, 1fr); }
  .vcb-image-card-grid.vcb-cols-6 { grid-template-columns: repeat(6, 1fr); }
}
.vcb-image-card-grid.vcb-cols-3.vcb-narrow { max-width: 42rem; margin-left: auto; margin-right: auto; }

.vcb-image-card {
  position: relative;
  display: block;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  background-color: #0e0e0e;
}
.vcb-image-card-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s;
}
.vcb-image-card:hover .vcb-image-card-img { transform: scale(1.1); }
.vcb-image-card-fallback { position: absolute; inset: 0; background: var(--color-bg-card); }
.vcb-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;
}
.vcb-image-card:hover .vcb-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%); }
.vcb-image-card-label {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 12px;
  z-index: 20;
  text-align: center;
}
.vcb-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) { .vcb-image-card-label h3 { font-size: 16px; } }
.vcb-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;
}
.vcb-image-card:hover .vcb-image-card-label span { opacity: 1; gap: 6px; }

/* Homepage CTA buttons (pink + blue pills) */
.vcb-hp-cta-row { text-align: center; margin-bottom: 56px; }
.vcb-hp-cta-pair { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px; }
@media (min-width: 640px) { .vcb-hp-cta-pair { flex-direction: row; } }
.vcb-hp-cta-pink, .vcb-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;
}
.vcb-hp-cta-pink { background-color: var(--color-primary); }
.vcb-hp-cta-blue { background-color: #2196f3; }
.vcb-hp-cta-pink:hover, .vcb-hp-cta-blue:hover { transform: scale(1.05); color: #fff; }

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

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

/* SEO content */
.vcb-hp-seo {
  margin-top: 64px;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}
.vcb-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) { .vcb-hp-seo h2 { font-size: 30px; } }
.vcb-hp-seo p {
  font-size: 14px;
  line-height: 1.85;
  color: var(--color-text-muted);
  margin: 0 0 32px;
}
@media (min-width: 640px) { .vcb-hp-seo p { font-size: 16px; } }
.vcb-hp-seo p strong { color: var(--color-text-heading); }
.vcb-hp-seo-h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-text-heading);
  margin: 40px 0 16px;
}
@media (min-width: 640px) { .vcb-hp-seo-h3 { font-size: 24px; margin-top: 48px; } }
.vcb-hp-seo-h3:first-child { margin-top: 0; }
.vcb-hp-seo-list {
  margin: 0 0 32px;
  padding-left: 24px;
  list-style: disc;
  color: var(--color-text-muted);
  font-size: 14px;
  line-height: 1.85;
}
@media (min-width: 640px) { .vcb-hp-seo-list { font-size: 16px; } }
.vcb-hp-seo-list li { margin-bottom: 6px; }
.vcb-hp-seo-list li strong { color: var(--color-text-heading); }

/* FAQ */
.vcb-hp-faq {
  margin-top: 64px;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}
.vcb-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) { .vcb-hp-faq h2 { font-size: 30px; } }

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

/* =====================================================================
   404 PAGE
   ===================================================================== */
.vcb-notfound-wrap {
  padding-top: 80px;
  padding-bottom: 80px;
  text-align: center;
}
@media (min-width: 640px) {
  .vcb-notfound-wrap { padding-top: 128px; padding-bottom: 128px; }
}
.vcb-notfound-h1 {
  font-size: 60px;
  font-weight: 800;
  color: var(--color-primary);
  margin: 0 0 16px;
  line-height: 1;
}
@media (min-width: 640px) { .vcb-notfound-h1 { font-size: 96px; } }
.vcb-notfound-h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-text-heading);
  margin: 0 0 16px;
}
@media (min-width: 640px) { .vcb-notfound-h2 { font-size: 30px; } }
.vcb-notfound-sub {
  font-size: 16px;
  color: var(--color-text-muted);
  max-width: 28rem;
  margin: 0 auto 32px;
}
@media (min-width: 640px) { .vcb-notfound-sub { font-size: 18px; } }
.vcb-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;
}
.vcb-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)
   ===================================================================== */
.vcb-legal-wrap { padding-top: 40px; padding-bottom: 64px; }
@media (min-width: 640px) { .vcb-legal-wrap { padding-top: 64px; padding-bottom: 80px; } }
.vcb-legal-inner { max-width: 48rem; margin: 0 auto; }
.vcb-legal-h1 {
  font-size: 30px; font-weight: 800;
  color: var(--color-text-heading);
  margin: 0 0 8px;
}
@media (min-width: 640px) { .vcb-legal-h1 { font-size: 36px; } }
.vcb-legal-sub {
  font-size: 14px; color: var(--color-text-muted);
  margin: 0 0 40px;
}
.vcb-legal-content { color: var(--color-text); }
.vcb-legal-content > section + section { margin-top: 32px; }
.vcb-legal-content .vcb-legal-h2 {
  font-size: 20px; font-weight: 700;
  color: var(--color-text-heading);
  margin: 0 0 12px;
}
.vcb-legal-content p { line-height: 1.7; margin: 0 0 12px; }
.vcb-legal-content p:last-child { margin-bottom: 0; }
.vcb-legal-content ul { list-style: disc; padding-left: 24px; margin: 8px 0 0; }
.vcb-legal-content li { line-height: 1.7; margin-bottom: 8px; }
.vcb-legal-content strong { color: var(--color-text-heading); font-weight: 700; }

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

/* =====================================================================
   AGE GATE — narrow centered card, identical to React component
   ===================================================================== */
.vcb-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;
}
.vcb-age-gate.vcb-is-open { display: flex; }
.vcb-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);
}
.vcb-age-gate-title {
  font-size: 18px; font-weight: 700;
  color: var(--color-text-heading);
  margin: 0 0 8px;
}
.vcb-age-gate-sub {
  font-size: 14px; color: var(--color-text-muted);
  margin: 0 0 24px;
  line-height: 1.5;
}
.vcb-age-gate-actions { display: flex; gap: 12px; }
.vcb-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;
}
.vcb-age-gate-actions .vcb-yes { background: #c2185b; color: #fff; }
.vcb-age-gate-actions .vcb-yes:hover { opacity: .9; }
.vcb-age-gate-actions .vcb-no {
  background: rgba(255, 255, 255, .06);
  color: var(--color-text-muted);
  border: 1px solid var(--color-border);
}
.vcb-age-gate-actions .vcb-no:hover { background: rgba(255, 255, 255, .1); }

/* =====================================================================
   VIDEO MODAL (lightweight, used by ModelCard video bubble)
   ===================================================================== */
.vcb-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;
}
.vcb-video-modal.vcb-is-open { display: flex; }
.vcb-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);
}
.vcb-video-modal-box video,
.vcb-video-modal-box iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  background: #000;
}
.vcb-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;
}
