:root {
  --bg-1: #050505;
  --bg-2: #0d0d0d;
  --surface: #151515;
  --surface-2: #1e1e1e;
  --surface-3: #262626;
  --line: rgba(176, 76, 255, 0.24);
  --ink: #fff8e6;
  --muted: #d2badf;
  --text-dim: #b8a6c5;
  --accent: #b04cff;
  --accent-2: #c2185b;
  --ok: #8cd39a;
  --danger: #ef8a8a;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  position: relative;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(70rem 30rem at 15% -10%, rgba(176, 76, 255, 0.12), transparent 48%),
    radial-gradient(60rem 28rem at 95% 10%, rgba(194, 24, 91, 0.10), transparent 42%),
    linear-gradient(180deg, var(--bg-1), var(--bg-2));
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.22s ease;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    url("data:image/svg+xml,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%20640%20420'%20width%3D'640'%20height%3D'420'%3E%0A%20%20%3Cg%20fill%3D'none'%20stroke%3D'%23b04cff'%20stroke-width%3D'4'%20stroke-linecap%3D'round'%20stroke-linejoin%3D'round'%20opacity%3D'0.22'%3E%0A%20%20%20%20%3Cg%20transform%3D'translate(36%20204)'%3E%0A%20%20%20%20%20%20%3Cpath%20d%3D'M10%2018h94l-12%20108H22z'%2F%3E%0A%20%20%20%20%20%20%3Cpath%20d%3D'M8%2018h98'%2F%3E%0A%20%20%20%20%20%20%3Cpath%20d%3D'M28%2018v108M52%2018v108M76%2018v108'%2F%3E%0A%20%20%20%20%20%20%3Ccircle%20cx%3D'26'%20cy%3D'4'%20r%3D'8'%2F%3E%3Ccircle%20cx%3D'44'%20cy%3D'0'%20r%3D'10'%2F%3E%3Ccircle%20cx%3D'62'%20cy%3D'5'%20r%3D'8'%2F%3E%3Ccircle%20cx%3D'79'%20cy%3D'1'%20r%3D'9'%2F%3E%0A%20%20%20%20%3C%2Fg%3E%0A%20%20%20%20%3Cg%20transform%3D'translate(238%2062)'%3E%0A%20%20%20%20%20%20%3Ccircle%20cx%3D'72'%20cy%3D'72'%20r%3D'58'%2F%3E%3Ccircle%20cx%3D'72'%20cy%3D'72'%20r%3D'16'%2F%3E%0A%20%20%20%20%20%20%3Ccircle%20cx%3D'72'%20cy%3D'32'%20r%3D'7'%2F%3E%3Ccircle%20cx%3D'108'%20cy%3D'58'%20r%3D'7'%2F%3E%3Ccircle%20cx%3D'94'%20cy%3D'102'%20r%3D'7'%2F%3E%3Ccircle%20cx%3D'50'%20cy%3D'102'%20r%3D'7'%2F%3E%3Ccircle%20cx%3D'36'%20cy%3D'58'%20r%3D'7'%2F%3E%0A%20%20%20%20%3C%2Fg%3E%0A%20%20%20%20%3Cg%20transform%3D'translate(436%20220)'%3E%0A%20%20%20%20%20%20%3Crect%20x%3D'0'%20y%3D'24'%20width%3D'64'%20height%3D'42'%20rx%3D'7'%2F%3E%3Crect%20x%3D'70'%20y%3D'24'%20width%3D'64'%20height%3D'42'%20rx%3D'7'%2F%3E%0A%20%20%20%20%20%20%3Cpath%20d%3D'M64%2042h6'%2F%3E%3Cpath%20d%3D'M4%2064h126'%2F%3E%0A%20%20%20%20%3C%2Fg%3E%0A%20%20%20%20%3Cg%20transform%3D'translate(426%2074)'%3E%0A%20%20%20%20%20%20%3Crect%20x%3D'0'%20y%3D'38'%20width%3D'148'%20height%3D'90'%20rx%3D'8'%2F%3E%0A%20%20%20%20%20%20%3Cpath%20d%3D'M0%2038h148l-20-26H-20z'%2F%3E%0A%20%20%20%20%20%20%3Cpath%20d%3D'M18%2016l18%2022M46%2016l18%2022M74%2016l18%2022M102%2016l18%2022'%2F%3E%0A%20%20%20%20%3C%2Fg%3E%0A%20%20%20%20%3Cg%20transform%3D'translate(180%20280)'%3E%0A%20%20%20%20%20%20%3Cpath%20d%3D'M0%2040c26-26%2062-38%20108-36'%2F%3E%3Cpath%20d%3D'M0%2064c32-24%2070-32%20114-30'%2F%3E%0A%20%20%20%20%3C%2Fg%3E%0A%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E");
  background-size: 540px 355px;
  background-repeat: repeat;
  opacity: 0.46;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(110% 70% at 50% 50%, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.55));
}

