/* ============================================
   Shemale AI Review – Global Stylesheet
   ============================================ */

:root {
  --primary: #c026d3;
  --primary-dark: #86198f;
  --primary-light: #e879f9;
  --accent: #f59e0b;
  --accent-dark: #d97706;
  --bg: #0f0a1e;
  --bg-card: #1a1030;
  --bg-card2: #221540;
  --text: #e2d9f3;
  --text-muted: #a89fc5;
  --border: #3b2a5a;
  --green: #22c55e;
  --red: #ef4444;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(192,38,211,0.15);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  min-height: 100vh;
}

/* ---- Typography ---- */
h1, h2, h3, h4, h5 {
  font-weight: 700;
  line-height: 1.25;
  color: #fff;
}
h1 { font-size: clamp(1.75rem, 4vw, 2.6rem); margin-bottom: 1.2rem; }
h2 { font-size: clamp(1.3rem, 3vw, 1.9rem); margin: 2.5rem 0 1rem; border-left: 4px solid var(--primary); padding-left: 0.75rem; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); margin: 1.8rem 0 0.6rem; color: var(--primary-light); }
h4 { font-size: 1.05rem; margin: 1.2rem 0 0.4rem; color: var(--accent); }
p { margin-bottom: 1rem; }
a { color: var(--primary-light); text-decoration: none; }
a:hover { color: var(--primary); text-decoration: underline; }
ul, ol { margin: 0.5rem 0 1rem 1.5rem; }
li { margin-bottom: 0.35rem; }
strong { color: #fff; }
blockquote {
  border-left: 4px solid var(--primary);
  background: var(--bg-card2);
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: var(--text-muted);
}
blockquote strong { color: var(--primary-light); }

/* ---- Layout ---- */
.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
.container-wide {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ---- Header / Nav ---- */
#site-header {
  background: rgba(15,10,30,0.97);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.25rem;
  max-width: 1140px;
  margin: 0 auto;
}
.site-logo {
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.site-logo span { color: var(--primary-light); }
.site-logo:hover { text-decoration: none; color: #fff; }

#nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  color: #fff;
  font-size: 1.5rem;
}

#main-nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0.2rem;
  flex-wrap: wrap;
}
#main-nav a {
  display: block;
  padding: 0.4rem 0.75rem;
  border-radius: 6px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: background 0.2s, color 0.2s;
}
#main-nav a:hover,
#main-nav a.active {
  background: var(--bg-card2);
  color: var(--primary-light);
  text-decoration: none;
}

/* Mobile nav */
@media (max-width: 768px) {
  #nav-toggle { display: block; }
  #main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(15,10,30,0.99);
    border-bottom: 1px solid var(--border);
    padding: 1rem;
  }
  #main-nav.open { display: block; }
  #main-nav ul { flex-direction: column; gap: 0.1rem; }
  #main-nav a { padding: 0.65rem 1rem; font-size: 0.95rem; }
}

