/* ═══════════════════════════════════════════════════════════
   arbestporn.com — Main Stylesheet
   ═══════════════════════════════════════════════════════════ */

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ac:      #be2edd;   /* Purple accent */
  --ac2:     #ff2453;   /* Pink accent */
  --bg:      #0d0f15;   /* Page background */
  --bg2:     #13151f;   /* Slightly lighter */
  --card:    #171a26;   /* Card background */
  --card2:   #1e2235;   /* Card hover / raised */
  --border:  rgba(255,255,255,0.07);
  --border2: rgba(190,46,221,0.25);
  --gold:    #ffd32a;
  --green:   #22c55e;
  --red:     #ef4444;
  --blue:    #3b82f6;
  --text:    #e2e8f0;
  --muted:   #7c8a9e;
  --subtle:  #3a4255;
  --radius:  10px;
  --radius-lg: 14px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, 'Segoe UI', system-ui, Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 66px; /* sticky-cta height */
}

a { color: var(--ac); text-decoration: none; }
a:hover { text-decoration: underline; }

img { display: block; max-width: 100%; height: auto; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5 { font-weight: 700; line-height: 1.25; color: #fff; }
h1 { font-size: clamp(26px, 5vw, 44px); }
h2 { font-size: clamp(20px, 3.5vw, 28px); margin-bottom: 14px; }
h3 { font-size: 18px; margin-bottom: 10px; }
h4 { font-size: 15px; margin-bottom: 8px; }
p  { margin-bottom: 14px; color: #94a3b8; }
p:last-child { margin-bottom: 0; }

/* ── LAYOUT ── */
.container     { max-width: 960px;  margin: 0 auto; padding: 0 24px; }
.container-sm  { max-width: 780px;  margin: 0 auto; padding: 0 24px; }
.container-lg  { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* ════════════════════════════════════
   HEADER
   ════════════════════════════════════ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(13,15,21,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 60px; gap: 20px;
}
.logo {
  font-size: 18px; font-weight: 800; color: #fff;
  text-decoration: none; white-space: nowrap; flex-shrink: 0;
}
.logo span { color: var(--ac); }

/* ── Homepage Nav (.nav / .nav-item) ── */
.nav { display: flex; align-items: center; gap: 2px; margin-left: auto; }
.nav a {
  display: block; padding: 7px 13px; border-radius: 6px;
  font-size: 14px; font-weight: 500; color: var(--muted);
  text-decoration: none; white-space: nowrap;
  transition: color 0.15s, background 0.15s;
}
.nav a:hover { color: var(--text); background: rgba(255,255,255,0.05); }
.nav a.active { color: var(--text); }
.nav-item { position: relative; }
.nav-item:hover > .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.nav .dropdown {
  position: absolute; top: calc(100% + 6px); left: 0;
  min-width: 200px; background: var(--card2);
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 5px 0; z-index: 200;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity 0.15s, transform 0.15s, visibility 0.15s;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}
.nav .dropdown a {
  display: block; padding: 9px 16px; font-size: 14px;
  color: var(--muted); border-radius: 0;
}
.nav .dropdown a:hover { color: var(--text); background: rgba(255,255,255,0.04); }

/* ── Main Nav (.main-nav / .has-dropdown) ── */
.main-nav { margin-left: auto; }
.main-nav > ul {
  display: flex; align-items: center; gap: 2px;
  list-style: none; margin: 0; padding: 0;
}
.main-nav > ul > li { position: relative; }
.main-nav > ul > li > a {
  display: block; padding: 7px 13px; border-radius: 6px;
  font-size: 14px; font-weight: 500; color: var(--muted);
  text-decoration: none; white-space: nowrap;
  transition: color 0.15s, background 0.15s;
}
.main-nav > ul > li > a:hover { color: var(--text); background: rgba(255,255,255,0.05); }

/* Dropdown */
.has-dropdown { position: relative; }
.has-dropdown > .dropdown {
  position: absolute; top: calc(100% + 6px); left: 0;
  min-width: 210px; background: var(--card2);
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 5px 0; z-index: 200;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity 0.15s, transform 0.15s, visibility 0.15s;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  list-style: none;
}
.has-dropdown:hover > .dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.has-dropdown .dropdown li { list-style: none; }
.has-dropdown .dropdown a {
  display: block; padding: 9px 16px; color: var(--muted);
  font-size: 14px; text-decoration: none; white-space: nowrap;
}
.has-dropdown .dropdown a:hover { color: var(--text); background: rgba(255,255,255,0.04); }
.has-dropdown > a::after { content: ' ▾'; font-size: 10px; opacity: 0.5; }

/* Header CTA button */
.header-cta {
  display: inline-flex; align-items: center;
  padding: 7px 16px; border-radius: 7px;
  background: linear-gradient(135deg, var(--ac), var(--ac2));
  color: #fff; font-size: 13px; font-weight: 700;
  text-decoration: none; white-space: nowrap; flex-shrink: 0;
  transition: opacity 0.15s;
}
.header-cta:hover { opacity: 0.85; text-decoration: none; color: #fff; }

/* Active nav link */
.main-nav > ul > li > a.active { color: var(--text); }

/* Nav toggle (hamburger) */
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 6px; background: none; border: none;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--muted); border-radius: 2px;
  transition: background 0.15s;
}
.nav-toggle:hover span { background: var(--text); }

@media (max-width: 760px) {
  /* Inner pages nav */
  .main-nav { display: none; position: absolute; top: 60px; left: 0; right: 0; z-index: 150; }
  .main-nav.open {
    display: block; background: var(--card);
    border-top: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  }
  .main-nav > ul { flex-direction: column; gap: 0; padding: 8px 0; }
  .main-nav > ul > li > a { padding: 11px 20px; border-radius: 0; font-size: 15px; }
  .has-dropdown > .dropdown {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: none; border-radius: 0; padding: 0;
    background: transparent; display: none;
  }
  .has-dropdown.open > .dropdown { display: block; }
  .has-dropdown .dropdown a { padding: 9px 20px 9px 36px; font-size: 14px; }
  .nav-toggle { display: flex; }

  .nav { display: none; }
  .header-cta { display: none; }
}

/* ════════════════════════════════════
   HERO SECTION (homepage)
   ════════════════════════════════════ */
.hero {
  background: linear-gradient(160deg, #0d0f15 0%, #160025 45%, #0d1828 100%);
  padding: 64px 24px 56px;
  text-align: center;
  position: relative; overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.hero::before {
  content: '';
  position: absolute; top: -100px; left: 50%; transform: translateX(-50%);
  width: 700px; height: 400px;
  background: radial-gradient(ellipse, rgba(190,46,221,0.1) 0%, transparent 65%);
  pointer-events: none;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(190,46,221,0.1); border: 1px solid rgba(190,46,221,0.3);
  border-radius: 99px; padding: 5px 14px;
  font-size: 12px; font-weight: 700; color: var(--ac);
  letter-spacing: 0.5px; margin-bottom: 22px;
  text-transform: uppercase;
}
.hero h1 { color: #fff; margin-bottom: 14px; }
.hero h1 em { font-style: normal; color: var(--ac); }
.hero-sub { font-size: 17px; color: var(--muted); margin-bottom: 28px; }

/* Trust badges */
.trust-row {
  display: flex; flex-wrap: wrap; gap: 10px;
  justify-content: center; margin-bottom: 32px;
}
.trust-badge {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 6px 14px; border-radius: 99px;
  font-size: 13px; font-weight: 500;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  color: var(--text);
}
.trust-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); }

/* CTA buttons */
.btn-group { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.btn,
.btn-primary,
.btn-secondary,
.btn-outline,
.card-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 22px; border-radius: 9px;
  background: linear-gradient(135deg, var(--ac), var(--ac2));
  color: #fff; font-size: 14px; font-weight: 700;
  text-decoration: none; cursor: pointer; white-space: nowrap;
  box-shadow: 0 4px 18px rgba(190,46,221,0.4);
  transition: opacity 0.15s, box-shadow 0.15s;
  border: none;
}
.btn:hover,
.btn-primary:hover,
.btn-secondary:hover,
.btn-outline:hover,
.card-btn:hover {
  opacity: 0.88; text-decoration: none; color: #fff;
  box-shadow: 0 6px 28px rgba(190,46,221,0.55);
}
.btn-green {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; border-radius: var(--radius);
  background: rgba(34,197,94,0.12); border: 2px solid rgba(34,197,94,0.35);
  color: var(--green); font-size: 15px; font-weight: 700;
  text-decoration: none;
  transition: background 0.15s;
}
.btn-green:hover { background: rgba(34,197,94,0.2); text-decoration: none; color: var(--green); }

/* ════════════════════════════════════
   SECTION
   ════════════════════════════════════ */
.section { padding: 52px 0 0; }
.section-head {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 20px; gap: 12px; flex-wrap: wrap;
}
.section-head h2 { margin: 0; }
.section-head h2 small {
  font-size: 14px; font-weight: 400; color: var(--muted); margin-left: 8px;
}
.see-all { font-size: 13px; color: var(--ac); text-decoration: none; white-space: nowrap; }
.see-all:hover { text-decoration: underline; }

/* ════════════════════════════════════
   SITE CARDS (homepage + category list)
   ════════════════════════════════════ */
.site-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 22px;
  margin-bottom: 12px;
  display: grid;
  grid-template-columns: 28px auto 1fr auto;
  gap: 18px; align-items: center;
  transition: border-color 0.15s, box-shadow 0.15s;
  position: relative;
}
.site-card:hover {
  border-color: rgba(190,46,221,0.25);
  box-shadow: 0 4px 28px rgba(190,46,221,0.08);
}
.site-card.featured { border-left: 3px solid var(--ac); }
.site-card.featured-green { border-left: 3px solid var(--green); }

.card-rank {
  font-size: 12px; font-weight: 800;
  color: var(--subtle); text-align: center;
}
.card-rank.gold { color: var(--gold); font-size: 13px; }

.card-logo-wrap { flex-shrink: 0; }
.card-logo {
  width: 64px; height: 64px; border-radius: 10px;
  object-fit: cover; border: 1px solid var(--border);
  background: var(--card2);
}
.card-logo-placeholder {
  width: 64px; height: 64px; border-radius: 10px;
  background: var(--card2); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 18px; color: var(--ac);
}

.card-body { min-width: 0; }
.card-name {
  font-size: 17px; font-weight: 700; color: #fff;
  text-decoration: none; display: block; margin-bottom: 5px;
}
.card-name:hover { color: var(--ac); text-decoration: none; }

.stars { display: flex; align-items: center; gap: 3px; margin-bottom: 7px; }
.star      { color: var(--gold); font-size: 13px; }
.star-half { color: var(--gold); font-size: 13px; }
.star-empty{ color: var(--subtle); font-size: 13px; }
.rating-num { font-size: 13px; color: var(--muted); margin-left: 5px; }

.card-badges { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 8px; }
.badge {
  font-size: 11px; font-weight: 600; padding: 2px 9px; border-radius: 99px;
  background: rgba(190,46,221,0.1); color: var(--ac);
  border: 1px solid rgba(190,46,221,0.25);
}
.badge.green {
  background: rgba(34,197,94,0.1); color: var(--green);
  border-color: rgba(34,197,94,0.3);
}
.badge.blue {
  background: rgba(59,130,246,0.1); color: #60a5fa;
  border-color: rgba(59,130,246,0.25);
}

.card-desc { font-size: 14px; color: var(--muted); line-height: 1.5; }

.card-right {
  display: flex; flex-direction: column;
  align-items: flex-end; gap: 8px; flex-shrink: 0;
}
.card-price { font-size: 13px; color: var(--muted); text-align: right; line-height: 1.3; }
.card-price strong { font-size: 16px; color: var(--text); display: block; }
.card-price .free { color: var(--green); font-size: 16px; font-weight: 700; }

.card-btn.ghost {
  background: transparent; border: 1px solid rgba(190,46,221,0.35);
  color: var(--ac); padding: 9px 16px; font-size: 13px;
}
.card-btn.ghost:hover { background: rgba(190,46,221,0.08); text-decoration: none; color: var(--ac); }
.card-btn.free-btn {
  background: rgba(34,197,94,0.12); border: 1px solid rgba(34,197,94,0.35);
  color: var(--green);
}
.card-btn.free-btn:hover { background: rgba(34,197,94,0.2); text-decoration: none; color: var(--green); }

@media (max-width: 640px) {
  .site-card { grid-template-columns: 1fr; gap: 12px; }
  .card-rank { display: none; }
  .card-right { align-items: flex-start; flex-direction: row; flex-wrap: wrap; }
}

/* ════════════════════════════════════
   COMPARISON TABLE
   ════════════════════════════════════ */
.compare-wrap { overflow-x: auto; margin-top: 0; border-radius: var(--radius-lg); border: 1px solid var(--border); }
.compare {
  width: 100%; border-collapse: collapse;
  font-size: 13px; min-width: 560px;
}
.compare th {
  background: #12131e; color: var(--muted);
  font-size: 11px; font-weight: 700; letter-spacing: 0.8px; text-transform: uppercase;
  padding: 13px 16px; text-align: left;
  border-bottom: 1px solid var(--border);
}
.compare td {
  padding: 13px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  color: var(--muted); vertical-align: middle;
}
.compare tr:last-child td { border-bottom: none; }
.compare tr:hover td { background: rgba(255,255,255,0.02); }
.compare .col-site { font-weight: 600; color: var(--text); }
.compare .col-site a { color: inherit; }
.compare .col-site a:hover { color: var(--ac); }
.compare .col-score { color: var(--gold); font-weight: 700; }
.compare .check { color: var(--green); font-weight: 700; }
.compare .cross { color: var(--red); }
.compare .dash  { color: var(--subtle); }
.compare .col-visit a {
  color: var(--ac); font-weight: 600; font-size: 12px; white-space: nowrap;
}
.compare .col-visit a:hover { text-decoration: underline; }
.compare .row-top { background: rgba(190,46,221,0.05); }

/* ════════════════════════════════════
   GUIDE CARDS (internal linking)
   ════════════════════════════════════ */
.guides-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 14px;
}
.guide-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 20px;
  text-decoration: none; display: block;
  transition: border-color 0.15s, transform 0.15s;
}
.guide-card:hover {
  border-color: rgba(190,46,221,0.3);
  transform: translateY(-2px);
  text-decoration: none;
}
.guide-icon  { font-size: 26px; margin-bottom: 12px; line-height: 1; }
.guide-title { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.guide-desc  { font-size: 13px; color: var(--muted); line-height: 1.5; margin-bottom: 12px; }
.guide-arrow { font-size: 13px; color: var(--ac); font-weight: 600; }

/* ════════════════════════════════════
   REVIEW PAGE — QUICK VERDICT
   ════════════════════════════════════ */
.verdict {
  background: linear-gradient(135deg, #1a0028 0%, #0f1828 100%);
  border: 1px solid var(--border2);
  border-left: 4px solid var(--ac);
  border-radius: var(--radius-lg);
  padding: 22px 26px; margin: 28px 0;
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 20px; align-items: center;
}
.verdict-logo {
  width: 72px; height: 72px; border-radius: 10px;
  object-fit: cover; border: 1px solid var(--border);
  background: var(--card2); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 22px; color: var(--ac);
}
.verdict-logo img { width: 100%; height: 100%; border-radius: 9px; object-fit: cover; }
.verdict-title { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.verdict-score { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.score-num { font-size: 30px; font-weight: 800; color: var(--ac); line-height: 1; }
.score-denom { font-size: 15px; color: var(--muted); }
.score-stars { color: var(--gold); font-size: 16px; letter-spacing: 2px; }
.verdict-meta { display: flex; flex-direction: column; gap: 5px; }
.vmeta-row { font-size: 13px; display: flex; gap: 8px; }
.vmeta-label { color: var(--muted); min-width: 90px; flex-shrink: 0; }
.vmeta-val   { color: var(--text); font-weight: 500; }
.vmeta-val.green { color: var(--green); }
.vmeta-val.ac    { color: var(--ac); }
.verdict-cta { display: flex; flex-direction: column; gap: 8px; align-items: flex-end; flex-shrink: 0; }
.verdict-updated { font-size: 11px; color: var(--muted); text-align: right; margin-top: 2px; }
.verdict-cta-bar {
  margin: 18px 0 22px;
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
}
.verdict-cta-bar .btn,
.verdict-cta-bar .btn-primary { font-size: 15px; padding: 13px 28px; }
.verdict-cta-note { font-size: 12px; color: var(--muted); margin: 0; }

@media (max-width: 600px) {
  .verdict { grid-template-columns: 1fr; gap: 14px; }
  .verdict-logo { display: none; }
  .verdict-cta { align-items: flex-start; flex-direction: row; flex-wrap: wrap; }
}

/* ════════════════════════════════════
   COMPARISON TABLE
   ════════════════════════════════════ */
.table-wrap {
  overflow-x: auto; margin: 20px 0;
  border: 1px solid var(--border); border-radius: var(--radius-lg);
}
.comparison-table {
  width: 100%; border-collapse: collapse; font-size: 14px;
}
.comparison-table thead th {
  padding: 12px 18px; text-align: left;
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.6px; color: var(--muted);
  background: var(--card2);
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}
.comparison-table thead th:first-child { border-radius: var(--radius-lg) 0 0 0; }
.comparison-table thead th:last-child  { border-radius: 0 var(--radius-lg) 0 0; }
.comparison-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background 0.12s;
}
.comparison-table tbody tr:nth-child(even) { background: rgba(255,255,255,0.02); }
.comparison-table tbody tr:last-child { border-bottom: none; }
.comparison-table tbody tr:hover { background: rgba(190,46,221,0.05); }
.comparison-table tbody td {
  padding: 12px 18px; color: var(--muted); vertical-align: middle;
}
.comparison-table tbody td:first-child { color: var(--text); font-weight: 600; }
.comparison-table tbody td strong { color: #fff; }
.comparison-table tbody td a { color: var(--text); font-weight: 600; }
.comparison-table tbody td a:hover { color: var(--ac); }
.comparison-table .highlight-row { background: rgba(190,46,221,0.07) !important; }
.comparison-table .highlight-row td:first-child {
  border-left: 3px solid var(--ac); color: #fff;
}

/* ════════════════════════════════════
   SITE ENTRY (review blocks in list pages)
   ════════════════════════════════════ */
.site-entry {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 24px 26px;
  margin-bottom: 20px;
}
.site-entry:hover { border-color: var(--border2); }
.site-entry h3 {
  font-size: 18px; color: #fff; margin-bottom: 14px;
}
.site-entry img {
  width: 100%; border-radius: var(--radius); margin: 0 0 16px; display: block;
}
.site-entry p { font-size: 14px; color: var(--muted); margin-bottom: 12px; }
.site-entry p strong { color: var(--text); }
.entry-verdict {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 16px 0;
}
.entry-best, .entry-skip {
  border-radius: var(--radius); padding: 12px 14px; font-size: 13px; line-height: 1.5;
}
.entry-best {
  background: rgba(34,197,94,0.06); border: 1px solid rgba(34,197,94,0.2); color: var(--text);
}
.entry-skip {
  background: rgba(239,68,68,0.05); border: 1px solid rgba(239,68,68,0.18); color: var(--text);
}
.entry-best strong { color: var(--green); font-size: 11px; text-transform: uppercase; letter-spacing: 0.5px; display: block; margin-bottom: 5px; }
.entry-skip strong { color: var(--red);   font-size: 11px; text-transform: uppercase; letter-spacing: 0.5px; display: block; margin-bottom: 5px; }
.site-entry .btn, .site-entry .btn-primary, .site-entry .btn-secondary {
  margin-top: 16px; display: inline-flex;
}
@media (max-width: 600px) {
  .entry-verdict { grid-template-columns: 1fr; }
  .site-entry { padding: 18px 16px; }
}

/* ════════════════════════════════════
   PROS / CONS
   ════════════════════════════════════ */
.pros-cons {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
  margin: 24px 0;
}
.pros, .cons {
  border-radius: var(--radius); padding: 18px 20px;
}
.pros { background: rgba(34,197,94,0.05); border: 1px solid rgba(34,197,94,0.18); }
.cons { background: rgba(239,68,68,0.05); border: 1px solid rgba(239,68,68,0.18); }
.pros h4 { color: var(--green); font-size: 12px; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 12px; }
.cons h4 { color: var(--red);   font-size: 12px; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 12px; }
.pros ul, .cons ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.pros li, .cons li { font-size: 14px; color: var(--text); display: flex; gap: 9px; align-items: flex-start; line-height: 1.4; }
.pros li::before { content: '✓'; color: var(--green); font-weight: 800; flex-shrink: 0; margin-top: 1px; }
.cons li::before { content: '✗'; color: var(--red);   font-weight: 800; flex-shrink: 0; margin-top: 1px; }
@media (max-width: 500px) { .pros-cons { grid-template-columns: 1fr; } }

/* ════════════════════════════════════
   SCORE BREAKDOWN
   ════════════════════════════════════ */
.score-breakdown {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 22px 24px; margin: 24px 0;
}
.score-breakdown h4 {
  font-size: 11px; color: var(--muted); text-transform: uppercase;
  letter-spacing: 1px; margin-bottom: 18px;
}
.score-row { display: flex; align-items: center; gap: 14px; margin-bottom: 12px; }
.score-row:last-child { margin-bottom: 0; }
.score-lbl { font-size: 13px; color: var(--text); min-width: 140px; flex-shrink: 0; }
.score-bar-bg { flex: 1; height: 6px; background: rgba(255,255,255,0.07); border-radius: 99px; overflow: hidden; }
.score-bar-fill { height: 100%; border-radius: 99px; background: linear-gradient(90deg, var(--ac), var(--ac2)); }
.score-val { font-size: 13px; font-weight: 700; min-width: 30px; text-align: right; }

/* ════════════════════════════════════
   PRICING TABLE
   ════════════════════════════════════ */
.pricing-box {
  margin: 28px 0;
}
/* header row — two variants */
.pricing-head,
.pricing-box-title {
  font-size: 11px; font-weight: 700; color: var(--ac);
  text-transform: uppercase; letter-spacing: 1.5px;
  margin-bottom: 16px;
}

/* plans wrapper — all variants */
.plans-grid,
.pricing-plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 10px;
}
/* fallback: if plans are direct children of pricing-box (old structure) */
.pricing-box > .plan:first-of-type ~ .plan,
.pricing-box > .plan:first-of-type {
  /* handled via JS wrap below */
}

.plan {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 22px 14px 18px;
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 5px;
  position: relative; transition: border-color 0.15s;
  min-width: 0;
}
.plan:hover { border-color: rgba(190,46,221,0.3); }

/* highlighted plan — two variants: .best and .plan-featured */
.plan.best,
.plan.plan-featured {
  border-color: var(--ac);
  background: rgba(190,46,221,0.07);
  box-shadow: 0 0 0 1px rgba(190,46,221,0.2), 0 4px 24px rgba(190,46,221,0.1);
}

/* badge — absolute top center */
.plan-badge {
  position: absolute; top: -11px; left: 50%; transform: translateX(-50%);
  font-size: 10px; font-weight: 700; padding: 3px 10px; border-radius: 99px;
  background: var(--green); color: #000; white-space: nowrap;
}

.plan-name {
  font-size: 10px; font-weight: 700; color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.8px;
}
.plan-price {
  font-size: 24px; font-weight: 800; color: #fff;
  line-height: 1.1; margin: 6px 0 2px;
}
.plan-price span,
.plan-price small { font-size: 12px; font-weight: 500; color: var(--muted); }
.plan.best .plan-price,
.plan.plan-featured .plan-price { color: var(--ac); }

/* plan-desc + plan-note = same style */
.plan-desc,
.plan-note { font-size: 11px; color: #555; line-height: 1.4; }

@media (max-width: 480px) {
  .plans-grid,
  .pricing-plans { grid-template-columns: repeat(2, 1fr); }
}

/* ════════════════════════════════════
   INLINE LINK BLOCK (перелинковка)
   ════════════════════════════════════ */
.inline-link {
  display: flex; align-items: center; gap: 14px;
  background: rgba(190,46,221,0.05); border: 1px solid rgba(190,46,221,0.18);
  border-radius: var(--radius); padding: 14px 18px; margin: 22px 0;
  text-decoration: none; transition: border-color 0.15s;
}
.inline-link:hover { border-color: rgba(190,46,221,0.35); text-decoration: none; }
.inline-link-icon  { font-size: 22px; flex-shrink: 0; }
.inline-link-body  { flex: 1; }
.inline-link-title { font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 2px; }
.inline-link-desc  { font-size: 12px; color: var(--muted); }
.inline-link-arrow { color: var(--ac); font-size: 15px; flex-shrink: 0; }

/* ════════════════════════════════════
   FAQ — accordion
   ════════════════════════════════════ */
.faq { margin: 36px 0; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-q {
  font-size: 15px; font-weight: 600; color: var(--text);
  padding: 18px 22px; margin: 0;
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 14px; cursor: pointer; user-select: none;
  transition: background 0.15s;
}
.faq-q:hover { background: rgba(255,255,255,0.03); }
.faq-q::after {
  content: '+'; color: var(--ac); font-size: 22px; font-weight: 300;
  flex-shrink: 0; line-height: 1; margin-top: 1px;
  transition: transform 0.2s;
}
.faq-item.open .faq-q { background: rgba(190,46,221,0.04); }
.faq-item.open .faq-q::after { content: '×'; transform: rotate(0deg); }
/* reset button default styles */
button.faq-q {
  width: 100%; text-align: left; background: none; border: none; outline: none;
}
/* collapsed by default */
.faq-a {
  font-size: 14px; color: var(--muted); line-height: 1.7;
  padding: 0 22px; max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s;
}
.faq-item.open .faq-a {
  max-height: 1000px;
  padding: 4px 22px 20px;
}
.faq-a p { margin: 0 0 10px; color: var(--muted); }
.faq-a p:last-child { margin-bottom: 0; }
.faq-a a { color: var(--ac); }

/* ════════════════════════════════════
   RELATED ARTICLES
   ════════════════════════════════════ */
.related     { margin: 40px 0 0; }
.related h3  { margin-bottom: 16px; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.related-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 14px 16px;
  text-decoration: none;
  display: flex; gap: 12px; align-items: center;
  transition: border-color 0.15s;
}
.related-card:hover { border-color: rgba(190,46,221,0.3); text-decoration: none; }
.related-type {
  font-size: 10px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; margin-bottom: 8px;
}
.related-type.review { color: var(--ac); }
.related-type.guide  { color: var(--blue); }
.related-title { font-size: 13px; font-weight: 600; color: var(--text); line-height: 1.4; margin-bottom: 8px; }
.related-arrow { font-size: 12px; color: var(--muted); }
@media (max-width: 500px) { .related-grid { grid-template-columns: 1fr; } }

/* ════════════════════════════════════
   ARTICLE CONTENT (review / guide body)
   ════════════════════════════════════ */
.article-content { font-size: 15px; line-height: 1.7; }
.article-content h2 { font-size: 22px; margin: 36px 0 14px; padding-top: 8px; }
.article-content h3 { font-size: 18px; margin: 28px 0 10px; }
.article-content p  { color: #94a3b8; margin-bottom: 16px; }
.article-content a  { color: var(--ac); }
.article-content a:hover { text-decoration: underline; }
/* Restore button colours inside article-content (higher specificity override) */
.article-content a.btn,
.article-content a.btn-primary,
.article-content a.btn-secondary,
.article-content a.btn-outline,
.article-content a.card-btn { color: #fff; text-decoration: none; }
.article-content a.btn:hover,
.article-content a.btn-primary:hover,
.article-content a.btn-secondary:hover,
.article-content a.btn-outline:hover,
.article-content a.card-btn:hover { color: #fff; text-decoration: none; }
.article-content ul, .article-content ol {
  padding-left: 20px; margin-bottom: 16px; color: #94a3b8;
}
.article-content li { margin-bottom: 6px; }
.article-content strong { color: var(--text); }

/* Info box */
.info-box {
  background: rgba(59,130,246,0.07); border: 1px solid rgba(59,130,246,0.2);
  border-radius: var(--radius); padding: 16px 20px; margin: 20px 0;
  font-size: 14px; color: #93c5fd;
}
.info-box strong { color: #bfdbfe; }

/* ════════════════════════════════════
   TOC — Table of Contents
   ════════════════════════════════════ */
.toc {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 18px 22px; margin: 24px 0;
}
.toc-title { font-size: 13px; font-weight: 700; color: var(--text); margin-bottom: 12px; }
.toc ol { padding-left: 18px; }
.toc li { margin-bottom: 6px; }
.toc a  { font-size: 13px; color: var(--muted); }
.toc a:hover { color: var(--ac); }

/* ════════════════════════════════════
   BREADCRUMBS
   ════════════════════════════════════ */
.breadcrumb {
  font-size: 13px; color: var(--muted); padding: 16px 0 0;
}
.breadcrumb ol {
  display: flex; align-items: center; flex-wrap: wrap;
  gap: 0; list-style: none; margin: 0; padding: 0;
}
.breadcrumb ol li { display: flex; align-items: center; }
.breadcrumb ol li + li::before {
  content: '›'; margin: 0 7px; color: var(--subtle); font-size: 15px;
}
.breadcrumb a { color: var(--muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--text); }
.breadcrumb ol li:last-child { color: var(--text); }

/* ════════════════════════════════════
   MOBILE STICKY CTA
   ════════════════════════════════════ */
.sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 999;
  background: rgba(19,21,31,0.97);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--border2);
  box-shadow: 0 -8px 32px rgba(0,0,0,0.6);
}
.sticky-inner {
  display: flex; align-items: center; gap: 14px;
  padding: 10px 0;
}
.sticky-logo {
  width: 44px; height: 44px; border-radius: 9px;
  object-fit: cover; border: 1px solid var(--border);
  background: var(--card2); flex-shrink: 0;
}
.sticky-info { flex: 1; min-width: 0; }
.sticky-info strong {
  display: block; font-size: 15px; font-weight: 700; color: #fff;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  line-height: 1.2;
}
.sticky-info span { font-size: 12px; color: var(--gold); }
.sticky-meta {
  font-size: 13px; color: var(--muted); white-space: nowrap; flex-shrink: 0;
}
.sticky-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 22px; border-radius: 9px;
  background: linear-gradient(135deg, var(--ac), var(--ac2));
  color: #fff; font-size: 14px; font-weight: 700;
  text-decoration: none; flex-shrink: 0; white-space: nowrap;
  box-shadow: 0 4px 18px rgba(190,46,221,0.4);
}
.sticky-btn:hover { opacity: 0.9; text-decoration: none; color: #fff; }
@media (max-width: 640px) {
  .sticky-meta { display: none; }
  .sticky-info strong { font-size: 13px; }
}

/* ════════════════════════════════════
   FOOTER
   ════════════════════════════════════ */
.site-footer {
  margin-top: 72px;
  border-top: 1px solid var(--border);
  background: #0b0d14;
  padding: 40px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
  margin-bottom: 32px;
  align-items: start;
}
.footer-brand .logo { font-size: 16px; margin-bottom: 10px; display: inline-block; }
.footer-brand p { font-size: 13px; color: var(--muted); line-height: 1.6; }
/* nav columns */
.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.footer-nav-heading {
  font-size: 11px; font-weight: 700; color: var(--muted);
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px;
}
.footer-nav ul { list-style: none; }
.footer-nav li { margin-bottom: 8px; }
.footer-nav a { font-size: 13px; color: var(--muted); text-decoration: none; }
.footer-nav a:hover { color: var(--text); }
.footer-bottom {
  border-top: 1px solid var(--border); padding: 16px 0;
  font-size: 12px; color: var(--subtle); text-align: center;
}
.footer-bottom a { color: var(--subtle); }
.footer-bottom a:hover { color: var(--muted); }
@media (max-width: 760px) {
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
  .footer-nav { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 420px) {
  .footer-nav { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════
   SPEC / INFO TABLES (review pages)
   ════════════════════════════════════ */
.spec-table,
.info-table {
  width: 100%; border-collapse: collapse;
  font-size: 14px; margin: 20px 0;
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden;
}
.spec-table th,
.spec-table td,
.info-table td {
  padding: 11px 18px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
  text-align: left;
}
.spec-table tbody tr:last-child td,
.info-table tbody tr:last-child td { border-bottom: none; }
/* header row */
.spec-table thead th {
  background: var(--card2);
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.6px;
  color: var(--muted); padding: 12px 18px;
}
/* zebra stripes */
.spec-table tbody tr:nth-child(even),
.info-table tbody tr:nth-child(even) { background: rgba(255,255,255,0.025); }
/* key column */
.spec-table tbody td:first-child,
.info-table tbody td:first-child {
  color: var(--muted); width: 42%; font-size: 13px;
  font-weight: 500; letter-spacing: 0.1px;
}
/* value column */
.spec-table tbody td:last-child,
.info-table tbody td:last-child { color: var(--text); font-weight: 600; }
.spec-table tbody tr:hover,
.info-table tbody tr:hover { background: rgba(190,46,221,0.04); }

/* ════════════════════════════════════
   SCORE BREAKDOWN (class aliases)
   ════════════════════════════════════ */
/* HTML uses score-label-text / score-bar-wrap / score-bar */
.score-label-text { font-size: 13px; color: var(--text); min-width: 140px; flex-shrink: 0; }
.score-bar-wrap   { flex: 1; height: 6px; background: rgba(255,255,255,0.07); border-radius: 99px; overflow: hidden; }
.score-bar        { height: 100%; border-radius: 99px; background: linear-gradient(90deg, var(--ac), var(--ac2)); }
.score-overall    { margin-top: 6px; padding-top: 10px; border-top: 1px solid var(--border); }
.score-overall .score-label-text { font-weight: 700; color: #fff; }
.score-overall .score-val        { color: var(--ac); font-size: 16px; }

/* ════════════════════════════════════
   INLINE LINK BLOCK (callout in article)
   ════════════════════════════════════ */
.inline-link-block {
  background: var(--card); border: 1px solid var(--border2);
  border-radius: var(--radius); padding: 16px 20px;
  margin: 20px 0; font-size: 14px; color: var(--muted);
}
.inline-link-block p { margin: 0; color: var(--muted); }
.inline-link-block a { color: var(--ac); }

/* ════════════════════════════════════
   RELATED CARDS (sub-elements)
   ════════════════════════════════════ */
.related-card-img {
  width: 44px; height: 44px; border-radius: 8px;
  background: var(--card2); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; color: var(--muted);
  flex-shrink: 0; overflow: hidden;
}
.related-card-img img { width: 100%; height: 100%; object-fit: cover; }
.related-card-img.guide-img {
  background: rgba(59,130,246,0.1); color: var(--blue);
  font-size: 16px; /* show emoji nicely */
}
.related-card-body { flex: 1; min-width: 0; }
.related-card-tag  { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--muted); margin-bottom: 3px; }
.related-card-title { font-size: 13px; font-weight: 600; color: var(--text); line-height: 1.4; }

/* ════════════════════════════════════
   UTILITIES
   ════════════════════════════════════ */
.pb-section { padding-bottom: 60px; }
.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }
.text-muted { color: var(--muted); }
.text-sm { font-size: 13px; }
.divider { border: none; border-top: 1px solid var(--border); margin: 40px 0; }

/* Updated tag */
.updated-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; color: var(--muted); margin-bottom: 12px;
}
.updated-tag .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); }

/* ════════════════════════════════════
   WHAT IS AR PORN
   ════════════════════════════════════ */
.section-sm { padding-top: 32px; padding-bottom: 0; }
.what-is-ar {
  max-width: 720px;
  margin: 0 auto;
  border-left: 3px solid var(--accent);
  padding-left: 20px;
}
.what-is-ar p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 12px;
}
.what-is-ar p:last-child { margin-bottom: 0; }
.what-is-ar a { color: var(--accent); }
.what-is-ar a:hover { text-decoration: underline; }

/* ════════════════════════════════════
   DECISION TABLE
   ════════════════════════════════════ */
.decision-table td:first-child { color: var(--text); font-weight: 500; width: 22%; }
.decision-table td:nth-child(2) { width: 28%; }
.decision-table td:nth-child(2) a { color: var(--accent); }
.decision-table td:last-child { color: var(--muted); font-size: 13px; }

.faq-note {
  margin-top: 16px;
  font-size: 12px;
  color: var(--subtle);
}
@media (max-width: 640px) {
  .decision-table td:first-child { width: auto; }
}