/* --- HERO HOME --- */
.hero--home {
  position: relative;
  overflow: hidden;
  padding: 4.5rem 1.5rem 3.5rem;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(8,8,8,0.95), rgba(20,10,25,0.95));
  text-align: center;
}
.hero__bg-fx {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 0%, rgba(176, 76, 255, 0.2), transparent 45%),
    radial-gradient(circle at 80% 100%, rgba(194, 24, 91, 0.2), transparent 50%);
  opacity: 0.6;
}
.hero__content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.tag {
  display: inline-block;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent);
  font-weight: 800;
  font-size: 0.8rem;
  padding: 0.35rem 0.9rem;
  border: 1px solid rgba(176, 76, 255, 0.4);
  background: rgba(176, 76, 255, 0.1);
  border-radius: 99px;
}
h1 {
  margin: 0 0 0.8rem 0;
  font-family: "Oswald", sans-serif;
  font-size: clamp(3rem, 7vw, 5rem);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #ffffff;
  line-height: 1.1;
  text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.subtitle {
  margin: 0 auto;
  max-width: 700px;
  color: var(--muted);
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1.6;
}

/* --- SITE HEADER (NAVBAR) --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  background: rgba(10, 10, 10, 0.85);
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}
.site-header__content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.8rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.site-logo {
  text-decoration: none;
  color: #ffffff;
  font-family: "Oswald", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}
.logo-icon {
  color: var(--accent);
  font-size: 1.2rem;
}

.main-nav {
  display: flex;
  gap: 0.5rem;
  flex: 1;
}
.nav-link {
  text-decoration: none;
  color: #eddcf5;
  border-radius: 99px;
  padding: 0.45rem 0.9rem;
  font-size: 0.95rem;
  font-weight: 700;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.nav-link:hover {
  color: #ffffff;
  background: rgba(176, 76, 255, 0.15);
}
.nav-link.active {
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 4px 15px rgba(176, 76, 255, 0.25);
}

.top-search {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}
.top-search input {
  min-width: 220px;
  border-radius: 99px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.4);
  color: #fff;
  padding: 0.55rem 1.1rem;
  font-size: 0.9rem;
  transition: border-color 0.2s, background 0.2s;
}
.top-search input:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255,255,255,0.08);
}
.top-search button {
  border-radius: 50%;
  width: 42px;
  height: 42px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.top-search button svg {
  width: 18px;
  height: 18px;
}

.container {
  max-width: 1120px;
  margin: 1.3rem auto 2.3rem;
  padding: 0 1rem;
  display: grid;
  gap: 1rem;
}

.card {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01)),
    linear-gradient(145deg, rgba(176, 76, 255, 0.11), rgba(0, 0, 0, 0) 50%),
    var(--surface);
  box-shadow: 0 20px 34px rgba(0, 0, 0, 0.34);
}

h2,
h3 {
  margin-top: 0.1rem;
  margin-bottom: 0.8rem;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.form-grid,
.filter-grid,
.review-list,
.guide-grid,
.chips-grid,
.fixed-model-grid,
.stats-grid {
  display: grid;
  gap: 0.82rem;
}

label {
  display: grid;
  gap: 0.34rem;
  font-weight: 700;
  color: #f3e7c5;
}

input,
select,
textarea,
button {
  font: inherit;
}

input,
select,
textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(15, 15, 15, 0.75);
  color: var(--ink);
  padding: 0.72rem;
}

textarea {
  resize: vertical;
}

button {
  border: none;
  border-radius: 12px;
  padding: 0.76rem 1rem;
  font-weight: 800;
  color: #1a0715;
  background: linear-gradient(120deg, var(--accent), #d81b60);
  cursor: pointer;
  transition: transform 0.14s ease, filter 0.14s ease;
}

button:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
}

.alert {
  border-radius: 12px;
  padding: 0.74rem 0.88rem;
  margin-bottom: 0.85rem;
}

.alert p {
  margin: 0.2rem 0;
}

.alert--success {
  border: 1px solid rgba(125, 193, 143, 0.45);
  background: rgba(125, 193, 143, 0.15);
  color: #d8f1de;
}

.alert--error {
  border: 1px solid rgba(228, 123, 135, 0.46);
  background: rgba(228, 123, 135, 0.16);
  color: #ffe1e5;
}

.review-item,
.guide-card,
.model-box,
.stat-box {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.9rem;
  background: linear-gradient(180deg, rgba(23, 23, 23, 0.96), rgba(13, 13, 13, 0.96));
}

.review-item {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 0.9rem;
  align-items: start;
}

.review-content {
  min-width: 0;
}

.review-cover,
.review-cover-lg {
  display: block;
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid rgba(176, 76, 255, 0.35);
  background: #111111;
}

.review-cover {
  height: 128px;
}

.review-cover-lg {
  max-width: 320px;
  aspect-ratio: 2 / 3;
  height: auto;
  object-fit: contain;
  margin-bottom: 1rem;
}

.review-top {
  position: static;
  display: grid;
  gap: 0.82rem;
  margin-bottom: 1rem;
  padding: 0.85rem;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(176, 76, 255, 0.14), rgba(0, 0, 0, 0.35));
}

.review-top__main {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 0.9rem;
}

.big-score {
  font-family: "Oswald", sans-serif;
  font-size: 4rem;
  line-height: 1;
  color: #b04cff;
}

.big-score small {
  font-size: 1.6rem;
  color: #ffe8ab;
}

.meta-review {
  margin: 0.4rem 0 0.2rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #f0d895;
  font-size: 0.82rem;
}

.worth-it {
  margin: 0;
  color: #fff4d4;
}

.review-body-grid {
  align-items: start;
}

.criteria-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.7rem;
}

.criteria-item {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.65rem;
  background: rgba(0, 0, 0, 0.25);
}

.criteria-item p {
  margin: 0;
  color: #e9d9ac;
}

.criteria-item strong {
  font-size: 1.2rem;
  color: #fff5d7;
}

.spoiler-block summary {
  cursor: pointer;
  font-weight: 800;
}

.spoiler-block p {
  margin-top: 0.8rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.review-item__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.review-item__header h2,
.review-item__header h3 {
  margin: 0;
}

.pill {
  display: inline-block;
  border-radius: 999px;
  padding: 0.2rem 0.66rem;
  border: 1px solid rgba(176, 76, 255, 0.62);
  background: rgba(176, 76, 255, 0.16);
  color: #ffefc2;
  font-size: 0.8rem;
  font-weight: 800;
}

.meta {
  color: #d5c69f;
  font-size: 0.93rem;
}

.meta a {
  color: inherit;
  font-weight: 600;
  transition: all 0.2s ease;
  border-bottom: 1px solid transparent;
}

.meta a:hover {
  color: var(--accent);
  border-bottom-color: rgba(176, 76, 255, 0.4);
}

.stat-label {
  margin: 0;
  color: #d8ca9f;
}

.stat-value {
  margin: 0.22rem 0 0;
  font-family: "Oswald", sans-serif;
  font-size: 2.15rem;
  color: #fffaf2;
}

.chips-grid {
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.chip-link {
  text-decoration: none;
  text-align: center;
  border-radius: 999px;
  border: 1px solid rgba(176, 76, 255, 0.5);
  background: rgba(176, 76, 255, 0.13);
  color: #ffefc6;
  padding: 0.48rem 0.9rem;
  font-weight: 700;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.chip-link:hover {
  background: rgba(176, 76, 255, 0.25);
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(176, 76, 255, 0.18);
  color: #fff;
}

.review-detail {
  color: #fff2d3;
  line-height: 1.62;
}

.review-detail a,
.hero-summary a,
.taxonomy-content a,
.guide-description a,
.guide-description--panel a,
.model-box p a,
.model-box li a {
  color: #fff2c4;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.16em;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.review-detail a:hover,
.hero-summary a:hover,
.taxonomy-content a:hover,
.guide-description a:hover,
.guide-description--panel a:hover,
.model-box p a:hover,
.model-box li a:hover {
  color: var(--accent);
  text-decoration-color: var(--accent);
}

.text-link {
  color: #b04cff;
  font-weight: 800;
  text-decoration: none;
}

.text-link:hover {
  color: #ffeaac;
}

.simple-list {
  margin: 0;
  padding-left: 1.2rem;
}

.simple-list li {
  margin-bottom: 0.35rem;
  color: #eadcbb;
}

.fill-dark {
  background: #080808;
  border-top: 1px solid var(--line);
  margin-top: 3rem;
}
.site-footer {
  padding: 4rem 1.5rem 2rem;
}
.fat-footer {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}
.ff-col {
  display: flex;
  flex-direction: column;
}
.ff-col h4 {
  color: #fff;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 1.2rem;
  margin: 0 0 1.2rem 0;
}
.ff-col a {
  color: #d2badf;
  text-decoration: none;
  margin-bottom: 0.7rem;
  font-size: 0.95rem;
  transition: color 0.2s;
}
.ff-col a:hover {
  color: #b04cff;
}
.footer-bottom {
  max-width: 1120px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  text-align: center;
  color: #888;
  font-size: 0.85rem;
}

.pagination {
  margin-top: 1rem;
  display: grid;
  gap: 0.55rem;
  padding: 0.7rem;
  border: 1px solid rgba(176, 76, 255, 0.28);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(176, 76, 255, 0.08), rgba(176, 76, 255, 0.03));
}

.pagination--top {
  margin-bottom: 0.9rem;
}

.pagination__meta {
  margin: 0;
  color: #ffe7ac;
  font-weight: 700;
  font-size: 0.92rem;
}

.pagination__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.page-link {
  display: inline-block;
  text-decoration: none;
  min-width: 42px;
  text-align: center;
  padding: 0.42rem 0.78rem;
  border-radius: 10px;
  border: 1px solid rgba(176, 76, 255, 0.45);
  color: #ffeab3;
  background: rgba(176, 76, 255, 0.08);
  font-weight: 700;
  transition: transform 0.15s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.page-link:hover {
  background: rgba(176, 76, 255, 0.2);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(176, 76, 255, 0.15);
}

.page-link.is-active {
  color: #1a0715;
  background: linear-gradient(120deg, var(--accent), #d81b60);
  border-color: #b04cff;
  box-shadow: 0 0 0 2px rgba(176, 76, 255, 0.22);
}

.page-link--edge {
  padding-inline: 0.95rem;
}

@media (min-width: 760px) {
  .form-grid,
  .filter-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .fixed-model-grid {
    grid-template-columns: 1fr 1fr;
  }

  .guide-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .review-top__main {
    grid-template-columns: 1fr;
  }

  .review-item {
    grid-template-columns: 1fr;
  }

  .review-cover {
    height: 210px;
  }

  .review-cover-lg {
    max-width: 100%;
    height: auto;
  }

  .site-header__content {
    flex-direction: column;
    align-items: stretch;
    gap: 1.2rem;
    padding: 1rem;
  }
  .site-logo {
    justify-content: center;
  }
  .main-nav {
    overflow-x: auto;
    padding-bottom: 0.5rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .main-nav::-webkit-scrollbar {
    display: none;
  }
  .top-search {
    width: 100%;
  }
  .top-search input {
    width: 100%;
    min-width: 0;
  }

  .pagination__links {
    gap: 0.4rem;
  }
}
/* --- BREADCRUMBS --- */
.breadcrumb {
    margin-bottom: 2rem;
    font-size: 0.85rem;
    color: var(--muted);
    font-weight: 500;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
}
.breadcrumb a {
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s;
}
.breadcrumb a:hover {
    color: var(--accent);
}
.breadcrumb .sep {
    opacity: 0.3;
}
.breadcrumb .current {
    color: #fff;
    font-weight: 700;
}

/* --- REVIEW TOP V2 (HERO) --- */
.review-top-v2 {
    margin-bottom: 2.5rem;
    border-bottom: 1px solid var(--line);
    padding-bottom: 2.5rem;
}

.review-hero {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.hero-poster {
    width: 280px;
    flex-shrink: 0;
}

.hero-poster .review-cover-lg {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    border: 1px solid var(--line);
}

.hero-info {
    flex: 1;
}

.meta-label {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    font-weight: 800;
    font-size: 0.85rem;
    margin: 0 0 0.5rem 0;
}

.hero-info h1 {
    font-size: 3.5rem;
    margin: 0 0 1.5rem 0;
    line-height: 1.1;
    text-shadow: none;
    text-align: left;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.score-pill {
    background: rgba(176, 76, 255, 0.15);
    border: 1px solid var(--accent);
    padding: 0.8rem 1.2rem;
    border-radius: 16px;
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.score-pill strong {
    font-family: "Oswald", sans-serif;
    font-size: 2.5rem;
    color: #fff;
}

.score-pill small {
    font-size: 1rem;
    color: var(--muted);
}

.quick-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.btn-watch {
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: #fff;
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.02em;
    box-shadow: 0 10px 20px rgba(176, 76, 255, 0.2);
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-watch:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(176, 76, 255, 0.3);
}

.hero-summary {
    font-size: 1.15rem;
    line-height: 1.6;
    color: #fff;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    background: rgba(255,255,255,0.03);
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid var(--line);
}

.spec-item {
    display: flex;
    flex-direction: column;
}

.spec-item small {
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 0.05em;
    color: var(--muted);
    margin-bottom: 4px;
}

.spec-item span {
    font-weight: 700;
    color: #fff;
}

@media (max-width: 900px) {
    .review-hero {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 2rem;
    }
    .hero-info h1 {
        text-align: center;
        font-size: 2.5rem;
    }
    .hero-actions {
        justify-content: center;
        flex-direction: column;
    }
    .specs-grid {
        grid-template-columns: 1fr;
    }
}

/* --- SEO INTERNAL LINKS GRID --- */
.seo-links-section {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px dashed var(--line);
}

.seo-links-section h3 {
    font-size: 1.4rem;
    color: var(--muted);
    margin-bottom: 1.5rem;
}

.seo-links-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.seo-link-item {
    font-size: 0.88rem;
    padding: 0.5rem 1rem;
    border-radius: 99px;
    background: rgba(176, 76, 255, 0.05);
    border: 1px solid rgba(176, 76, 255, 0.15);
    color: var(--muted);
    font-weight: 600;
    transition: all 0.2s ease;
}

.seo-link-item:hover {
    background: rgba(176, 76, 255, 0.12);
    border-color: var(--accent);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(176, 76, 255, 0.15);
}

@media (max-width: 760px) {
    .seo-links-section {
        margin-top: 3rem;
    }
    .seo-links-grid {
        gap: 0.5rem;
    }
    .seo-link-item {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
}
/* --- GUIDE PREMIUM LAYOUT --- */
.guide-hero {
    position: relative;
    margin-bottom: 2.5rem;
    padding: 3rem 2rem;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(145deg, rgba(176, 76, 255, 0.2), rgba(0, 0, 0, 0.4));
    border: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 350px;
}

.guide-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.guide-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4) saturate(1.2);
}

.guide-hero__content {
    position: relative;
    z-index: 1;
    max-width: 850px;
}

.guide-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin: 0 0 1rem 0;
    text-align: left;
}

.guide-description {
    font-size: 1.15rem;
    color: #fff2d3;
    line-height: 1.7;
    margin-top: 1.5rem;
    max-width: 900px;
}

.guide-description p {
    margin-bottom: 1.2rem;
}

.guide-grid {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
}

.guide-card {
    display: flex;
    flex-direction: column;
    padding: 0;
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
    background: var(--surface);
    height: 100%;
}

.guide-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(176, 76, 255, 0.2);
    border-color: var(--accent);
}

.guide-card__thumb {
    width: 100%;
    height: 180px;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
}

.guide-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.guide-card:hover .guide-card__thumb img {
    transform: scale(1.08);
}

.guide-card__body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.guide-card__body h3 {
    margin: 0 0 0.8rem 0;
}

.guide-card__body .description {
    font-size: 0.92rem;
    color: var(--muted);
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.guide-card__footer {
    padding: 1rem 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0,0,0,0.2);
}

@media (max-width: 760px) {
    .guide-hero {
        min-height: 280px;
        padding: 2rem 1.2rem;
    }
}
/* --- GUIDE REDESIGN: TWO COLUMNS & SIDEBAR --- */
.guide-page-container {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 2.5rem;
    align-items: start;
    margin-top: 1.5rem;
}

.guide-sidebar {
    position: sticky;
    top: 5.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-widget {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 1.5rem;
}

.sidebar-widget h4 {
    font-family: "Oswald", sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 1rem;
    margin: 0 0 1.2rem 0;
    color: var(--accent);
    border-bottom: 1px solid rgba(176, 76, 255, 0.2);
    padding-bottom: 0.5rem;
}

.sidebar-links {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.sidebar-link {
    font-size: 0.92rem;
    color: var(--muted);
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    transition: all 0.2s;
    background: rgba(255,255,255,0.02);
}

.sidebar-link:hover {
    background: rgba(176, 76, 255, 0.1);
    color: #fff;
    transform: translateX(4px);
}

.mini-list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.mini-card {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 0.8rem;
    align-items: center;
}

.mini-card img {
    width: 60px;
    height: 80px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid var(--line);
}

.mini-card__info h5 {
    margin: 0 0 0.3rem 0;
    font-size: 0.9rem;
    line-height: 1.3;
}

.mini-card__info p {
    margin: 0;
    font-size: 0.75rem;
    color: var(--muted);
}

.guide-main-content {
    min-width: 0;
}

.guide-main-content h1 {
    font-size: 4rem;
    margin: 0 0 1.5rem 0;
    text-align: left;
}

.guide-full-cover {
    width: 100%;
    margin-bottom: 2.5rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,0.6);
    border: 1px solid var(--line);
}

.guide-full-cover img {
    width: 100%;
    height: auto;
    display: block;
}

.guide-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #fff2d3;
    margin-bottom: 3.5rem;
}

@media (max-width: 1000px) {
    .guide-page-container {
        grid-template-columns: 1fr;
    }
    .guide-sidebar {
        order: 2;
        position: static;
    }
    .guide-main-content {
        order: 1;
    }
}

/* --- GUIDE LISTING: PREMIUM GRID --- */
.guide-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 2.3rem;
    padding: 2rem 0;
}

