/* ==================================================
   Swipey AI Review — Premium Effects (ReactBits-style)
   Gradient text • Scroll reveal • Tilt • Marquee
   Shimmer CTAs • Lightbox • Floating hearts
   ================================================== */

/* ── Animated gradient text ─────────────────────── */
.gradient-text {
  background: linear-gradient(90deg, #e84c8e, #b06ab3, #f0c040, #e84c8e);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: gradient-shift 6s linear infinite;
}
@keyframes gradient-shift {
  0%   { background-position: 0% 50%; }
  100% { background-position: 300% 50%; }
}

/* Shiny sweep text (ReactBits "Shiny Text") */
.shiny-text {
  position: relative;
  display: inline-block;
  background: linear-gradient(120deg, rgba(255,255,255,0) 40%, rgba(255,255,255,.85) 50%, rgba(255,255,255,0) 60%), linear-gradient(#e8e8f0, #e8e8f0);
  background-size: 200% 100%, 100% 100%;
  background-repeat: no-repeat;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine-sweep 3.2s ease-in-out infinite;
}
@keyframes shine-sweep {
  0%   { background-position: -100% 0, 0 0; }
  60%  { background-position: 200% 0, 0 0; }
  100% { background-position: 200% 0, 0 0; }
}

/* ── Scroll reveal (ReactBits "Fade Content") ───── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1);
  will-change: opacity, transform;
}
.reveal.in-view { opacity: 1; transform: none; }
.reveal-left  { transform: translateX(-32px); }
.reveal-right { transform: translateX(32px); }
.reveal-left.in-view, .reveal-right.in-view { transform: none; }
/* stagger helpers */
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }
.reveal[data-delay="5"] { transition-delay: .40s; }

/* ── 3D tilt cards (ReactBits "Tilted Card") ────── */
.tilt-card {
  transform-style: preserve-3d;
  transition: transform .18s ease-out, box-shadow .3s ease;
  will-change: transform;
}
.tilt-card:hover { box-shadow: 0 18px 45px rgba(0,0,0,.55), 0 0 30px rgba(232,76,142,.18); }

/* ── Spotlight card glow (follows cursor) ───────── */
.spotlight-card { position: relative; overflow: hidden; }
.spotlight-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(340px circle at var(--spot-x, 50%) var(--spot-y, 50%), rgba(232,76,142,.14), transparent 65%);
  opacity: 0;
  transition: opacity .35s ease;
  pointer-events: none;
  z-index: 1;
}
.spotlight-card:hover::before { opacity: 1; }

/* ── Shimmer on primary buttons ─────────────────── */
.btn-primary { position: relative; overflow: hidden; }
.btn-primary::after {
  content: '';
  position: absolute;
  top: 0; left: -80%;
  width: 45%; height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,.32), transparent);
  transform: skewX(-20deg);
  animation: btn-sheen 3.4s ease-in-out infinite;
  pointer-events: none;
}
@keyframes btn-sheen {
  0%, 55%  { left: -80%; }
  85%, 100%{ left: 130%; }
}
.btn-primary:hover { box-shadow: 0 0 26px rgba(232,76,142,.5), 0 6px 18px rgba(0,0,0,.4); }

/* Pulse glow for big CTAs */
.pulse-glow { animation: pulse-glow 2.6s ease-in-out infinite; }
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(232,76,142,.45); }
  50%      { box-shadow: 0 0 0 12px rgba(232,76,142,0); }
}

/* ── Promo bar shimmer ──────────────────────────── */
.promo-bar { position: relative; overflow: hidden; }
.promo-bar::after {
  content: '';
  position: absolute;
  top: 0; left: -60%;
  width: 40%; height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,.15), transparent);
  transform: skewX(-20deg);
  animation: btn-sheen 5s ease-in-out infinite;
  pointer-events: none;
}

