@charset "UTF-8";
:root {
  --color-bg: #1a0508;
  --color-bg-soft: #24080c;
  --color-bg-elevated: #2e0c12;
  --color-bg-card: #3a1018;
  --color-bg-input: #2a0a10;
  --color-primary: #b0102a;
  --color-primary-hover: #d41434;
  --color-primary-deep: #6e0818;
  --color-gold: #d4b06a;
  --color-gold-soft: #f0d9a0;
  --color-text: #f6efe4;
  --color-text-muted: #cbb8a4;
  --color-text-dim: #8a7366;
  --color-border: rgba(212, 176, 106, 0.22);
  --color-success: #6fbf8a;
  --color-warning: #d4b06a;
  --shadow-glow: 0 18px 40px rgba(80, 0, 12, 0.45);
  --shadow-gold: 0 0 0 1px rgba(212, 176, 106, 0.35);
  --header-h: 58px;
  --rail-w: 232px;
  --container: 1120px;
  --radius-sm: 0;
  --radius-md: 2px;
  --radius-lg: 2px;
  --radius-xl: 2px;
  --radius-pill: 2px;
  --ease: 0.2s ease;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  color-scheme: dark;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
body {
  margin: 0;
  font-family: "Instrument Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--color-text);
  background-color: var(--color-bg);
  background-image: radial-gradient(900px 420px at 0% 0%, rgba(176, 16, 42, 0.28), transparent 55%), radial-gradient(700px 380px at 100% 10%, rgba(212, 176, 106, 0.08), transparent 50%), repeating-linear-gradient(-45deg, transparent 0, transparent 11px, rgba(212, 176, 106, 0.035) 11px, rgba(212, 176, 106, 0.035) 12px);
  min-height: 100vh;
}

body.is-locked {
  overflow: hidden;
}

img,
svg {
  max-width: 100%;
  height: auto;
  display: block;
}

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

button {
  cursor: pointer;
  border: 0;
  background: none;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
p {
  margin: 0;
}

table {
  border-collapse: collapse;
}

:focus-visible {
  outline: 1px solid var(--color-gold);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -40px;
  z-index: 80;
  background: var(--color-gold);
  color: #2a1a00;
  padding: 8px 14px;
  font-weight: 700;
}

.skip-link:focus {
  top: 12px;
}

[id] {
  scroll-margin-top: calc(var(--header-h) + 16px);
}

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

@media (min-width: 1024px) {
  .shell {
    display: grid;
    grid-template-columns: var(--rail-w) 1fr;
    min-height: 100vh;
  }
}

.shell__main {
  min-width: 0;
}

.section {
  padding: 36px 0;
}
@media (min-width: 768px) {
  .section {
    padding: 48px 0;
  }
}

.section__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 10px;
}

.section__title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Cinzel", Georgia, "Times New Roman", serif;
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section__icon {
  width: 22px;
  height: 22px;
  color: var(--color-primary);
  flex-shrink: 0;
}

.section__link {
  color: var(--color-gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.page {
  padding-bottom: 92px;
}
@media (min-width: 768px) {
  .page {
    padding-bottom: 0;
  }
}

.age-bar {
  background: #120306;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.74rem;
  letter-spacing: 0.04em;
  color: var(--color-text-muted);
  padding: 7px 0;
}

.age-bar__inner {
  width: min(100% - 32px, 100%);
  margin-inline: auto;
  padding-inline: 16px;
  max-width: none;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.age-bar strong {
  color: var(--color-gold);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 0;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
  transition: background var(--ease), color var(--ease), transform var(--ease);
  text-align: center;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--primary {
  background: var(--color-primary);
  color: #fff;
}

.btn--primary:hover {
  background: var(--color-primary-hover);
}

.btn--ghost {
  border: 1px solid var(--color-border);
  background: transparent;
  color: var(--color-gold);
  clip-path: none;
}

.btn--gold {
  background: var(--color-gold);
  color: #2a1408;
}

.btn--full {
  width: 100%;
}

.btn--sm {
  min-height: 38px;
  padding: 0 14px;
  font-size: 0.72rem;
}

.stars {
  display: inline-flex;
  gap: 2px;
  color: var(--color-gold);
}

.stars svg {
  width: 16px;
  height: 16px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 10px;
  border: 1px solid var(--color-gold);
  color: var(--color-gold);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.filter {
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid var(--color-border);
  background: transparent;
  color: var(--color-text-muted);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.filter.is-active,
.filter[aria-pressed=true] {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}

.search {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  min-height: 42px;
  padding: 0 12px;
  background: var(--color-bg-input);
  border: 1px solid var(--color-border);
}

.search svg {
  width: 18px;
  height: 18px;
  color: var(--color-text-dim);
  flex-shrink: 0;
}

.search input {
  width: 100%;
  background: none;
  border: 0;
  outline: none;
}

.table-wrap {
  overflow-x: auto;
  margin: 18px 0 22px;
  border: 1px solid var(--color-border);
  background: rgba(18, 4, 8, 0.55);
}

.table {
  width: 100%;
  min-width: 560px;
  font-size: 0.92rem;
}

.table caption {
  caption-side: top;
  text-align: left;
  padding: 12px 14px 0;
  color: var(--color-gold);
  font-family: "Cinzel", Georgia, "Times New Roman", serif;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.table th,
.table td {
  padding: 12px 14px;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
  vertical-align: top;
}

.table th {
  color: var(--color-gold);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(176, 16, 42, 0.22);
}

.table tr:last-child td {
  border-bottom: 0;
}

.steps {
  margin: 16px 0 20px;
  padding-left: 0;
  list-style: none;
  counter-reset: step;
  color: var(--color-text-muted);
}

.steps li {
  margin: 10px 0;
  padding-left: 42px;
  position: relative;
  counter-increment: step;
}

.steps li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-gold);
  font-family: "Cinzel", Georgia, "Times New Roman", serif;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
}

.steps strong {
  color: var(--color-text);
}

.crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--color-text-dim);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.crumbs a:hover {
  color: var(--color-gold);
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: none;
}

.modal.is-open {
  display: block;
}

.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 2, 4, 0.78);
}

.modal__panel {
  position: relative;
  width: min(100% - 32px, 480px);
  margin: 12vh auto 0;
  padding: 24px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-gold);
  box-shadow: var(--shadow-glow);
}

.modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  font-size: 1.4rem;
  color: var(--color-text-muted);
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}

.field span {
  font-size: 0.82rem;
  color: var(--color-text-muted);
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid var(--color-border);
  background: var(--color-bg-input);
  padding: 10px 12px;
}

.form-error {
  color: #ff8a9a;
  min-height: 1.2em;
  font-size: 0.85rem;
  margin-bottom: 10px;
}

.star-pick {
  display: flex;
  gap: 6px;
}

.star-pick button {
  font-size: 1.4rem;
  color: var(--color-text-dim);
}

.star-pick button.is-on {
  color: var(--color-gold);
}

.rail {
  display: none;
  background: linear-gradient(180deg, #2a0810 0%, #140306 100%);
  border-right: 1px solid var(--color-border);
  padding: 22px 18px 28px;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: auto;
}
@media (min-width: 1024px) {
  .rail {
    display: flex;
    flex-direction: column;
    gap: 22px;
  }
}

.rail__logo img {
  width: 168px;
  height: auto;
}

.rail__offer {
  padding: 14px;
  border: 1px solid var(--color-gold);
  background: rgba(176, 16, 42, 0.22);
}

.rail__offer span {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 6px;
}

.rail__offer strong {
  font-family: "Cinzel", Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  display: block;
  margin-bottom: 12px;
}

.rail nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.rail nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 8px;
  color: var(--color-text-muted);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-left: 2px solid transparent;
}

.rail nav a::before {
  content: "♦";
  color: var(--color-primary);
  font-size: 0.7rem;
}

.rail nav a:hover,
.rail nav a.is-active {
  color: var(--color-gold);
  border-left-color: var(--color-gold);
  background: rgba(212, 176, 106, 0.06);
}

.header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--header-h);
  background: rgba(18, 4, 8, 0.94);
  border-bottom: 1px solid var(--color-border);
}