.guide-card {
    background: var(--surface-2);
    border: 1px solid var(--line);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.guide-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
    box-shadow: 0 15px 45px rgba(0,0,0,0.4);
}

.guide-card__thumb {
    aspect-ratio: 16 / 9;
    background: var(--surface-3);
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid var(--line);
}

.guide-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.guide-card:hover .guide-card__thumb img {
    transform: scale(1.05);
}

.guide-card__body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.guide-card__body h3 {
    margin-bottom: 0.8rem;
    font-size: 1.25rem;
    line-height: 1.4;
    font-weight: 700;
}

.guide-card__body .description {
    font-size: 0.9rem;
    color: var(--text-dim);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.guide-card__footer {
    padding: 1rem 1.5rem;
    background: rgba(255,255,255,0.02);
    border-top: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.franchise-grid {
    padding-top: 1.5rem;
}

.franchise-card {
    min-height: 0;
}

.franchise-card__body {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.75rem 1.5rem 1.5rem;
}

.franchise-card__body h3 {
    margin: 0;
}

.franchise-card__count {
    margin: 0;
    padding-top: 0.15rem;
    color: var(--text);
}

.franchise-card__description {
    margin: 0;
}

.dead-link-text {
    color: inherit;
    text-decoration: none;
}

/* --- LISTS & GUIDE REFINEMENTS --- */
.lists-hero {
    position: relative;
    overflow: hidden;
    padding: 3.2rem 1.6rem 2.8rem;
    border: 1px solid var(--line);
    border-radius: 24px;
    background:
        linear-gradient(135deg, rgba(176, 76, 255, 0.16), rgba(194, 24, 91, 0.08) 45%, rgba(6, 6, 6, 0.96)),
        linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.38);
}

.lists-hero__content {
    position: relative;
    z-index: 1;
    max-width: 860px;
}

.lists-hero h1,
.lists-highlight h2,
.lists-shell h2,
.guide-section-heading h2 {
    text-align: left;
}

.lists-hero__stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 0.9rem;
    margin-top: 2rem;
}