/* ── Hero enhancements ──────────────────────────── */
.hero { position: relative; overflow: hidden; }
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .35;
  pointer-events: none;
  animation: blob-float 14s ease-in-out infinite alternate;
}
.hero-blob-1 { width: 420px; height: 420px; background: #e84c8e; top: -140px; left: -120px; }
.hero-blob-2 { width: 360px; height: 360px; background: #6a3ab2; bottom: -160px; right: -100px; animation-delay: -6s; }
@keyframes blob-float {
  0%   { transform: translate(0,0) scale(1); }
  100% { transform: translate(40px, 30px) scale(1.12); }
}
#hearts-canvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
}
.hero .container { position: relative; z-index: 1; }

/* Hero banner image */
.hero-banner {
  margin: 2.2rem auto 0;
  max-width: 900px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(232,76,142,.35);
  box-shadow: 0 20px 60px rgba(0,0,0,.6), 0 0 40px rgba(232,76,142,.18);
  position: relative;
}
.hero-banner img { width: 100%; height: auto; transition: transform .6s ease; }
.hero-banner:hover img { transform: scale(1.03); }
.hero-banner .hero-banner-tag {
  position: absolute;
  bottom: 12px; right: 14px;
  background: rgba(13,13,18,.78);
  backdrop-filter: blur(6px);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: .74rem;
  padding: .3rem .7rem;
  border-radius: 999px;
  z-index: 2;
}

/* ── Media showcase section (all pages) ─────────── */
.media-showcase {
  padding: 3.5rem 0 3rem;
  background: linear-gradient(180deg, transparent, rgba(232,76,142,.045) 30%, rgba(106,58,178,.05) 70%, transparent);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  margin-top: 3rem;
}
.media-showcase-head { text-align: center; max-width: 720px; margin: 0 auto 2.2rem; padding: 0 1.25rem; }
.media-showcase-head h2 { margin: .8rem 0 .6rem; font-size: clamp(1.5rem, 3.2vw, 2.2rem); }
.media-showcase-head p { color: var(--muted); font-size: .95rem; }

/* Infinite marquee (ReactBits "Logo Loop" style) */
.marquee {
  overflow: hidden;
  padding: .6rem 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: marquee-left 60s linear infinite;
}
.marquee[data-dir="right"] .marquee-track { animation-name: marquee-right; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee-left  { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes marquee-right { from { transform: translateX(-50%); } to { transform: translateX(0); } }

.marquee-item {
  height: 240px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  cursor: zoom-in;
  position: relative;
  flex-shrink: 0;
  background: var(--bg3);
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.marquee-item img {
  height: 100%;
  width: auto;
  max-width: 200px;   /* safeguard: wide/landscape images can never stretch a tile */
  object-fit: cover;
  display: block;
}
.marquee-item:hover {
  transform: translateY(-6px) scale(1.03);
  border-color: rgba(232,76,142,.55);
  box-shadow: 0 12px 32px rgba(0,0,0,.55), 0 0 24px rgba(232,76,142,.25);
  z-index: 2;
}
.marquee-item::after {
  content: '\1F50D';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  background: rgba(13,13,18,.35);
  opacity: 0;
  transition: opacity .25s ease;
}
.marquee-item:hover::after { opacity: 1; }

/* Video showcase */
.video-showcase {
  max-width: 860px;
  margin: 2.4rem auto 0;
  padding: 0 1.25rem;
  text-align: center;
}
.video-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(232,76,142,.4);
  box-shadow: 0 20px 60px rgba(0,0,0,.6), 0 0 46px rgba(232,76,142,.16);
  background: #000;
  position: relative;
}
.video-frame video { width: 100%; display: block; }
.video-showcase .btn { margin-top: 1.4rem; }
.showcase-coupon {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-top: 1rem;
  color: var(--muted);
  font-size: .88rem;
}
.showcase-coupon .coupon-code {
  color: var(--gold);
  font-weight: 800;
  letter-spacing: .1em;
  cursor: pointer;
  border-bottom: 1px dashed rgba(240,192,64,.5);
}

/* 18+ consent veil over showcase (until age confirmed) */
.nsfw-veil {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .8rem;
  background: rgba(13,13,18,.6);
  backdrop-filter: blur(26px);
  -webkit-backdrop-filter: blur(26px);
  text-align: center;
  padding: 1.5rem;
}
.nsfw-veil p { color: var(--muted); font-size: .9rem; max-width: 420px; margin: 0; }

/* ── Lightbox ───────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 4000;
  background: rgba(8,8,12,.92);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; animation: lb-fade .25s ease; }
@keyframes lb-fade { from { opacity: 0; } to { opacity: 1; } }
.lightbox img {
  max-width: min(92vw, 1000px);
  max-height: 86vh;
  border-radius: 12px;
  box-shadow: 0 30px 80px rgba(0,0,0,.8);
  animation: lb-zoom .3s cubic-bezier(.16,1,.3,1);
}
@keyframes lb-zoom { from { transform: scale(.92); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  background: rgba(30,30,42,.85);
  border: 1px solid var(--border);
  color: var(--text);
  width: 46px; height: 46px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s ease, transform .2s ease;
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: var(--pink); transform: scale(1.08); }
.lightbox-close { top: 20px; right: 20px; }
.lightbox-prev  { left: 16px; top: 50%; transform: translateY(-50%); }
.lightbox-next  { right: 16px; top: 50%; transform: translateY(-50%); }
.lightbox-prev:hover { transform: translateY(-50%) scale(1.08); }
.lightbox-next:hover { transform: translateY(-50%) scale(1.08); }

/* ── Inline article gallery strip ───────────────── */
.article-media-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .8rem;
  margin: 1.8rem 0;
}
.article-media-strip .strip-item {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  cursor: zoom-in;
  aspect-ratio: 3 / 4;
  transition: transform .3s ease, border-color .3s ease;
}
.article-media-strip .strip-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.article-media-strip .strip-item:hover { transform: translateY(-4px); border-color: rgba(232,76,142,.55); }
.article-media-strip .strip-item:hover img { transform: scale(1.06); }

/* ── Star twinkle for ratings ───────────────────── */
.stars { animation: star-glow 3s ease-in-out infinite; }
@keyframes star-glow {
  0%, 100% { text-shadow: 0 0 4px rgba(240,192,64,.25); }
  50%      { text-shadow: 0 0 14px rgba(240,192,64,.6); }
}

/* ── Verdict banner animated border ─────────────── */
.verdict-banner { position: relative; }
.verdict-banner::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(120deg, rgba(232,76,142,.7), rgba(106,58,178,.4), rgba(240,192,64,.5), rgba(232,76,142,.7));
  background-size: 300% 100%;
  animation: gradient-shift 7s linear infinite;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* ══════════════════════════════════════════════════
   Homepage v2 layout (reference: our-dream-ai style)
   ══════════════════════════════════════════════════ */

/* Hero two-column card */
.hero-card {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 2rem;
  align-items: center;
  background: linear-gradient(135deg, rgba(232,76,142,.10), rgba(106,58,178,.12)), var(--card);
  border: 1px solid rgba(232,76,142,.28);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: 0 24px 70px rgba(0,0,0,.55), 0 0 46px rgba(232,76,142,.10);
  position: relative;
  overflow: hidden;
  text-align: left;
}
.hero-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(120deg, rgba(232,76,142,.6), rgba(106,58,178,.35), rgba(240,192,64,.4), rgba(232,76,142,.6));
  background-size: 300% 100%;
  animation: gradient-shift 8s linear infinite;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.hero-card h1 { text-align: left; margin-bottom: 1rem; }
.hero-card .hero-sub { text-align: left; margin: 0 0 1.5rem; max-width: none; }
.hero-card .hero-ctas { justify-content: flex-start; }
.hero-card .hero-meta { justify-content: flex-start; }
.hero-card-media {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(232,76,142,.35);
  box-shadow: 0 14px 40px rgba(0,0,0,.5);
  position: relative;
  align-self: center;
  justify-self: center;
  width: 100%;
  max-width: 380px;
  height: 100%;
  max-height: 440px;
  aspect-ratio: 4 / 5;
}
.hero-card-media img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; transition: transform .6s ease; }
.hero-card-media:hover img { transform: scale(1.04); }
.hero-card-media .media-tag {
  position: absolute;
  bottom: 10px; right: 12px;
  background: rgba(13,13,18,.78);
  backdrop-filter: blur(6px);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: .72rem;
  padding: .28rem .65rem;
  border-radius: 999px;
}
@media (max-width: 860px) {
  .hero-card { grid-template-columns: 1fr; padding: 1.75rem; }
  .hero-card-media { order: -1; max-width: 300px; max-height: 340px; }
}

/* Intro ("What is …") section */
.intro-section { text-align: center; max-width: 780px; margin: 0 auto; padding: 0 1.25rem; }
.intro-section h2 { margin-bottom: 1rem; font-size: clamp(1.5rem, 3.2vw, 2.2rem); }
.intro-section p { color: var(--body); font-size: 1rem; }
.intro-section p + p { margin-top: .85rem; }

/* Character sections */
.char-section { padding: 3.5rem 0; }
.char-section-head { text-align: center; margin-bottom: 2rem; padding: 0 1.25rem; }
.char-section-head h2 { font-size: clamp(1.5rem, 3.2vw, 2.2rem); }
.char-section-head p { color: var(--muted); font-size: .95rem; margin: .5rem auto 0; max-width: 620px; }

.char-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
}
@media (max-width: 1000px) { .char-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px)  { .char-grid { grid-template-columns: repeat(2, 1fr); gap: .75rem; } }