/* ---- Hero ---- */
.hero {
  background: linear-gradient(135deg, #1a0a2e 0%, #0f0a1e 50%, #1e0a2e 100%);
  padding: 4rem 1.25rem 3rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -80px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(192,38,211,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.hero-badge {
  display: inline-block;
  background: linear-gradient(90deg, var(--primary-dark), var(--primary));
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.3rem 1rem;
  border-radius: 50px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.hero h1 { max-width: 780px; margin: 0 auto 1rem; }
.hero-lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 2rem;
}
.hero-ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2rem; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.15s, box-shadow 0.15s, opacity 0.15s;
  cursor: pointer;
  text-decoration: none;
  border: none;
}
.btn:hover { transform: translateY(-2px); text-decoration: none; opacity: 0.92; }
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  box-shadow: 0 4px 20px rgba(192,38,211,0.4);
}
.btn-primary:hover { color: #fff; box-shadow: 0 6px 28px rgba(192,38,211,0.55); }
.btn-secondary {
  background: transparent;
  color: var(--primary-light);
  border: 2px solid var(--primary);
}
.btn-secondary:hover { background: var(--bg-card2); color: var(--primary-light); }
.btn-accent {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #000;
  box-shadow: 0 4px 20px rgba(245,158,11,0.35);
}
.btn-accent:hover { color: #000; box-shadow: 0 6px 28px rgba(245,158,11,0.5); }
.btn-sm { padding: 0.5rem 1.2rem; font-size: 0.85rem; }
.btn-lg { padding: 1rem 2.25rem; font-size: 1.05rem; }

/* ---- Affiliate CTA Box ---- */
.aff-box {
  background: linear-gradient(135deg, var(--bg-card2), var(--bg-card));
  border: 1px solid var(--primary-dark);
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
  margin: 2rem 0;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.aff-box-text { flex: 1; min-width: 200px; }
.aff-box-text strong { display: block; font-size: 1.05rem; margin-bottom: 0.25rem; }
.aff-box-text p { margin: 0; font-size: 0.88rem; color: var(--text-muted); }
.aff-disclosure {
  font-size: 0.78rem;
  color: var(--text-muted);
  border-left: 3px solid var(--border);
  padding-left: 0.75rem;
  margin: 1rem 0;
}

/* ---- Cards ---- */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
  margin: 1.5rem 0;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  transition: border-color 0.2s, transform 0.2s;
}
.feature-card:hover { border-color: var(--primary); transform: translateY(-3px); }
.feature-card .icon {
  font-size: 1.8rem;
  margin-bottom: 0.6rem;
  display: block;
}
.feature-card h3 { margin: 0 0 0.4rem; font-size: 1rem; color: #fff; }
.feature-card p { margin: 0; font-size: 0.88rem; color: var(--text-muted); }

/* ---- Tables ---- */
.table-wrap { overflow-x: auto; margin: 1.5rem 0; border-radius: var(--radius); }
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
thead th {
  background: var(--bg-card2);
  color: var(--primary-light);
  padding: 0.75rem 1rem;
  text-align: left;
  font-weight: 700;
  border-bottom: 2px solid var(--primary-dark);
}
tbody td {
  padding: 0.65rem 1rem;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
tbody tr:last-child td { border-bottom: none; }
tbody tr:hover { background: rgba(192,38,211,0.06); }
tbody tr:nth-child(even) { background: rgba(255,255,255,0.02); }
.check { color: var(--green); }
.cross { color: var(--red); }
.neutral { color: var(--text-muted); }

/* ---- Verdict / Quick Stats ---- */
.verdict-box {
  background: linear-gradient(135deg, var(--bg-card2), var(--bg-card));
  border: 1px solid var(--primary-dark);
  border-radius: var(--radius);
  padding: 1.75rem;
  margin: 2rem 0;
}
.verdict-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--primary-light);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.verdict-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}
.verdict-item label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.2rem;
}
.verdict-item span {
  font-weight: 600;
  color: #fff;
}
.verdict-score {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.score-stars { color: var(--accent); font-size: 1.25rem; }
.score-label { font-size: 0.9rem; color: var(--text-muted); }

/* ---- Pros / Cons ---- */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin: 1.5rem 0;
}
@media (max-width: 600px) { .pros-cons { grid-template-columns: 1fr; } }
.pros, .cons {
  border-radius: var(--radius);
  padding: 1.25rem;
}
.pros {
  background: rgba(34,197,94,0.07);
  border: 1px solid rgba(34,197,94,0.25);
}
.cons {
  background: rgba(239,68,68,0.07);
  border: 1px solid rgba(239,68,68,0.25);
}
.pros h3 { color: var(--green); margin: 0 0 0.75rem; font-size: 1rem; }
.cons h3 { color: var(--red); margin: 0 0 0.75rem; font-size: 1rem; }
.pros ul, .cons ul { margin: 0; padding: 0; list-style: none; }
.pros li::before { content: '✓ '; color: var(--green); font-weight: 700; }
.cons li::before { content: '✗ '; color: var(--red); font-weight: 700; }
.pros li, .cons li { font-size: 0.88rem; margin-bottom: 0.4rem; }

/* ---- FAQ ---- */
.faq-list { margin: 1.5rem 0; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  background: var(--bg-card);
  border: none;
  padding: 1rem 1.25rem;
  text-align: left;
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: background 0.2s;
}
.faq-q:hover { background: var(--bg-card2); }
.faq-q .arrow { color: var(--primary-light); font-size: 1.2rem; transition: transform 0.25s; flex-shrink: 0; }
.faq-item.open .faq-q .arrow { transform: rotate(180deg); }
.faq-a {
  display: none;
  padding: 0 1.25rem 1rem;
  background: var(--bg-card);
  font-size: 0.9rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
}
.faq-item.open .faq-a { display: block; }

/* ---- Comparison blocks (vs pages) ---- */
.vs-banner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1rem;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin: 2rem 0;
  text-align: center;
}
.vs-name {
  font-size: 1.1rem;
  font-weight: 800;
}
.vs-logo { background: var(--bg-card2); border-radius: 50%; width: 56px; height: 56px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin: 0 auto 0.5rem; }
.vs-sep { font-size: 2rem; font-weight: 900; color: var(--primary); }
.winner-badge {
  display: inline-block;
  background: var(--accent);
  color: #000;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 0.4rem;
}

/* ---- Pricing cards ---- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.25rem;
  text-align: center;
  position: relative;
}
.pricing-card.featured {
  border-color: var(--primary);
  background: linear-gradient(135deg, rgba(192,38,211,0.12), var(--bg-card));
}
.pricing-card .badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.2rem 0.75rem;
  border-radius: 50px;
  white-space: nowrap;
}
.pricing-card .term { font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; }
.pricing-card .price { font-size: 2rem; font-weight: 800; color: #fff; margin: 0.5rem 0 0; }
.pricing-card .price-sub { font-size: 0.78rem; color: var(--text-muted); }
.pricing-card .disc { display: inline-block; background: rgba(34,197,94,0.15); color: var(--green); font-size: 0.75rem; font-weight: 700; padding: 0.15rem 0.6rem; border-radius: 4px; margin: 0.4rem 0; }

/* ---- Steps ---- */
.steps { margin: 1.5rem 0; counter-reset: step; }
.step {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}
.step:last-child { border-bottom: none; }
.step-num {
  flex-shrink: 0;
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.95rem;
  color: #fff;
  counter-increment: step;
}
.step-body h4 { margin: 0 0 0.3rem; color: #fff; }
.step-body p { margin: 0; font-size: 0.9rem; color: var(--text-muted); }

/* ---- Alert / Notice ---- */
.notice {
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  margin: 1.25rem 0;
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.9rem;
}
.notice-info { background: rgba(192,38,211,0.1); border: 1px solid rgba(192,38,211,0.3); }
.notice-warn { background: rgba(245,158,11,0.1); border: 1px solid rgba(245,158,11,0.3); }
.notice-success { background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.3); }
.notice-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 0.1rem; }