.header__inner {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 18px;
}

.header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.header__logo img {
  width: 148px;
  height: auto;
}

@media (min-width: 1024px) {
  .header__logo {
    visibility: hidden;
  }
}
.nav {
  display: none;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

@media (max-width: 380px) {
  .header__actions .btn {
    display: none;
  }
}
.burger {
  width: 42px;
  height: 42px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border: 1px solid var(--color-border);
}
@media (min-width: 1024px) {
  .burger {
    display: none;
  }
}

.burger span,
.burger::before,
.burger::after {
  content: "";
  width: 18px;
  height: 2px;
  background: var(--color-gold);
  display: block;
}

.drawer {
  position: fixed;
  inset: 0;
  z-index: 60;
  pointer-events: none;
}

.drawer.is-open {
  pointer-events: auto;
}

.drawer__overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 2, 4, 0.72);
  opacity: 0;
  transition: opacity var(--ease);
}

.drawer.is-open .drawer__overlay {
  opacity: 1;
}

.drawer__panel {
  position: absolute;
  top: 0;
  left: 0;
  width: min(86vw, 340px);
  height: 100%;
  background: #1c070b;
  border-right: 1px solid var(--color-gold);
  transform: translateX(-100%);
  transition: transform var(--ease);
  padding: 20px;
  overflow: auto;
}