.lists-hero__stat,
.guide-hero-v2__stat {
    padding: 1rem 1.05rem;
    border-radius: 16px;
    border: 1px solid rgba(176, 76, 255, 0.25);
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.lists-hero__stat strong,
.guide-hero-v2__stat strong {
    display: block;
    font-family: "Oswald", sans-serif;
    font-size: 1.8rem;
    line-height: 1;
    color: #ffffff;
}

.lists-hero__stat span,
.guide-hero-v2__stat span {
    display: block;
    margin-top: 0.45rem;
    color: var(--text-dim);
    font-size: 0.88rem;
}

.lists-highlight,
.lists-shell,
.guide-description--panel,
.guide-recommendations {
    border: 1px solid var(--line);
    border-radius: 22px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0.01)),
        rgba(12, 12, 12, 0.78);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}

.lists-highlight,
.lists-shell,
.guide-recommendations {
    padding: 1.6rem;
}

.lists-highlight__header,
.lists-shell__header,
.guide-section-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 1rem;
    margin-bottom: 1.4rem;
}

.lists-highlight__copy,
.lists-shell__copy,
.guide-section-heading__copy {
    max-width: 420px;
    margin: 0;
    color: var(--text-dim);
    line-height: 1.6;
    text-align: right;
}

.lists-featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1rem;
}