.char-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 3 / 4;
  display: block;
  background: var(--bg3);
  transition: transform .35s cubic-bezier(.16,1,.3,1), border-color .3s ease, box-shadow .3s ease;
}
.char-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}
.char-card:hover {
  transform: translateY(-6px);
  border-color: rgba(232,76,142,.6);
  box-shadow: 0 16px 40px rgba(0,0,0,.55), 0 0 26px rgba(232,76,142,.22);
}
.char-card:hover img { transform: scale(1.06); }
.char-card-overlay {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 2.2rem .9rem .8rem;
  background: linear-gradient(180deg, transparent, rgba(10,10,15,.92));
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: .5rem;
}
.char-card-name {
  color: #fff;
  font-weight: 700;
  font-size: .95rem;
  display: flex;
  align-items: center;
  gap: .4rem;
}
.char-card-name .online-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #2ecc71;
  box-shadow: 0 0 8px rgba(46,204,113,.8);
  animation: pulse-glow 2.4s ease-in-out infinite;
  flex-shrink: 0;
}
.char-card-age { color: var(--muted); font-weight: 500; font-size: .8rem; }
.char-card-chat {
  position: absolute;
  top: 10px; right: 10px;
  background: rgba(232,76,142,.92);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  padding: .32rem .7rem;
  border-radius: 999px;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity .3s ease, transform .3s ease;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
}
.char-card:hover .char-card-chat { opacity: 1; transform: none; }

