/* ============================
   Swipey AI Review — Global CSS
   ============================ */

:root {
  --pink:       #e84c8e;
  --pink-dark:  #c0316e;
  --pink-glow:  rgba(232, 76, 142, 0.25);
  --purple:     #9b59b6;
  --bg:         #0d0d12;
  --bg2:        #13131a;
  --bg3:        #1a1a24;
  --card:       #1e1e2a;
  --card-hover: #252535;
  --border:     #2a2a3d;
  --text:       #eef0f6;
  --body:       #cdd0dd;
  --muted:      #a5a8bd;
  --white:      #ffffff;
  --gold:       #f0c040;
  --green:      #2ecc71;
  --red:        #e74c3c;
  --radius:     12px;
  --radius-lg:  20px;
  --shadow:     0 4px 24px rgba(0,0,0,.45);
  --shadow-glow:0 0 30px rgba(232,76,142,.2);
  --font:       'Inter', system-ui, sans-serif;
  --transition: .22s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: var(--pink); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--pink-dark); }

/* ── Typography ───────────────────────────────────── */
h1,h2,h3,h4,h5 { line-height: 1.25; font-weight: 700; }
h1 { font-size: clamp(1.75rem, 4vw, 2.8rem); }
h2 { font-size: clamp(1.35rem, 3vw, 2rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
h4 { font-size: 1.1rem; }
p  { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

strong { color: var(--white); }
em     { color: var(--pink); font-style: normal; }

blockquote {
  border-left: 3px solid var(--pink);
  padding: .75rem 1.25rem;
  background: var(--bg3);
  border-radius: 0 var(--radius) var(--radius) 0;
  color: var(--text);
  margin: 1.5rem 0;
  font-style: italic;
}

/* ── Layout Helpers ──────────────────────────────── */
.container   { max-width: 1160px; margin: 0 auto; padding: 0 1.25rem; }
.container-sm{ max-width: 820px;  margin: 0 auto; padding: 0 1.25rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.flex   { display: flex; }
.gap-1  { gap: .5rem; }
.gap-2  { gap: 1rem; }
.mt-1   { margin-top: .5rem; }
.mt-2   { margin-top: 1rem; }
.mt-3   { margin-top: 1.5rem; }
.mb-2   { margin-bottom: 1rem; }
.text-center { text-align: center; }
.text-muted  { color: var(--muted); }
.text-pink   { color: var(--pink); }
.text-gold   { color: var(--gold); }

/* ── Buttons ─────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .7rem 1.6rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  border: none;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--pink), var(--pink-dark));
  color: var(--white);
  box-shadow: 0 4px 18px var(--pink-glow);
}
.btn-primary:hover {
  box-shadow: 0 6px 28px rgba(232,76,142,.45);
  color: var(--white);
}
.btn-outline {
  background: transparent;
  color: var(--pink);
  border: 2px solid var(--pink);
}
.btn-outline:hover {
  background: var(--pink-glow);
  color: var(--pink);
}
.btn-lg { padding: 1rem 2.4rem; font-size: 1.05rem; }
.btn-sm { padding: .45rem 1rem; font-size: .85rem; }

/* ── Badge / Pill ────────────────────────────────── */
.badge {
  display: inline-block;
  padding: .25rem .7rem;
  border-radius: 50px;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.badge-pink   { background: var(--pink-glow); color: var(--pink); }
.badge-gold   { background: rgba(240,192,64,.15); color: var(--gold); }
.badge-green  { background: rgba(46,204,113,.12); color: var(--green); }
.badge-purple { background: rgba(155,89,182,.15); color: var(--purple); }
.badge-muted  { background: var(--bg3); color: var(--muted); }

/* ── Cards ────────────────────────────────────────── */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
}
.card:hover {
  background: var(--card-hover);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.card-link { cursor: pointer; }

/* ── Header / Nav ────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13,13,18,.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  padding: .8rem 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: .55rem;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
}
.site-logo span { color: var(--pink); }
.logo-icon { font-size: 1.5rem; }

.site-nav { display: flex; align-items: center; gap: 1.8rem; }
.site-nav a {
  color: var(--muted);
  font-size: .9rem;
  font-weight: 500;
  transition: color var(--transition);
}
.site-nav a:hover,
.site-nav a.active { color: var(--pink); }

.nav-cta { margin-left: .5rem; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: .4rem;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

/* ── Mobile Nav ──────────────────────────────────── */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg2);
  z-index: 200;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
}
.mobile-nav a:hover { color: var(--pink); }
.mobile-nav-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: none; border: none;
  color: var(--muted); font-size: 1.8rem;
  cursor: pointer;
}

/* ── Hero ─────────────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  padding: 5rem 0 4rem;
  text-align: center;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(232,76,142,.18) 0%, transparent 60%),
    radial-gradient(ellipse 40% 30% at 80% 80%, rgba(155,89,182,.12) 0%, transparent 60%);
  pointer-events: none;
}
.hero-badge { margin-bottom: 1.2rem; }
.hero h1 { color: var(--white); margin-bottom: 1rem; }
.hero h1 span { color: var(--pink); }
.hero-sub {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto 2rem;
}
.hero-ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-meta {
  margin-top: 2.5rem;
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-meta-item {
  display: flex;
  align-items: center;
  gap: .4rem;
  color: var(--muted);
  font-size: .9rem;
}
.hero-meta-item i { color: var(--pink); }

/* ── Verdict Banner ──────────────────────────────── */
.verdict-banner {
  background: linear-gradient(135deg, rgba(232,76,142,.12), rgba(155,89,182,.1));
  border: 1px solid rgba(232,76,142,.3);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin: 3rem 0;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}
.verdict-icon { font-size: 2rem; flex-shrink: 0; }
.verdict-title { color: var(--pink); font-size: .8rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; margin-bottom: .4rem; }

/* ── Section Headers ─────────────────────────────── */
.section { padding: 4rem 0; }
.section-header { margin-bottom: 2.5rem; }
.section-header h2 { color: var(--white); }
.section-header p { color: var(--muted); margin-top: .5rem; }
.section-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.section-divider .line {
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* ── Article Cards ───────────────────────────────── */
.article-card {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition), border-color var(--transition);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
.article-card:hover {
  background: var(--card-hover);
  border-color: var(--pink);
  box-shadow: var(--shadow-glow);
  transform: translateY(-4px);
  color: inherit;
}
.article-num {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--pink-glow);
  color: var(--pink);
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem; font-weight: 800;
  flex-shrink: 0;
}
.article-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.35;
}
.article-card-meta {
  color: var(--muted);
  font-size: .82rem;
}
.article-card-excerpt {
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.article-card-arrow {
  margin-top: auto;
  color: var(--pink);
  font-size: .85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: .3rem;
}

/* ── Batch Sections ──────────────────────────────── */
.batch-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.batch-icon { font-size: 1.75rem; }
.batch-title { color: var(--white); font-size: 1.3rem; font-weight: 700; }
.batch-desc  { color: var(--muted); font-size: .88rem; margin-top: .2rem; }
.batch-grid  { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }

/* ── CTA Box ─────────────────────────────────────── */
.cta-box {
  background: linear-gradient(135deg, rgba(232,76,142,.14), rgba(155,89,182,.1));
  border: 1px solid rgba(232,76,142,.25);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
}
.cta-box h2 { color: var(--white); margin-bottom: .75rem; }
.cta-box p  { color: var(--muted); max-width: 520px; margin: 0 auto 1.75rem; }

/* ── Affiliate Disclosure ────────────────────────── */
.aff-disclosure {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: .85rem 1.2rem;
  font-size: .82rem;
  color: var(--muted);
  display: flex;
  gap: .6rem;
  align-items: flex-start;
  margin: 1.5rem 0;
}
.aff-disclosure i { color: var(--gold); flex-shrink: 0; margin-top: .15rem; }

/* ── Age Gate ─────────────────────────────────────── */
.age-gate {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.94);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.age-gate-box {
  background: var(--card);
  border: 1px solid rgba(232,76,142,.3);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  max-width: 420px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-glow);
}
.age-gate-box h2 { color: var(--white); margin-bottom: .75rem; }
.age-gate-box p  { color: var(--muted); margin-bottom: 1.75rem; font-size: .95rem; }
.age-gate-btns   { display: flex; gap: 1rem; }

/* ── Article Page Layout ─────────────────────────── */
.article-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 2.5rem;
  align-items: start;
  padding: 3rem 0 4rem;
}
.article-body { min-width: 0; }
.article-sidebar { position: sticky; top: 80px; }

