/* ============================================================
   FLIRTYVIDEOCHAT — MAIN STYLESHEET  (FVC_VERSION cache-busted)
   White base · warm minimalism · one electric focal point.
   Roles: pink = action · orange = attention · aqua = trust.
   ============================================================ */

:root {
  --pink:        #F43F8E;
  --pink-hover:  #DB2777;
  --pink-tint:   #FDE7F1;
  --pink-deep:   #A81D5B;
  --orange:      #FF6B00;
  --orange-tint: #FFE8D9;
  --orange-deep: #C24F00;
  --aqua:        #12AEBB;
  --aqua-tint:   #E4F7F8;
  --aqua-deep:   #0E7C86;
  --ink:         #1B2430;
  --muted:       #5A6570;
  --faint:       #6B7683;
  --line:        #EEF1F4;
  --bg:          #FFFFFF;
  --sunset:      linear-gradient(135deg, #FFF0F6 0%, #FFF4EA 45%, #FFEDE0 100%);
  --neon:        conic-gradient(from var(--spin, 0deg), #F43F8E, #FF6B00, #12AEBB, #F43F8E);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Lato', -apple-system, sans-serif;

  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 20px;
  --container: 1100px;
  --narrow: 760px;
}

@property --spin { syntax: '<angle>'; initial-value: 0deg; inherits: false; }

/* ── Base ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--aqua-deep); }

.fvc-container { max-width: var(--container); margin: 0 auto; padding: 0 1.25rem; }
.fvc-container--narrow { max-width: var(--narrow); }
.fvc-center { text-align: center; }
.fvc-muted { color: var(--muted); }

.fvc-ink-pink   { color: var(--pink); font-style: inherit; }
.fvc-ink-orange { color: var(--orange); }
.fvc-ink-aqua   { color: var(--aqua); }

.fvc-h1 { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.9rem, 4.5vw, 2.8rem); line-height: 1.15; margin: 0 0 .75rem; }
.fvc-h2 { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.4rem, 3vw, 1.85rem); line-height: 1.2; margin: 0 0 1.25rem; }
.fvc-h2--light { color: #fff; }

/* ── 18+ bar ──────────────────────────────────────────────── */
.fvc-agebar {
  background: var(--ink);
  color: #fff;
  text-align: center;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .04em;
  padding: .4rem .875rem;
}

/* ── Header ───────────────────────────────────────────────── */
.fvc-header { background: var(--bg); border-bottom: 1px solid var(--line); position: relative; z-index: 50; }
.fvc-header__row { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-top: .8rem; padding-bottom: .8rem; }
.fvc-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--ink);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  white-space: nowrap;
}
.fvc-logo__mark { flex-shrink: 0; }
.fvc-logo__text { display: inline-flex; }
.fvc-logo__pink { color: var(--pink); }
.fvc-logo__aqua { color: var(--aqua); }
.fvc-agebadge {
  font-family: var(--font-body);
  font-size: .58rem;
  font-weight: 700;
  border: 1.5px solid var(--ink);
  border-radius: 4px;
  padding: .05rem .35rem;
  letter-spacing: .02em;
}
.fvc-nav__list { display: flex; gap: 1.4rem; list-style: none; }
.fvc-nav__list a { color: var(--muted); text-decoration: none; font-size: .875rem; font-weight: 700; }
.fvc-nav__list a:hover { color: var(--pink); }

/* ── Buttons & pills ──────────────────────────────────────── */
.fvc-btn {
  display: inline-block;
  background: var(--pink);
  color: #fff;
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  border: 0;
  border-radius: 999px;
  padding: .8rem 1.9rem;
  cursor: pointer;
  transition: background .15s ease, transform .12s ease;
}
.fvc-btn:hover { background: var(--pink-hover); transform: translateY(-1px); }
.fvc-btn--sm { padding: .5rem 1.2rem; font-size: .82rem; }
.fvc-btn--block { display: block; width: 100%; }

.fvc-pill {
  display: inline-block;
  font-size: .68rem;
  font-weight: 700;
  border-radius: 999px;
  padding: .28rem .8rem;
  letter-spacing: .01em;
}
.fvc-pill--aqua { border: 1.5px solid var(--aqua); color: var(--aqua-deep); background: transparent; }
.fvc-pill--aqua-solid { background: var(--aqua-tint); color: var(--aqua-deep); }
.fvc-pills { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: .9rem; }
.fvc-textlink { color: var(--aqua-deep); font-weight: 700; font-size: .9rem; text-decoration: none; }
.fvc-textlink:hover { text-decoration: underline; }