/* Homepage FAQ block */
.home-faq { max-width: 820px; margin: 0 auto; padding: 0 1.25rem; }

/* Bottom CTA portrait */
.cta-portrait {
  width: min(280px, 70%);
  margin: 0 auto 1.5rem;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(232,76,142,.4);
  box-shadow: 0 16px 46px rgba(0,0,0,.55), 0 0 30px rgba(232,76,142,.18);
}
.cta-portrait img { width: 100%; display: block; }

/* ── Interest picker popup (Swipey AI) ──────────── */
.interest-overlay {
  position: fixed;
  inset: 0;
  z-index: 5000;
  background: rgba(10, 10, 16, .55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  animation: lb-fade .3s ease;
}
.interest-modal {
  background: #14141c;
  border: 2px solid var(--pink);
  border-radius: 18px;
  box-shadow: 0 0 0 1px rgba(232,76,142,.25), 0 30px 90px rgba(0,0,0,.75), 0 0 60px rgba(232,76,142,.25);
  padding: 2rem 2.25rem 2.25rem;
  max-width: 640px;
  width: 100%;
  text-align: center;
  position: relative;
  animation: modal-pop .45s cubic-bezier(.16,1,.3,1);
}
@keyframes modal-pop {
  from { transform: scale(.9) translateY(16px); opacity: 0; }
  to   { transform: none; opacity: 1; }
}
.interest-logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  margin-bottom: 1rem;
}
.interest-logo .logo-heart { font-size: 1.6rem; }
.interest-logo span span { color: var(--pink); }
.interest-title {
  color: var(--body);
  font-size: 1.02rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}
.interest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.interest-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  aspect-ratio: 6 / 5;
  display: block;
  background: var(--bg3);
  transition: transform .3s cubic-bezier(.16,1,.3,1), border-color .25s ease, box-shadow .3s ease;
}
.interest-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform .5s ease;
}
.interest-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(10,10,15,.85));
}
.interest-card:hover {
  transform: translateY(-5px) scale(1.03);
  border-color: var(--pink);
  box-shadow: 0 12px 34px rgba(0,0,0,.6), 0 0 26px rgba(232,76,142,.35);
}
.interest-card:hover img { transform: scale(1.07); }
.interest-card-label {
  position: absolute;
  left: 0; right: 0; bottom: .6rem;
  z-index: 2;
  color: #fff;
  font-weight: 700;
  font-size: .95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .35rem;
  text-shadow: 0 2px 8px rgba(0,0,0,.8);
}
.interest-skip {
  margin-top: 1.4rem;
  background: none;
  border: none;
  color: var(--muted);
  font-size: .84rem;
  cursor: pointer;
  font-family: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color .2s ease;
}
.interest-skip:hover { color: var(--text); }
.interest-note {
  margin-top: .8rem;
  color: var(--muted);
  font-size: .72rem;
}
@media (max-width: 560px) {
  .interest-modal { padding: 1.5rem 1.25rem; }
  .interest-grid { gap: .6rem; }
  .interest-card-label { font-size: .82rem; }
}

