/* ==========================================================================
   OmegleNSFW.me — hand-written stylesheet (no framework, no build step)
   System-font stack, dark theme, pink→violet accent. Mobile-first & responsive.
   ========================================================================== */

/* ---- Design tokens --------------------------------------------------------- */
:root {
  --bg: #0b0710;
  --bg-2: #120a1c;
  --surface: #17101f;
  --surface-2: #1e1529;
  --line: #2c2138;
  --line-soft: #241a30;

  --text: #f4eefb;
  --muted: #b9aecb;
  --muted-2: #8d81a3;

  --pink: #ff2e88;
  --violet: #a13bff;
  --cyan: #34e3ff;
  --online: #22e07a;

  --grad: linear-gradient(105deg, #ff2e88 0%, #a13bff 55%, #6a5bff 100%);
  --grad-soft: linear-gradient(135deg, rgba(255,46,136,.16), rgba(161,59,255,.16));

  --radius: 16px;
  --radius-lg: 22px;
  --radius-pill: 999px;
  --shadow: 0 18px 50px -20px rgba(0,0,0,.75);
  --shadow-glow: 0 0 0 1px rgba(255,46,136,.25), 0 22px 60px -22px rgba(161,59,255,.55);

  --maxw: 1120px;
  --font: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* ---- Reset / base ---------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background:
    radial-gradient(1100px 620px at 85% -8%, rgba(161,59,255,.22), transparent 60%),
    radial-gradient(900px 520px at 8% 4%, rgba(255,46,136,.18), transparent 55%),
    var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { line-height: 1.15; margin: 0 0 .5em; letter-spacing: -.02em; }
h1 { font-size: clamp(2.1rem, 6vw, 3.6rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 4vw, 2.5rem); font-weight: 800; }
h3 { font-size: 1.18rem; font-weight: 700; }
p  { margin: 0 0 1rem; }

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 20px; }
.grad-text {
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .8rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--pink);
}
.section { padding: clamp(3.5rem, 8vw, 6rem) 0; }
.section-head { max-width: 720px; margin: 0 auto clamp(2rem, 4vw, 3rem); text-align: center; }
.section-head p { color: var(--muted); font-size: 1.05rem; }

/* ---- Buttons --------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font: inherit; font-weight: 700; cursor: pointer;
  padding: .85rem 1.6rem; border-radius: var(--radius-pill);
  border: 1px solid transparent; transition: transform .15s ease, box-shadow .2s ease, background .2s;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--grad); color: #fff; box-shadow: 0 12px 30px -12px rgba(255,46,136,.7); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -14px rgba(161,59,255,.8); }
.btn-ghost { background: rgba(255,255,255,.05); color: var(--text); border-color: var(--line); }
.btn-ghost:hover { background: rgba(255,255,255,.1); }
.btn-lg { padding: 1.05rem 2rem; font-size: 1.05rem; }

/* ---- Header ---------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: saturate(140%) blur(12px);
  background: rgba(11,7,16,.72);
  border-bottom: 1px solid var(--line-soft);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.brand { display: inline-flex; align-items: center; gap: .6rem; font-weight: 800; font-size: 1.15rem; letter-spacing: -.02em; }
.brand .logo {
  width: 34px; height: 34px; border-radius: 10px; background: var(--grad);
  display: grid; place-items: center; color: #fff; font-weight: 900; font-size: 1.05rem;
  box-shadow: 0 6px 18px -6px rgba(255,46,136,.8);
}
.nav-links { display: flex; align-items: center; gap: 1.6rem; }
.nav-links a { color: var(--muted); font-size: .95rem; font-weight: 600; transition: color .15s; }
.nav-links a:hover { color: var(--text); }
.nav-cta { display: inline-flex; align-items: center; gap: .8rem; }
.nav-toggle { display: none; background: none; border: 0; color: var(--text); cursor: pointer; padding: .4rem; }
.nav-toggle svg { width: 26px; height: 26px; }

/* ---- Hero ------------------------------------------------------------------ */
.hero { padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(2.5rem, 6vw, 4rem); }
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(2rem, 4vw, 3.5rem); align-items: center;
}
.hero h1 { margin-bottom: .35em; }
.hero .lead { font-size: 1.16rem; color: var(--muted); max-width: 46ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .9rem; margin: 1.6rem 0 1.3rem; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 1.2rem; color: var(--muted-2); font-size: .9rem; }
.hero-trust span { display: inline-flex; align-items: center; gap: .4rem; }
.check { color: var(--online); font-weight: 900; }