.lists-featured-card {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 1rem;
    padding: 1rem;
    border-radius: 18px;
    border: 1px solid rgba(176, 76, 255, 0.18);
    background: rgba(255, 255, 255, 0.03);
}

.lists-featured-card__media,
.review-item__media {
    display: block;
}

.lists-featured-card__media img,
.lists-featured-card__placeholder {
    width: 100%;
    height: 100%;
    min-height: 168px;
    border-radius: 14px;
    object-fit: cover;
    border: 1px solid rgba(176, 76, 255, 0.25);
}

.lists-featured-card__placeholder,
.guide-card__thumb-fallback,
.mini-card__fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at top, rgba(176, 76, 255, 0.2), transparent 60%),
        rgba(255, 255, 255, 0.03);
    color: var(--text-dim);
}

.lists-featured-card__body {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.lists-featured-card__body h3,
.guide-card--lists .guide-card__body h3 {
    margin: 0;
}

.lists-featured-card__body p {
    margin: 0;
    color: var(--text-dim);
    line-height: 1.6;
}

.lists-inline-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.92rem;
    font-weight: 800;
    color: #ffeab3;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.lists-inline-link:hover {
    color: var(--accent);
}

.guide-grid--lists {
    padding: 0;
    gap: 1.4rem;
}

.guide-card--lists {
    background:
        linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0)),
        var(--surface-2);
    border-radius: 18px;
}