/* ── Author box ─────────────────────────────────── */
.author-box {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  background: linear-gradient(135deg, rgba(232,76,142,.07), rgba(106,58,178,.07)), var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-top: 2.5rem;
  position: relative;
  overflow: hidden;
}
.author-box::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(120deg, rgba(232,76,142,.55), rgba(106,58,178,.3), rgba(232,76,142,.55));
  background-size: 300% 100%;
  animation: gradient-shift 8s linear infinite;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.author-avatar {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--pink);
  box-shadow: 0 0 20px rgba(232,76,142,.35);
  flex-shrink: 0;
}
.author-info { min-width: 0; }
.author-label {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--pink);
  font-weight: 700;
  margin-bottom: .2rem;
}
.author-name {
  color: var(--white);
  font-weight: 800;
  font-size: 1.12rem;
  display: flex;
  align-items: center;
  gap: .45rem;
  flex-wrap: wrap;
}
.author-name .verified { color: #4da3ff; font-size: .95rem; }
.author-role { color: var(--muted); font-size: .82rem; margin: .15rem 0 .6rem; }
.author-bio  { color: var(--body); font-size: .9rem; line-height: 1.65; margin: 0 0 .7rem; }
.author-meta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: .78rem;
  color: var(--muted);
}
.author-meta i { color: var(--pink); margin-right: .3rem; }
@media (max-width: 560px) {
  .author-box { flex-direction: column; align-items: center; text-align: center; }
  .author-meta { justify-content: center; }
  .author-name { justify-content: center; }
}

/* ── FAQ v2 (accordion, premium design) ─────────── */
.faq-list { margin: 1.25rem 0 1.75rem; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: 14px;
  margin-bottom: .7rem;
  overflow: hidden;
  background: var(--card);
  transition: border-color .25s ease, box-shadow .25s ease;
}
.faq-item:hover { border-color: rgba(232,76,142,.4); }
.faq-item.open {
  border-color: rgba(232,76,142,.55);
  box-shadow: 0 8px 26px rgba(0,0,0,.35), 0 0 18px rgba(232,76,142,.12);
}
.faq-q {
  display: flex;
  align-items: center;
  gap: .9rem;
  width: 100%;
  padding: 1.05rem 1.25rem;
  cursor: pointer;
  background: transparent;
  border: none;
  text-align: left;
  color: var(--white);
  font-weight: 600;
  font-size: .97rem;
  font-family: inherit;
  user-select: none;
  transition: color .2s ease;
}
.faq-q:hover { color: var(--pink); }
.faq-q .faq-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(232,76,142,.12);
  color: var(--pink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  flex-shrink: 0;
  transition: transform .3s cubic-bezier(.16,1,.3,1), background .25s ease, color .25s ease;
  margin-left: auto;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--pink);
  color: #fff;
}
.faq-q .faq-qmark {
  color: var(--pink);
  font-weight: 800;
  flex-shrink: 0;
}
.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .35s cubic-bezier(.16,1,.3,1);
}
.faq-a > div { overflow: hidden; }
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a p {
  padding: 0 1.25rem 1.15rem 3.35rem;
  color: var(--body);
  font-size: .93rem;
  line-height: 1.7;
  margin: 0;
}
.faq-a p + p { padding-top: 0; margin-top: .6rem; }

/* ── Reduced motion ─────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .gradient-text, .shiny-text, .btn-primary::after, .promo-bar::after,
  .hero-blob, .marquee-track, .stars, .pulse-glow, .verdict-banner::before { animation: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .tilt-card { transform: none !important; }
}

/* ── Responsive tweaks ──────────────────────────── */
@media (max-width: 720px) {
  .marquee-item { height: 180px; }
  .article-media-strip { grid-template-columns: repeat(3, 1fr); gap: .5rem; }
  .hero-blob-1 { width: 260px; height: 260px; }
  .hero-blob-2 { width: 220px; height: 220px; }
}