.stats { display: flex; gap: 2rem; margin-top: 2rem; flex-wrap: wrap; }
.stat .num { font-size: 1.7rem; font-weight: 800; }
.stat .lbl { font-size: .82rem; color: var(--muted-2); text-transform: uppercase; letter-spacing: .08em; }

/* ---- Flirtbees embed (lazy facade) ---------------------------------------- */
.embed-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  box-shadow: var(--shadow-glow);
  overflow: hidden;
}
.embed-facade {
  position: relative; aspect-ratio: 16 / 11;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: .9rem; text-align: center; padding: 1.5rem;
  background:
    radial-gradient(420px 260px at 50% 18%, rgba(255,46,136,.22), transparent 70%),
    linear-gradient(180deg, rgba(161,59,255,.10), rgba(0,0,0,.25));
}
.embed-facade h2 { font-size: clamp(1.4rem, 3vw, 1.9rem); margin: 0; }
.embed-facade p { color: var(--muted); max-width: 34ch; margin: 0; font-size: .95rem; }
.live-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .82rem; font-weight: 700; color: var(--online);
  text-transform: uppercase; letter-spacing: .1em;
}
.dot { width: 9px; height: 9px; border-radius: 50%; background: var(--online); box-shadow: 0 0 0 0 rgba(34,224,122,.6); animation: pulse 1.8s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(34,224,122,.55);} 70% { box-shadow: 0 0 0 12px rgba(34,224,122,0);} 100% { box-shadow: 0 0 0 0 rgba(34,224,122,0);} }
.fineprint { font-size: .74rem; color: var(--muted-2); max-width: 40ch; }
.embed-host { width: 100%; height: 700px; background: #000; }

/* Homepage preview card links to /video-chat */
.embed-preview { display: block; cursor: pointer; }
.embed-preview:hover { box-shadow: var(--shadow-glow); transform: translateY(-3px); transition: transform .2s ease; }
.embed-preview .btn { pointer-events: none; }

/* Dedicated /video-chat stage: give the facade more presence */
.embed-stage { max-width: 900px; margin-inline: auto; }
.embed-stage .embed-facade { aspect-ratio: auto; min-height: 460px; }

/* ---- Cards / grids --------------------------------------------------------- */
.grid { display: grid; gap: 1.1rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: linear-gradient(180deg, var(--surface), rgba(23,16,31,.6));
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.card:hover { transform: translateY(-4px); border-color: var(--line); box-shadow: var(--shadow); }
.card .ico {
  width: 46px; height: 46px; border-radius: 12px; margin-bottom: 1rem;
  display: grid; place-items: center; font-size: 1.4rem;
  background: var(--grad-soft); border: 1px solid var(--line);
}
.card h3 { margin-bottom: .35rem; }
.card p { color: var(--muted); font-size: .95rem; margin: 0; }

/* ---- Safety strip ---------------------------------------------------------- */
.panel {
  background: linear-gradient(135deg, rgba(255,46,136,.10), rgba(161,59,255,.10));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 2.8rem);
}
.safety-list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2,1fr); gap: .9rem 1.6rem; }
.safety-list li { display: flex; gap: .7rem; color: var(--muted); font-size: .97rem; }
.safety-list li::before { content: "✓"; color: var(--online); font-weight: 900; flex: none; }

/* ---- Prose block ----------------------------------------------------------- */
.prose { max-width: 780px; margin: 0 auto; }
.prose p { color: var(--muted); }
.prose h2 { text-align: center; }