.guide-card__thumb-fallback {
    width: 100%;
    height: 100%;
    min-height: 100%;
}

.guide-card__eyebrow {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.guide-card__year {
    color: var(--text-dim);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.guide-card__actions {
    margin-top: auto;
    padding-top: 0.4rem;
}

.guide-hero-v2 {
    display: grid;
    gap: 1.25rem;
    padding: 1.6rem;
    border: 1px solid var(--line);
    border-radius: 24px;
    background:
        radial-gradient(circle at top left, rgba(176, 76, 255, 0.14), transparent 38%),
        linear-gradient(135deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015)),
        rgba(12, 12, 12, 0.88);
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.36);
}

.guide-hero-v2__copy {
    display: grid;
    gap: 0.9rem;
    max-width: 860px;
}

.guide-hero-v2__copy h1 {
    margin: 0;
    font-size: clamp(1.9rem, 3.8vw, 3rem);
    line-height: 1.08;
    max-width: 100%;
    text-wrap: pretty;
}

.guide-hero-v2__stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.85rem;
}

.guide-hero-v2__cover {
    margin: 0;
    max-width: 100%;
}

.guide-hero-v2__cover img {
    width: 100%;
    height: auto;
    max-height: 360px;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 18px;
    border: 1px solid rgba(176, 76, 255, 0.28);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.35);
}