/* ---- Article layout ---- */
.article-wrap {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 2.5rem;
  max-width: 1140px;
  margin: 0 auto;
  padding: 2.5rem 1.25rem;
  align-items: start;
}
@media (max-width: 900px) {
  .article-wrap { grid-template-columns: 1fr; }
  .sidebar { display: none; }
}
.article-body { min-width: 0; }

/* ---- Sidebar ---- */
.sidebar { position: sticky; top: 80px; }
.sidebar-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  margin-bottom: 1.25rem;
}
.sidebar-box h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}
.toc-list { list-style: none; margin: 0; padding: 0; }
.toc-list li { margin-bottom: 0.35rem; }
.toc-list a { font-size: 0.83rem; color: var(--text-muted); transition: color 0.2s; }
.toc-list a:hover { color: var(--primary-light); text-decoration: none; }

/* ---- Footer ---- */
#site-footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 3rem 1.25rem 2rem;
  margin-top: 4rem;
}
.footer-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; }
}
.footer-brand .site-logo { margin-bottom: 0.75rem; }
.footer-brand p { font-size: 0.85rem; color: var(--text-muted); }
.footer-col h5 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 0.4rem; }
.footer-col a { font-size: 0.85rem; color: var(--text-muted); }
.footer-col a:hover { color: var(--primary-light); text-decoration: none; }
.footer-bottom {
  max-width: 1140px;
  margin: 2rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.footer-bottom p { font-size: 0.78rem; color: var(--text-muted); margin: 0; }

/* ---- Breadcrumb ---- */
.breadcrumb {
  font-size: 0.8rem;
  color: var(--text-muted);
  padding: 0.75rem 0;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--primary-light); text-decoration: none; }
.breadcrumb span { color: var(--text-muted); }

/* ---- Sources ---- */
.sources-list { list-style: none; margin: 0; padding: 0; }
.sources-list li { font-size: 0.83rem; padding: 0.3rem 0; border-bottom: 1px solid var(--border); }
.sources-list li:last-child { border-bottom: none; }

/* ---- Fact-check badge ---- */
.fact-check {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.3);
  border-radius: 50px;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  color: var(--green);
  font-weight: 600;
  margin-bottom: 1rem;
}

/* ---- Utilities ---- */
.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }
.section-pad { padding: 3rem 0; }
.divider { border: none; border-top: 1px solid var(--border); margin: 2.5rem 0; }

/* ---- Platform ranking list ---- */
.platform-list { margin: 1.5rem 0; }