.article-header { margin-bottom: 2rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--border); }
.article-header h1 { color: var(--white); margin-bottom: 1rem; }
.article-meta-row {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  align-items: center;
  font-size: .84rem;
  color: var(--muted);
}
.article-meta-row i { color: var(--pink); margin-right: .3rem; }

/* ── Article Content ─────────────────────────────── */
.article-content h2 {
  color: var(--white);
  margin: 2.2rem 0 .9rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid var(--border);
}
.article-content h3 {
  color: var(--text);
  margin: 1.6rem 0 .7rem;
}
.article-content h4 { color: var(--pink); margin: 1.2rem 0 .5rem; }
.article-content p  { color: var(--body); font-size: 1.02rem; }
.article-content li { color: var(--body); margin-bottom: .35rem; }
.article-content strong { color: var(--white); }
.article-content blockquote { color: var(--body); }
.article-content ul,
.article-content ol { padding-left: 1.5rem; margin: .75rem 0 1rem; }
.article-content ul li::marker { color: var(--pink); }

/* Tables inside articles */
.table-wrap { overflow-x: auto; margin: 1.5rem 0; }
.article-content table {
  width: 100%;
  border-collapse: collapse;
  font-size: .9rem;
}
.article-content thead tr { background: var(--bg3); }
.article-content th {
  padding: .65rem 1rem;
  text-align: left;
  color: var(--white);
  font-weight: 600;
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}
.article-content td {
  padding: .6rem 1rem;
  border-bottom: 1px solid var(--border);
  color: var(--body);
  vertical-align: top;
}
.article-content tr:last-child td { border-bottom: none; }
.article-content tr:hover td { background: var(--bg3); }