.guide-description--panel {
    padding: 1.8rem;
    margin-top: 1.5rem;
    margin-bottom: 1.6rem;
    font-size: 1.05rem;
}

.guide-description--panel > :first-child {
    margin-top: 0;
}

.guide-description--panel > :last-child {
    margin-bottom: 0;
}

.guide-recommendations {
    margin-top: 0;
}

.guide-review-list {
    gap: 1rem;
}

.review-item--guide {
    grid-template-columns: 108px 1fr;
    padding: 1rem;
    border-radius: 16px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0)),
        rgba(18, 18, 18, 0.9);
}

.guide-review-list__excerpt {
    margin: 0.7rem 0 0;
    color: var(--text-dim);
    line-height: 1.55;
    font-size: 0.95rem;
}

.meta-sep {
    margin: 0 0.5rem;
    color: rgba(255, 255, 255, 0.24);
}

.breadcrumb--guide {
    margin-bottom: 1.4rem;
}

.sidebar-widget--accent {
    background:
        linear-gradient(145deg, rgba(176, 76, 255, 0.16), rgba(194, 24, 91, 0.08)),
        rgba(255,255,255,0.03);
}

.guide-sidebar__facts {
    display: grid;
    gap: 0.8rem;
}

.guide-sidebar__facts div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding-bottom: 0.7rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.guide-sidebar__facts div:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.guide-sidebar__facts span {
    color: var(--text-dim);
    font-size: 0.88rem;
}