.platform-item {
  display: flex;
  gap: 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  margin-bottom: 1rem;
  transition: border-color 0.2s;
}
.platform-item:hover { border-color: var(--primary); }
.platform-rank {
  flex-shrink: 0;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--primary-light);
  width: 36px;
  text-align: center;
}
.platform-info h3 { margin: 0 0 0.3rem; color: #fff; font-size: 1.05rem; }
.platform-info p { margin: 0; font-size: 0.87rem; color: var(--text-muted); }
.platform-info .tags { margin-top: 0.5rem; display: flex; flex-wrap: wrap; gap: 0.35rem; }
.tag {
  display: inline-block;
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 0.72rem;
  padding: 0.15rem 0.5rem;
  color: var(--text-muted);
}

/* ============================================
   Image Components
   ============================================ */

/* ---- Site Logo Image ---- */
.site-logo img.logo-img {
  height: 32px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* ---- Character Gallery (Homepage & Review) ---- */
.char-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 0.875rem;
  margin: 2rem 0;
}
.char-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card);
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
  cursor: pointer;
  aspect-ratio: 2/3;
}
.char-card:hover {
  transform: translateY(-4px) scale(1.02);
  border-color: var(--primary);
  box-shadow: 0 8px 32px rgba(192,38,211,0.3);
}
.char-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.35s ease;
}
.char-card:hover img {
  transform: scale(1.05);
}
.char-card-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(15,10,30,0.92) 0%, transparent 100%);
  padding: 1.25rem 0.75rem 0.75rem;
}
.char-card-overlay a {
  display: block;
  background: var(--primary);
  color: #fff;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.45rem 0.75rem;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.2s;
}
.char-card-overlay a:hover {
  background: var(--primary-dark);
}

/* ---- Showcase Strip (2 wide images side-by-side) ---- */
.img-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1.75rem 0;
  border-radius: var(--radius);
  overflow: hidden;
}
.img-showcase img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  display: block;
}
@media (max-width: 540px) {
  .img-showcase { grid-template-columns: 1fr; }
}

/* ---- Single Feature Image ---- */
.img-feature {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  display: block;
  margin: 1.5rem 0;
}

/* ---- Sidebar Avatar ---- */
.sidebar-avatar {
  width: 100%;
  aspect-ratio: 2/3;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  display: block;
  margin-bottom: 0.75rem;
  transition: transform 0.2s;
}
.sidebar-avatar:hover { transform: scale(1.02); }

/* ---- Character Row (horizontal scroll strip) ---- */
.char-strip {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  padding-bottom: 0.75rem;
  margin: 1.5rem 0;
  scrollbar-width: thin;
  scrollbar-color: var(--primary) var(--bg-card);
}
.char-strip::-webkit-scrollbar { height: 4px; }
.char-strip::-webkit-scrollbar-track { background: var(--bg-card); }
.char-strip::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 4px; }
.char-strip-item {
  flex-shrink: 0;
  width: 140px;
  aspect-ratio: 2/3;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: border-color 0.2s, transform 0.2s;
}
.char-strip-item:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
}
.char-strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* ---- Review Character Grid (2 col with label) ---- */
.review-img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1.5rem 0;
}
.review-img-grid figure {
  margin: 0;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card);
}
.review-img-grid img {
  width: 100%;
  aspect-ratio: 2/3;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.3s;
}
.review-img-grid figure:hover img { transform: scale(1.04); }
.review-img-grid figcaption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(15,10,30,0.9) 0%, transparent 100%);
  color: var(--text-muted);
  font-size: 0.72rem;
  padding: 1rem 0.6rem 0.4rem;
  text-align: center;
}
@media (max-width: 500px) {
  .review-img-grid { grid-template-columns: 1fr; }
  .char-gallery { grid-template-columns: repeat(2, 1fr); }
}

/* ---- VS page character portraits ---- */
.vs-portraits {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin: 1.5rem 0;
  flex-wrap: wrap;
}
.vs-portrait-wrap {
  text-align: center;
}
.vs-portrait-wrap img {
  width: 120px;
  aspect-ratio: 2/3;
  object-fit: cover;
  object-position: top center;
  border-radius: 10px;
  border: 2px solid var(--primary);
  display: block;
  margin: 0 auto 0.4rem;
}
.vs-portrait-wrap span {
  font-size: 0.78rem;
  color: var(--text-muted);
  display: block;
}

/* ---- Platform item avatar ---- */
.platform-item-avatar {
  flex-shrink: 0;
  width: 80px;
  aspect-ratio: 2/3;
  object-fit: cover;
  object-position: top center;
  border-radius: 8px;
  border: 1px solid var(--border);
  align-self: center;
}

/* ---- Hero gallery strip (homepage) ---- */
.hero-gallery {
  display: flex;
  gap: 0.6rem;
  justify-content: center;
  margin-top: 2.5rem;
  overflow: hidden;
  max-height: 280px;
}
.hero-gallery-item {
  flex-shrink: 0;
  width: 110px;
  height: 280px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(192,38,211,0.3);
  transition: transform 0.3s, border-color 0.3s;
}
.hero-gallery-item:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
}
.hero-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
@media (max-width: 768px) {
  .hero-gallery { max-height: 200px; }
  .hero-gallery-item { width: 80px; height: 200px; }
}
@media (max-width: 480px) {
  .hero-gallery { display: none; }
  .review-img-grid { grid-template-columns: 1fr; }
}