/* ---- FAQ ------------------------------------------------------------------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq details {
  border: 1px solid var(--line-soft);
  border-radius: 14px; margin-bottom: .8rem;
  background: var(--surface); overflow: hidden;
  transition: border-color .15s;
}
.faq details[open] { border-color: var(--line); }
.faq summary {
  cursor: pointer; list-style: none; padding: 1.1rem 1.3rem;
  font-weight: 700; font-size: 1.02rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; font-size: 1.5rem; font-weight: 400; color: var(--pink);
  transition: transform .2s; flex: none; line-height: 1;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .answer { padding: 0 1.3rem 1.2rem; color: var(--muted); font-size: .97rem; }

/* ---- Chips (reviews / popular searches) ----------------------------------- */
.chips { display: flex; flex-wrap: wrap; gap: .55rem; justify-content: center; }
.chip {
  padding: .5rem .95rem; border-radius: var(--radius-pill);
  background: var(--surface); border: 1px solid var(--line-soft);
  color: var(--muted); font-size: .88rem; font-weight: 600;
  transition: color .15s, border-color .15s, transform .15s;
}
.chip:hover { color: var(--text); border-color: var(--pink); transform: translateY(-2px); }

/* ---- Final CTA ------------------------------------------------------------- */
.cta-band { text-align: center; }
.cta-band .panel { padding: clamp(2.2rem, 5vw, 3.5rem); }
.cta-band h2 { margin-bottom: .4em; }
.cta-band p { color: var(--muted); max-width: 52ch; margin: 0 auto 1.6rem; }

/* ---- Footer ---------------------------------------------------------------- */
.site-footer { border-top: 1px solid var(--line-soft); background: var(--bg-2); padding: 3rem 0 2rem; margin-top: 2rem; }
.footer-top { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 2rem; margin-bottom: 2rem; }
.footer-brand { max-width: 340px; }
.footer-brand p { color: var(--muted-2); font-size: .92rem; }
.footer-links { display: flex; gap: 3rem; flex-wrap: wrap; }
.footer-col h4 { font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted-2); margin: 0 0 .9rem; }
.footer-col a { display: block; color: var(--muted); font-size: .92rem; margin-bottom: .55rem; transition: color .15s; }
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem;
  border-top: 1px solid var(--line-soft); padding-top: 1.5rem;
  color: var(--muted-2); font-size: .85rem;
}
.footer-bottom nav { display: flex; gap: 1.2rem; flex-wrap: wrap; }

/* ---- Legal pages ----------------------------------------------------------- */
.legal { max-width: 820px; margin: 0 auto; padding: clamp(2.5rem,6vw,4rem) 0; }
.legal h1 { font-size: clamp(1.9rem,4vw,2.6rem); }
.legal h2 { font-size: 1.35rem; margin-top: 2rem; }
.legal p, .legal li { color: var(--muted); font-size: .98rem; }
.legal .updated { color: var(--muted-2); font-size: .9rem; margin-bottom: 2rem; }
.legal a { color: var(--pink); }

/* ---- Utilities ------------------------------------------------------------- */
.center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.hidden { display: none !important; }

/* ---- Responsive ------------------------------------------------------------ */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero .lead { max-width: none; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  .nav-links, .nav-cta .btn-ghost { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav.open .nav-links {
    display: flex; position: absolute; top: 68px; left: 0; right: 0;
    flex-direction: column; gap: 0; padding: .5rem 20px 1rem;
    background: rgba(11,7,16,.98); border-bottom: 1px solid var(--line);
  }
  .nav.open .nav-links a { padding: .8rem 0; width: 100%; border-bottom: 1px solid var(--line-soft); }
  .safety-list { grid-template-columns: 1fr; }
}
@media (max-width: 540px) {
  .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .hero-cta .btn { width: 100%; }
  .stats { gap: 1.4rem; }
  .footer-links { gap: 2rem; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto !important; transition: none !important; }
}