/* ── FAQ ── styles live in css/effects.css (v2 accordion) ── */

/* ── Sidebar Widgets ─────────────────────────────── */
.sidebar-widget {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  margin-bottom: 1.25rem;
}
.sidebar-widget h4 {
  color: var(--white);
  font-size: .9rem;
  margin-bottom: 1rem;
  padding-bottom: .6rem;
  border-bottom: 1px solid var(--border);
}
.sidebar-link {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .5rem 0;
  border-bottom: 1px solid var(--border);
  font-size: .87rem;
  color: var(--muted);
  transition: color var(--transition);
}
.sidebar-link:last-child { border-bottom: none; }
.sidebar-link:hover { color: var(--pink); }
.sidebar-link i { color: var(--pink); width: 16px; text-align: center; }

/* Rating stars */
.stars { color: var(--gold); letter-spacing: 2px; }
.rating-row { display: flex; justify-content: space-between; align-items: center; padding: .4rem 0; border-bottom: 1px solid var(--border); font-size: .87rem; }
.rating-row:last-child { border-bottom: none; }
.rating-label { color: var(--muted); }

/* ── Breadcrumb ──────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .83rem;
  color: var(--muted);
  padding: 1rem 0;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--pink); }
.breadcrumb i { font-size: .7rem; }
.breadcrumb span { color: var(--text); }

/* ── Footer ──────────────────────────────────────── */
.site-footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 3rem 0 1.5rem;
  margin-top: 4rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.footer-brand p { color: var(--muted); font-size: .88rem; margin-top: .75rem; max-width: 280px; }
.footer-col h5  { color: var(--white); font-size: .88rem; font-weight: 700; margin-bottom: .75rem; }
.footer-col ul  { list-style: none; }
.footer-col li  { margin-bottom: .45rem; }
.footer-col a   { color: var(--muted); font-size: .85rem; }
.footer-col a:hover { color: var(--pink); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: .82rem;
  color: var(--muted);
}
.footer-bottom a { color: var(--muted); }
.footer-bottom a:hover { color: var(--pink); }

/* ── Promo Bar ───────────────────────────────────── */
.promo-bar {
  background: linear-gradient(135deg, var(--pink), var(--purple));
  padding: .6rem 0;
  text-align: center;
  font-size: .88rem;
  font-weight: 600;
  color: var(--white);
}
.promo-bar a { color: var(--white); text-decoration: underline; }

/* ── Progress Bar (reading) ──────────────────────── */
.reading-progress {
  position: fixed;
  top: 0; left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--pink), var(--purple));
  z-index: 9999;
  transition: width .1s linear;
}

/* ── Scroll to top ───────────────────────────────── */
.scroll-top {
  position: fixed;
  bottom: 2rem; right: 2rem;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--pink);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  box-shadow: 0 4px 16px var(--pink-glow);
  transition: opacity var(--transition), transform var(--transition);
  opacity: 0;
  pointer-events: none;
}
.scroll-top.visible { opacity: 1; pointer-events: auto; }
.scroll-top:hover   { transform: translateY(-3px); }

/* ── Checklist ───────────────────────────────────── */
.checklist { list-style: none; padding: 0; }
.checklist li {
  display: flex;
  gap: .6rem;
  padding: .4rem 0;
  border-bottom: 1px solid var(--border);
  font-size: .9rem;
  color: var(--muted);
}
.checklist li:last-child { border-bottom: none; }
.checklist li i { color: var(--green); flex-shrink: 0; margin-top: .2rem; }
.checklist li i.no { color: var(--red); }

/* ── Coupon Box ──────────────────────────────────── */
.coupon-box {
  background: var(--bg3);
  border: 2px dashed rgba(240,192,64,.4);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin: 1.5rem 0;
  flex-wrap: wrap;
}
.coupon-icon { font-size: 2rem; }
.coupon-code {
  font-family: 'Courier New', monospace;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: .1em;
  background: rgba(240,192,64,.1);
  padding: .3rem .8rem;
  border-radius: 6px;
  border: 1px solid rgba(240,192,64,.2);
  cursor: pointer;
}

/* ── Responsive ──────────────────────────────────── */
@media (max-width: 1000px) {
  .batch-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { position: static; }
}

@media (max-width: 720px) {
  .site-nav { display: none; }
  .hamburger { display: flex; }
  .batch-grid { grid-template-columns: 1fr; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { padding: 3.5rem 0 2.5rem; }
  .hero-meta { gap: 1rem; }
  .age-gate-btns { flex-direction: column; }
  .verdict-banner { flex-direction: column; }
  .section { padding: 2.5rem 0; }
  .coupon-box { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; align-items: center; }
  .article-meta-row { gap: .75rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