.guide-sidebar__facts strong {
    color: #fff;
    font-family: "Oswald", sans-serif;
    font-size: 1.15rem;
    letter-spacing: 0.03em;
}

.mini-card__fallback {
    width: 60px;
    height: 80px;
    border-radius: 6px;
    border: 1px solid var(--line);
}

@media (max-width: 1100px) {
    .guide-hero-v2__stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .lists-hero,
    .lists-highlight,
    .lists-shell,
    .guide-description--panel,
    .guide-recommendations,
    .guide-hero-v2 {
        padding: 1.2rem;
        border-radius: 18px;
    }

    .lists-highlight__header,
    .lists-shell__header,
    .guide-section-heading {
        flex-direction: column;
        align-items: flex-start;
    }

    .lists-highlight__copy,
    .lists-shell__copy,
    .guide-section-heading__copy {
        max-width: none;
        text-align: left;
    }

    .lists-featured-card {
        grid-template-columns: 1fr;
    }

    .guide-hero-v2__copy h1 {
        max-width: none;
        font-size: clamp(1.8rem, 8.8vw, 2.45rem);
    }

    .guide-hero-v2__stats {
        grid-template-columns: 1fr;
    }

    .guide-hero-v2__cover img {
        max-height: 240px;
    }

    .review-item--guide {
        grid-template-columns: 1fr;
    }
}