.drawer.is-open .drawer__panel {
  transform: none;
}

.drawer__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
  font-family: "Cinzel", Georgia, "Times New Roman", serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.drawer__close {
  width: 40px;
  height: 40px;
  font-size: 1.6rem;
  color: var(--color-text-muted);
}

.drawer__list {
  list-style: none;
}

.drawer__list a {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid var(--color-border);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.dock {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 35;
  display: flex;
  gap: 8px;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  background: #140306;
  border-top: 1px solid var(--color-gold);
}
@media (min-width: 768px) {
  .dock {
    display: none;
  }
}

.footer {
  border-top: 1px solid var(--color-gold);
  background: #100204;
  padding: 40px 0 28px;
}

.footer__grid {
  display: grid;
  gap: 24px;
}
@media (min-width: 768px) {
  .footer__grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
}

.footer p,
.footer li {
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

.footer__brand img {
  width: 150px;
  margin-bottom: 12px;
}

.footer__nav {
  list-style: none;
}

.footer__nav a {
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.footer__nav a:hover {
  color: var(--color-gold);
}

.footer__legal {
  margin-top: 28px;
  padding-top: 16px;
  border-top: 1px solid var(--color-border);
  font-size: 0.78rem;
  color: var(--color-text-dim);
}

.footer__legal a {
  color: var(--color-gold);
}

.hero {
  padding: 0 0 12px;
  position: relative;
}

.hero__slider {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border-bottom: 1px solid var(--color-border);
  background: #140306;
}
@media (min-width: 768px) {
  .hero__slider {
    min-height: 520px;
  }
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s ease;
}

.hero__slide.is-active {
  opacity: 1;
  pointer-events: auto;
  position: relative;
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(18, 4, 8, 0.88) 0%, rgba(18, 4, 8, 0.55) 42%, rgba(18, 4, 8, 0.18) 100%);
}

.hero__copy {
  position: relative;
  z-index: 1;
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
  padding: 40px 0 36px;
  max-width: 36rem;
}
@media (min-width: 768px) {
  .hero__copy {
    padding: 72px 0 56px;
    margin-left: max(16px, (100% - var(--container)) / 2);
    margin-right: auto;
  }
}

.hero__kicker {
  color: var(--color-gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.hero__offer {
  font-family: "Cinzel", Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 5.2vw, 3.4rem);
  line-height: 1.02;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 14px;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
}

.hero__note {
  color: var(--color-text-muted);
  max-width: 46ch;
  margin-bottom: 24px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero__dots {
  display: flex;
  justify-content: flex-start;
  gap: 8px;
  margin: 14px 0 16px;
}

.hero__dot {
  width: 22px;
  height: 3px;
  background: rgba(255, 255, 255, 0.2);
}

.hero__dot.is-active {
  background: var(--color-gold);
}

.quick {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin-top: 0;
  background: var(--color-border);
}
@media (min-width: 768px) {
  .quick {
    grid-template-columns: repeat(4, 1fr);
  }
}

.quick__item {
  padding: 16px 18px;
  background: var(--color-bg-elevated);
}

.quick__item span {
  display: block;
  color: var(--color-gold);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 4px;
}

.quick__item strong {
  font-size: 0.95rem;
  font-family: "Cinzel", Georgia, "Times New Roman", serif;
}

.toolbar {
  margin: 18px 0 8px;
}

.toolbar__row {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
}

.toolbar__filters {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding-bottom: 6px;
  scrollbar-width: none;
}

.toolbar__filters::-webkit-scrollbar {
  display: none;
}

.games {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
@media (min-width: 480px) {
  .games {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 768px) {
  .games {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 1024px) {
  .games {
    grid-template-columns: repeat(6, 1fr);
  }
}

.game {
  position: relative;
}

.game__cover {
  display: block;
  overflow: hidden;
  border: 1px solid var(--color-border);
  background: #120306;
  transition: transform var(--ease), border-color var(--ease);
}

.game__cover:hover {
  transform: translateY(-4px) rotate(-1deg);
  border-color: var(--color-gold);
}

.game__art {
  display: block;
  aspect-ratio: 3/4;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.game__name {
  display: block;
  padding: 8px 8px 10px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-gold);
  background: #120306;
}

.game__fav {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 30px;
  height: 30px;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  border: 1px solid var(--color-border);
}

.game__fav.is-on {
  color: var(--color-gold);
  border-color: var(--color-gold);
}

.providers {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin-top: 16px;
  background: var(--color-border);
}
@media (min-width: 768px) {
  .providers {
    grid-template-columns: repeat(5, 1fr);
  }
}

.provider {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  padding: 0;
  background: #160408;
  transition: filter var(--ease);
}

.provider:hover {
  filter: brightness(1.12);
}

.provider img {
  width: 100%;
  height: 72px;
  object-fit: cover;
}

.tabs {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.layout {
  display: grid;
  gap: 28px;
  padding: 28px 0 56px;
}
@media (min-width: 1024px) {
  .layout {
    grid-template-columns: 220px 1fr;
    align-items: start;
  }
}

.toc {
  border: 1px solid var(--color-border);
  background: rgba(18, 4, 8, 0.7);
  padding: 16px;
}

@media (min-width: 1024px) {
  .sticky-toc {
    position: sticky;
    top: calc(var(--header-h) + 16px);
  }
}

.toc__title {
  font-family: "Cinzel", Georgia, "Times New Roman", serif;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--color-gold);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.toc__list {
  list-style: none;
}

.toc__list a {
  display: block;
  padding: 8px 0 8px 10px;
  color: var(--color-text-muted);
  font-size: 0.86rem;
  border-left: 1px solid transparent;
}

.toc__list a:hover,
.toc__list a.is-active {
  color: var(--color-gold);
  border-left-color: var(--color-gold);
}

.article h1 {
  font-family: "Cinzel", Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 3.2vw, 2.5rem);
  line-height: 1.12;
  letter-spacing: 0.03em;
  margin: 10px 0 16px;
}

.article h2 {
  font-family: "Cinzel", Georgia, "Times New Roman", serif;
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 36px 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--color-border);
}

.article h3 {
  margin: 18px 0 8px;
  font-size: 1.02rem;
  letter-spacing: 0.04em;
}

.article p {
  color: var(--color-text-muted);
  margin-bottom: 12px;
}

.article a {
  color: var(--color-gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.article p strong {
  color: var(--color-text);
  font-weight: 650;
}

.proscons {
  display: grid;
  gap: 12px;
  margin: 18px 0 8px;
}
@media (min-width: 768px) {
  .proscons {
    grid-template-columns: 1fr 1fr;
  }
}

.proscons__box {
  padding: 16px;
  border: 1px solid var(--color-border);
}

.proscons__box--yes {
  border-color: rgba(111, 191, 138, 0.4);
  background: rgba(111, 191, 138, 0.06);
}

.proscons__box--no {
  border-color: rgba(176, 16, 42, 0.55);
  background: rgba(176, 16, 42, 0.1);
}

.proscons h3 {
  margin: 0 0 8px;
  font-family: "Cinzel", Georgia, "Times New Roman", serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.proscons li {
  margin-left: 18px;
  color: var(--color-text-muted);
}

.faq {
  border-top: 1px solid var(--color-border);
}

.faq__item {
  border-bottom: 1px solid var(--color-border);
}

.faq__item button {
  width: 100%;
  text-align: left;
  padding: 14px 0;
  font-weight: 700;
  letter-spacing: 0.03em;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.faq__item p {
  display: none;
  padding-bottom: 14px;
}

.faq__item.is-open p {
  display: block;
}

.faq__item.is-open button span {
  color: var(--color-gold);
}

.reviews {
  display: grid;
  gap: 12px;
}

.review {
  padding: 16px 16px 16px 18px;
  background: rgba(18, 4, 8, 0.55);
  border-left: 2px solid var(--color-gold);
}

.review__head {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 8px;
}

.review__meta {
  color: var(--color-text-dim);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.review p {
  color: var(--color-text-muted);
}

.review-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.promo {
  display: block;
  margin: 22px 0 8px;
  border: 1px solid var(--color-border);
  overflow: hidden;
}

.promo img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}

.promo:hover {
  border-color: var(--color-gold);
}