/* ── Hero ─────────────────────────────────────────────────── */
.fvc-hero { background: var(--sunset); padding: 3rem 0 2.75rem; }
.fvc-hero__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 2.25rem; align-items: center; }
.fvc-hero__title { font-family: var(--font-display); font-weight: 800; font-size: clamp(2rem, 5vw, 3.1rem); line-height: 1.12; margin: .8rem 0 .75rem; }
.fvc-hero__title em { font-style: italic; }
.fvc-hero__sub { font-size: 1rem; color: var(--muted); max-width: 32rem; }

/* ── Neon ring widget (the signature) ─────────────────────── */
.fvc-widget-section { max-width: 480px; margin: 0 auto; width: 100%; }
/* When the widget leads an inner page (review/keyword/legal/etc.), give it
   breathing room below the header. The homepage hero widget is unaffected
   because it sits inside .fvc-hero, not a bare .fvc-container. */
.fvc-review > .fvc-container:first-child .fvc-widget-section,
.fvc-keyword > .fvc-container:first-child .fvc-widget-section,
.fvc-page > .fvc-container:first-child .fvc-widget-section {
  margin-top: 1.5rem;
  margin-bottom: .5rem;
}
.fvc-ring {
  border-radius: var(--r-lg);
  padding: 4px;
  background: var(--neon);
  animation: fvc-spin 6s linear infinite, fvc-breathe 3s ease-in-out infinite;
}
@keyframes fvc-spin { to { --spin: 360deg; } }
@keyframes fvc-breathe {
  0%, 100% { box-shadow: 0 0 18px rgba(255,107,0,.45), 0 0 40px rgba(244,63,142,.25); }
  50%      { box-shadow: 0 0 30px rgba(255,107,0,.70), 0 0 64px rgba(244,63,142,.45); }
}
.fvc-widget-card { background: #fff; border-radius: 16px; padding: 1rem 1rem 1.15rem; text-align: center; }
.fvc-widget-card__top { display: flex; justify-content: space-between; align-items: center; margin-bottom: .7rem; }
.fvc-live { font-size: .66rem; font-weight: 700; color: var(--orange); letter-spacing: .06em; }

/* Shell holds the CooMeet iframe. Mobile-first: tall by default (most users
   are on phones). Fixed heights prevent layout shift while code.js injects. */
.fvc-widget-shell {
  position: relative;
  border-radius: var(--r-sm);
  overflow: hidden;
  background: linear-gradient(180deg, #FFF4EA, #FFEBDD);
  min-height: 68vh;
}
#coomeet_container { width: 100%; }
#coomeet_container iframe {
  display: block;
  width: 100% !important;
  border: 0;
  height: 68vh !important;
  min-height: 68vh;
}
.fvc-widget-idle {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: .6rem;
  transition: opacity .3s ease;
  z-index: 1;
}
.fvc-widget-idle.is-hidden { opacity: 0; }
.fvc-widget-idle__label { font-size: .8rem; color: var(--faint); }
.fvc-widget-cam {
  position: relative;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: #fff;
  color: var(--orange);
  display: flex; align-items: center; justify-content: center;
}
.fvc-ping {
  position: absolute;
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 2px solid var(--orange);
  animation: fvc-ping 2.2s ease-out infinite;
}
.fvc-ping--2 { animation-delay: 1.1s; }
@keyframes fvc-ping {
  0%   { transform: scale(.6); opacity: .8; }
  100% { transform: scale(1.9); opacity: 0; }
}
.fvc-widget-note { font-size: .72rem; color: var(--faint); margin-top: .6rem; }

/* Tablet / desktop: switch to a fixed pixel height (no more vh). */
@media (min-width: 768px) {
  .fvc-widget-shell { min-height: 560px; }
  #coomeet_container iframe { height: 560px !important; min-height: 560px; }
}

/* ── Steps (editorial numerals) ───────────────────────────── */
.fvc-steps { padding: 2.75rem 0 1.5rem; }
.fvc-steps__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; text-align: center; }
.fvc-step__num { font-family: var(--font-display); font-weight: 800; font-size: 3rem; line-height: 1; display: block; }
.fvc-step p { font-size: .85rem; color: var(--muted); margin-top: .45rem; }

/* ── Review cards ─────────────────────────────────────────── */
.fvc-reviews { padding: 1.5rem 0 2.5rem; }
.fvc-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: .8rem; margin-bottom: 1.25rem; }
.fvc-card {
  display: block;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: .9rem;
  text-decoration: none;
  color: var(--ink);
  transition: border-color .15s ease, transform .12s ease;
}
.fvc-card:hover { border-color: var(--pink); transform: translateY(-2px); }
.fvc-card__badge {
  display: inline-block;
  background: var(--pink-tint);
  color: var(--pink-deep);
  font-size: .62rem;
  font-weight: 700;
  border-radius: 999px;
  padding: .2rem .55rem;
  margin-bottom: .5rem;
}
.fvc-card__name { display: block; font-weight: 700; font-size: .9rem; }
.fvc-card__tag { display: block; font-size: .74rem; color: var(--faint); margin: .15rem 0 .5rem; }
.fvc-card__rating { display: block; font-size: .74rem; font-weight: 700; color: var(--orange-deep); }

/* ── FAQ (collapsed by default — never add the open attribute) ─ */
.fvc-faqwrap { padding: 1rem 0 2.5rem; }
.fvc-faq { border: 1px solid var(--line); border-radius: var(--r-sm); margin-bottom: .6rem; background: #fff; }
.fvc-faq summary {
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  font-size: .92rem;
  padding: .85rem 1rem;
  position: relative;
}
.fvc-faq summary::-webkit-details-marker { display: none; }
.fvc-faq summary::after { content: '+'; position: absolute; right: 1rem; color: var(--pink); font-weight: 700; }
.fvc-faq[open] summary::after { content: '\2212'; }
.fvc-faq__body { padding: 0 1rem .9rem; font-size: .88rem; color: var(--muted); }

/* ── Feature / safety / love grids ────────────────────────── */
.fvc-features, .fvc-safety, .fvc-love { padding: 2.5rem 0; }
.fvc-safety { background: var(--sunset); }
.fvc-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
  margin-top: 1.75rem;
}
.fvc-feature-grid--4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.fvc-feature {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.25rem;
}
.fvc-feature__icon {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--orange-tint);
  color: var(--orange);
  font-size: 22px;
  margin-bottom: .75rem;
}
.fvc-feature__icon--aqua { background: var(--aqua-tint); color: var(--aqua-deep); }
.fvc-feature__icon--pink { background: var(--pink-tint); color: var(--pink); }
.fvc-feature__title { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; margin-bottom: .3rem; }
.fvc-feature__text { font-size: .88rem; color: var(--muted); line-height: 1.6; }

/* ── Editorial block ──────────────────────────────────────── */
.fvc-editorial { padding: 2.5rem 0; }
.fvc-editorial h2 { margin-bottom: 1rem; }
.fvc-editorial h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; margin: 1.75rem 0 .5rem; }
.fvc-editorial p { color: #333d48; margin-bottom: 1rem; line-height: 1.75; }
.fvc-editorial a { color: var(--aqua-deep); font-weight: 700; }

/* ── CTA band ─────────────────────────────────────────────── */
.fvc-cta-band { background: var(--ink); padding: 2.5rem 0; }
.fvc-cta-band .fvc-h2 { color: #fff; }
.fvc-cta-band__sub { color: #B8C1CC; font-size: .95rem; margin-bottom: 1.25rem; }

/* ── Review template ──────────────────────────────────────── */
.fvc-crumbs { font-size: .76rem; color: var(--faint); margin: 1.5rem 0 1rem; }
.fvc-crumbs a { color: var(--faint); text-decoration: none; }
.fvc-crumbs a:hover { color: var(--pink); }
.fvc-review__head { margin-bottom: 1.25rem; }
.fvc-review__tagline { font-size: 1.05rem; color: var(--muted); }
.fvc-review__rating { margin-top: .4rem; font-size: .95rem; }
.fvc-glance {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: .6rem;
  background: var(--sunset);
  border-radius: var(--r-md);
  padding: 1rem;
  margin-bottom: 1.5rem;
}
.fvc-glance__label { display: block; font-size: .64rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--orange-deep); }
.fvc-glance__value { display: block; font-size: .85rem; font-weight: 700; }
.fvc-verdict {
  border: 1px solid var(--line);
  border-left: 4px solid var(--pink);
  border-radius: 0;
  padding: 1.25rem;
  margin: 2rem 0;
}
.fvc-verdict__head { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; margin-bottom: .35rem; }
.fvc-verdict__text { font-size: .92rem; color: var(--muted); margin-bottom: .9rem; }
.fvc-verdict__ctas { display: flex; align-items: center; gap: 1.1rem; flex-wrap: wrap; }

/* ── Prose (editor content) ───────────────────────────────── */
.fvc-prose h2 { font-family: var(--font-display); font-weight: 700; font-size: 1.4rem; margin: 2rem 0 .7rem; }
.fvc-prose h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.12rem; margin: 1.5rem 0 .5rem; }
.fvc-prose p  { margin: 0 0 1rem; color: #333d48; }
.fvc-prose ul, .fvc-prose ol { margin: .5rem 0 1.1rem 1.4rem; color: #333d48; }
.fvc-prose li { margin-bottom: .4rem; }
.fvc-prose a { color: var(--aqua-deep); font-weight: 700; }
.fvc-prose table { width: 100%; border-collapse: collapse; margin: 1.25rem 0; font-size: .88rem; }
.fvc-prose th { background: var(--aqua-tint); color: var(--aqua-deep); text-align: left; padding: .55rem .7rem; }
.fvc-prose td { border-bottom: 1px solid var(--line); padding: .55rem .7rem; }
.fvc-prose blockquote { border-left: 4px solid var(--aqua); border-radius: 0; padding: .25rem 0 .25rem 1rem; color: var(--muted); margin: 1.25rem 0; }

/* ── Keyword interlink strip (FCC parity) ─────────────────── */
.fvc-kwstrip { background: var(--sunset); border-top: 1px solid var(--line); padding: 1.75rem 0; }
.fvc-kwstrip__head { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; margin-bottom: .9rem; }
.fvc-kwstrip__list { list-style: none; display: flex; flex-wrap: wrap; gap: .5rem; margin: 0; padding: 0; }
.fvc-kwstrip__list li { margin: 0; }
.fvc-kwstrip__list a {
  display: inline-block;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink);
  font-size: .78rem;
  font-weight: 700;
  text-decoration: none;
  padding: .4rem .85rem;
  border-radius: 999px;
  transition: border-color .15s ease, color .15s ease;
}
.fvc-kwstrip__list a:hover { border-color: var(--pink); color: var(--pink); }

/* ── Social + trust ───────────────────────────────────────── */
.fvc-social { display: flex; gap: .6rem; margin-top: 1rem; }
.fvc-social a {
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  color: #B8C1CC;
  transition: color .15s ease, border-color .15s ease;
}
.fvc-social a:hover { color: #fff; border-color: var(--pink); }
.fvc-footer__trust {
  display: flex; flex-wrap: wrap; gap: 1.4rem;
  padding: 1.1rem 1.25rem;
  border-top: 1px solid rgba(255,255,255,.08);
}
.fvc-trust__item { font-size: .78rem; font-weight: 700; color: #B8C1CC; }
.fvc-trust__item i { color: var(--aqua); margin-right: .35rem; vertical-align: -2px; }

/* ── Footer ───────────────────────────────────────────────── */
.fvc-footer { background: var(--ink); color: #B8C1CC; margin-top: 0; }
.fvc-footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem; padding: 2.5rem 1.25rem 1.5rem; }
.fvc-footer__brand { font-family: var(--font-display); font-weight: 800; font-size: 1.15rem; color: #fff; }
.fvc-footer__tag { font-size: .8rem; margin: .4rem 0 1rem; }
.fvc-footer__head { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: #8B97A5; margin-bottom: .6rem; }
.fvc-footer__links { list-style: none; }
.fvc-footer__links a { color: #B8C1CC; text-decoration: none; font-size: .82rem; line-height: 1.9; }
.fvc-footer__links a:hover { color: #fff; }
.fvc-footer__bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 1rem 1.25rem 1.25rem; font-size: .72rem; color: #8B97A5; }
.fvc-footer__bottom p { margin: .2rem 0; }

/* ── Mobile ───────────────────────────────────────────────── */
.fvc-burger { display: none; background: none; border: 0; cursor: pointer; padding: .4rem; }
.fvc-burger span { display: block; width: 20px; height: 2px; background: var(--ink); margin: 4px 0; }
.fvc-mobilenav { display: none; }

@media (max-width: 820px) {
  .fvc-hero__grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .fvc-hero { padding: 2rem 0; }
  .fvc-hero__copy { text-align: center; }
  .fvc-hero__sub { margin: 0 auto; }
  .fvc-pills { justify-content: center; }
  .fvc-nav, .fvc-header__cta { display: none; }
  .fvc-burger { display: block; }
  .fvc-mobilenav[data-open] { display: flex; flex-direction: column; gap: .3rem; padding: .75rem 1.25rem 1.25rem; border-top: 1px solid var(--line); }
  .fvc-mobilenav a { color: var(--ink); text-decoration: none; font-weight: 700; font-size: .95rem; padding: .55rem 0; }
  .fvc-steps__grid { gap: .5rem; }
  .fvc-step__num { font-size: 2.3rem; }
  .fvc-footer__grid { grid-template-columns: 1fr; gap: 1.4rem; }
  .fvc-footer__trust { gap: .8rem 1.2rem; }
  .fvc-ring { animation: fvc-spin 6s linear infinite; box-shadow: 0 0 16px rgba(255,107,0,.4); } /* lighter glow on mobile */
}

/* ── Reduced motion ───────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .fvc-ring { animation: none; box-shadow: 0 0 14px rgba(255,107,0,.35); }
  .fvc-ping { animation: none; opacity: 0; }
  .fvc-btn { transition: none; }
}
