:root {
  --bg: #101010;
  --bg-2: #0a0a0a;
  --header: #1a1616;
  --surface: #1d1a1a;
  --surface-2: #272222;
  --line: rgba(255, 255, 255, 0.08);
  --line-2: rgba(255, 255, 255, 0.14);
  --text: #ffffff;
  --text-2: #b5b5b5;
  --text-3: #7d7d7d;
  --red: #ea1c24;
  --red-2: #b5121b;
  --red-deep: #5a070c;
  --red-rgb: 234, 28, 36;
  --green: #32b653;
  --green-2: #279544;
  --green-rgb: 50, 182, 83;
  --gold: #ffc93c;
  --font: "Roboto", "Segoe UI", system-ui, -apple-system, Arial, sans-serif;
  --r-sm: 8px;
  --r: 14px;
  --r-lg: 22px;
  --wrap: 1240px;
  --aside: 320px;
  --top-h: 116px;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  background-image: radial-gradient(1200px 520px at 50% -180px, rgba(var(--red-rgb), 0.12), transparent 70%);
  background-repeat: no-repeat;
  color: var(--text);
  font: 400 16px/1.6 var(--font);
  min-height: 100vh;
}
img, svg { max-width: 100%; }
img { height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; }
ul, ol { margin: 0; padding: 0; }
.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 20px; }

.cta-btn,
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--r-sm);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 0.18s ease, border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}
.cta-btn--green,
.cta-button-dark {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
  box-shadow: 0 0 14px rgba(var(--green-rgb), 0.22);
}
.cta-btn--green:hover,
.cta-button-dark:hover { background: var(--green-2); border-color: var(--green-2); }
.cta-btn--ghost,
.cta-button-ghost {
  background: transparent;
  color: #fff;
  border-color: var(--line-2);
}
.cta-btn--ghost:hover,
.cta-button-ghost:hover { border-color: #fff; }
.cta-btn--lg,
.cta-button-lg { min-height: 48px; padding: 0 26px; font-size: 15px; }
.cta-btn--block { display: flex; width: 100%; }

.section-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.section-heading::before {
  content: "";
  width: 4px;
  height: 20px;
  border-radius: 2px;
  background: var(--red);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--header);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.2s ease;
}
.site-header.is-scrolled { box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45); }
.site-header__bar {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 64px;
}
.wordmark { display: inline-flex; align-items: center; flex-shrink: 0; }
.wordmark img { height: 28px; width: auto; }
.wordmark__a { color: var(--red); font-weight: 900; font-size: 24px; letter-spacing: -0.02em; }
.wordmark__b { color: #fff; font-weight: 900; font-size: 24px; text-transform: uppercase; }
.site-header__controls { display: flex; gap: 10px; margin-left: auto; }

.menubar {
  margin-bottom: 12px;
  border-radius: var(--r);
  background: linear-gradient(180deg, var(--red) 0%, var(--red-2) 100%);
  box-shadow: 0 8px 24px rgba(var(--red-rgb), 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.18);
  overflow: hidden;
}
.menubar__list {
  display: flex;
  gap: 2px;
  padding: 6px;
  list-style: none;
  overflow-x: auto;
  scrollbar-width: none;
}
.menubar__list::-webkit-scrollbar { display: none; }
.menubar__link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  height: 36px;
  padding: 0 14px;
  border-radius: var(--r-sm);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: background-color 0.15s ease;
}
.menubar__link:hover { background: rgba(0, 0, 0, 0.18); }
.menubar__link--promo {
  background: #ff2323;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.35) inset;
}
.menubar__link--promo:hover { background: #ff3b3b; }

.content-area { padding: 20px 0 0; }

.showcase {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  align-items: center;
  gap: 24px;
  min-height: 380px;
  padding: 44px 48px;
  border-radius: var(--r-lg);
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 78% 50%, rgba(var(--red-rgb), 0.55) 0%, rgba(var(--red-rgb), 0) 55%),
    linear-gradient(120deg, #190004 0%, #000 62%);
  border: 1px solid rgba(var(--red-rgb), 0.25);
}
.showcase__deco { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.showcase__deco span {
  position: absolute;
  top: -20%;
  width: 90px;
  height: 140%;
  background: linear-gradient(180deg, rgba(var(--red-rgb), 0.22), rgba(var(--red-rgb), 0));
  transform: skewX(-18deg);
}
.showcase__deco span:nth-child(1) { right: 34%; opacity: 0.55; }
.showcase__deco span:nth-child(2) { right: 26%; width: 36px; opacity: 0.4; }
.showcase__deco span:nth-child(3) { right: 8%; width: 14px; opacity: 0.6; }
.showcase__copy { position: relative; z-index: 2; }
.showcase__badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.showcase__tag {
  padding: 5px 11px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  color: var(--text-2);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.showcase__tag.is-main { border-color: transparent; background: var(--red); color: #fff; }
.showcase__headline {
  margin: 0 0 14px;
  font-size: clamp(30px, 3.6vw, 46px);
  font-weight: 900;
  line-height: 1.06;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.showcase__sub { max-width: 520px; margin: 0 0 20px; color: #d6d6d6; font-size: 17px; }
.showcase__bonus {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding: 8px 16px 8px 8px;
  border-radius: var(--r);
  background: rgba(255, 255, 255, 0.06);
  border: 1px dashed rgba(255, 255, 255, 0.22);
}
.showcase__bonus-num {
  padding: 6px 12px;
  border-radius: var(--r-sm);
  background: var(--gold);
  color: #1a1200;
  font-weight: 900;
  font-size: 18px;
  white-space: nowrap;
  flex-shrink: 0;
}
.showcase__bonus-text { color: var(--text-2); font-size: 14px; }
.showcase__controls { display: flex; flex-wrap: wrap; gap: 12px; }
.showcase__art { position: relative; z-index: 1; display: flex; align-items: center; justify-content: center; min-height: 300px; }
.showcase__art::before {
  content: "";
  position: absolute;
  width: 78%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--red-rgb), 0.45) 0%, rgba(var(--red-rgb), 0) 68%);
  filter: blur(6px);
}
.showcase__img {
  position: relative;
  width: 100%;
  max-width: 460px;
  max-height: 400px;
  object-fit: contain;
  filter: drop-shadow(0 26px 40px rgba(0, 0, 0, 0.6));
}
.showcase__fallback { position: relative; display: grid; place-items: center; width: 300px; aspect-ratio: 1; }
.showcase__ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px dashed rgba(255, 255, 255, 0.18);
  animation: c-spin 30s linear infinite;
}
.showcase__num {
  font-size: 120px;
  font-weight: 900;
  font-style: italic;
  line-height: 1;
  color: var(--red);
  text-shadow: 0 10px 40px rgba(var(--red-rgb), 0.6);
  letter-spacing: -0.06em;
}
.showcase__star { position: absolute; top: 14%; right: 12%; color: #fff; opacity: 0.9; }

.showcase--banner {
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.7fr);
  min-height: 340px;
  background: #000;
  border: 0;
  border-left: 6px solid var(--red);
}
.showcase--banner .showcase__deco span { background: linear-gradient(180deg, rgba(var(--red-rgb), 0.35), rgba(var(--red-rgb), 0.05)); }
.showcase--banner .showcase__headline { font-size: clamp(30px, 3.4vw, 42px); }
.showcase--banner .showcase__art::before { width: 100%; }

.showcase--stacked {
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
  padding-bottom: 0;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(var(--red-rgb), 0.6) 0%, rgba(var(--red-rgb), 0) 60%),
    linear-gradient(180deg, #0a0a0a 0%, #1a0003 100%);
}
.showcase--stacked .showcase__badges,
.showcase--stacked .showcase__controls { justify-content: center; }
.showcase--stacked .showcase__sub { margin-left: auto; margin-right: auto; }
.showcase--stacked .showcase__art { min-height: 220px; width: 100%; }
.showcase--stacked .showcase__img { max-height: 300px; }
.showcase--stacked .showcase__deco span:nth-child(1) { right: auto; left: 8%; }
.showcase--stacked .showcase__deco span:nth-child(2) { right: 10%; }

.lobby { margin-top: 28px; }
.lobby__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.lobby__nav { display: flex; gap: 8px; }
.lobby__arrow {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line-2);
  border-radius: var(--r-sm);
  background: var(--surface);
  cursor: pointer;
  transition: background-color 0.15s ease, border-color 0.15s ease;
}
.lobby__arrow:hover { background: var(--red); border-color: var(--red); }
.lobby__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 176px;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 6px;
  scrollbar-width: none;
}
.lobby__track::-webkit-scrollbar { display: none; }
.game-card { display: block; scroll-snap-align: start; }
.game-card__art {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  border-radius: var(--r);
  overflow: hidden;
  background: var(--surface-2);
  border: 1px solid var(--line);
}
.game-card__art img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.game-card__fallback {
  display: grid;
  place-items: center;
  height: 100%;
  color: var(--red);
  font-weight: 900;
  font-size: 34px;
  font-style: italic;
}
.game-card__rate {
  position: absolute;
  top: 8px;
  left: 8px;
  padding: 2px 7px;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.72);
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
}
.game-card__play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  transition: opacity 0.2s ease;
}
.game-card__play span {
  padding: 8px 18px;
  border-radius: var(--r-sm);
  background: var(--green);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}
.game-card:hover .game-card__play { opacity: 1; }
.game-card:hover .game-card__art img { transform: scale(1.06); }
.game-card__name {
  display: block;
  margin-top: 8px;
  overflow: hidden;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.game-card__meta { display: block; color: var(--text-3); font-size: 12px; }

.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}
.counter {
  position: relative;
  padding: 18px 20px;
  border-radius: var(--r);
  background: var(--surface);
  border: 1px solid var(--line);
  overflow: hidden;
}
.counter::after {
  content: "";
  position: absolute;
  right: -20px;
  bottom: -30px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: rgba(var(--red-rgb), 0.12);
}
.counter__n { color: var(--red); font-size: 28px; font-weight: 900; line-height: 1.1; }
.counter__l { margin-top: 4px; color: var(--text-2); font-size: 14px; }

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) var(--aside);
  align-items: start;
  gap: 28px;
  margin-top: 28px;
}
.article-body {
  min-width: 0;
  padding: 34px 38px;
  border-radius: var(--r-lg);
  background: var(--surface);
  border: 1px solid var(--line);
}
.article-body__h1 {
  margin: 0 0 20px;
  font-size: clamp(26px, 2.6vw, 34px);
  font-weight: 900;
  line-height: 1.15;
}

.page-head {
  position: relative;
  padding: 28px 32px;
  border-radius: var(--r-lg);
  background: linear-gradient(110deg, rgba(var(--red-rgb), 0.28) 0%, rgba(var(--red-rgb), 0) 55%), var(--surface);
  border: 1px solid var(--line);
  border-left: 4px solid var(--red);
}
.page-head__headline { margin: 8px 0 0; font-size: clamp(26px, 2.6vw, 36px); font-weight: 900; line-height: 1.15; }
.path-nav { display: flex; flex-wrap: wrap; gap: 8px; color: var(--text-3); font-size: 13px; }
.path-nav a { color: var(--text-2); }
.path-nav a:hover { color: #fff; }
.path-nav__sep { opacity: 0.5; }

.entry-content { color: #dcdcdc; font-size: 16.5px; line-height: 1.75; }
.entry-content > *:first-child { margin-top: 0; }
.entry-content p { margin: 0 0 18px; }
.entry-content h2 {
  position: relative;
  margin: 38px 0 16px;
  padding-bottom: 12px;
  color: #fff;
  font-size: 25px;
  font-weight: 800;
  line-height: 1.25;
  scroll-margin-top: var(--toc-scroll-offset, 132px);
}
.entry-content h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 48px;
  height: 3px;
  border-radius: 2px;
  background: var(--red);
}
.entry-content h3 {
  margin: 28px 0 12px;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  scroll-margin-top: var(--toc-scroll-offset, 132px);
}
.entry-content a { color: #ff4d4d; text-decoration: underline; text-underline-offset: 3px; }
.entry-content a.cta-button,
.entry-content .cta-btn { color: #fff; text-decoration: none; }
.entry-content strong { color: #fff; }
.entry-content ul,
.entry-content ol { margin: 0 0 20px; padding: 0; list-style: none; }
.entry-content li { position: relative; margin-bottom: 10px; padding-left: 28px; }
.entry-content ul > li::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 0.62em;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--red);
  transform: rotate(45deg);
}
.entry-content ol { counter-reset: c-ol; }
.entry-content ol > li { counter-increment: c-ol; }
.entry-content ol > li::before {
  content: counter(c-ol);
  position: absolute;
  left: 0;
  top: 0.15em;
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}
.entry-content blockquote {
  margin: 0 0 20px;
  padding: 16px 20px;
  border-left: 3px solid var(--red);
  border-radius: 0 var(--r) var(--r) 0;
  background: var(--surface-2);
  color: #eaeaea;
}
.entry-content img,
.post-image { width: 100%; margin: 8px 0 20px; border-radius: var(--r); }
.table-scroll { margin: 0 0 22px; overflow-x: auto; border-radius: var(--r); border: 1px solid var(--line); }
.entry-content table { width: 100%; min-width: 520px; border-collapse: collapse; font-size: 15px; }
.entry-content th,
.entry-content td { padding: 12px 16px; text-align: left; border-bottom: 1px solid var(--line); vertical-align: top; }
.entry-content thead th { background: var(--red-2); color: #fff; font-weight: 700; }
.entry-content tbody tr:nth-child(even) { background: rgba(255, 255, 255, 0.025); }
.entry-content tbody tr:last-child td { border-bottom: 0; }
.page-button { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 12px; margin: 0 0 24px; }

.aside-panel { position: sticky; top: calc(var(--top-h) + 16px); min-width: 0; }
.aside-panel__box {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-height: calc(100vh - var(--top-h) - 32px);
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--surface-2) transparent;
}
.toc {
  padding: 18px 16px 16px;
  border-radius: var(--r-lg);
  background: var(--surface);
  border: 1px solid var(--line);
}
.toc-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin: 0 0 10px;
  padding: 0 4px;
  border: 0;
  background: none;
  text-align: left;
  cursor: pointer;
}
.toc-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.toc-title::before { content: ""; width: 4px; height: 16px; border-radius: 2px; background: var(--red); }
.toc-toggle__icon { display: inline-flex; color: var(--text-2); transition: transform 0.2s ease; }
.toc-head[aria-expanded="true"] .toc-toggle__icon { transform: rotate(180deg); }
.toc-list { counter-reset: c-toc; list-style: none; }
.toc-list.collapsed { display: none; }
.toc-list li { counter-increment: c-toc; }
.toc-list a {
  position: relative;
  display: flex;
  gap: 10px;
  padding: 8px 10px;
  border-radius: var(--r-sm);
  color: var(--text-2);
  font-size: 14px;
  line-height: 1.4;
  transition: color 0.15s ease, background-color 0.15s ease;
}
.toc-list a::before {
  content: counter(c-toc, decimal-leading-zero);
  flex-shrink: 0;
  color: var(--text-3);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.6;
}
.toc-list a:hover { color: #fff; background: rgba(255, 255, 255, 0.04); }
.toc-list a.is-active { color: #fff; background: rgba(var(--red-rgb), 0.14); }
.toc-list a.is-active::before { color: var(--red); }
.toc-list a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 3px;
  border-radius: 2px;
  background: var(--red);
}
.toc-sub a { padding-left: 26px; font-size: 13px; }

.side-offer {
  position: relative;
  flex-shrink: 0;
  padding: 22px 20px 18px;
  border-radius: var(--r-lg);
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(160deg, var(--red) 0%, var(--red-2) 45%, var(--red-deep) 100%);
  box-shadow: 0 14px 34px rgba(var(--red-rgb), 0.25);
}
.side-offer__glow {
  position: absolute;
  top: -60px;
  right: -60px;
  z-index: -1;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0) 70%);
}
.side-offer::after {
  content: "888";
  position: absolute;
  right: -8px;
  bottom: -26px;
  z-index: -1;
  color: rgba(0, 0, 0, 0.18);
  font-size: 110px;
  font-weight: 900;
  font-style: italic;
  line-height: 1;
  letter-spacing: -0.06em;
}
.side-offer__kicker {
  display: inline-block;
  margin-bottom: 10px;
  padding: 3px 9px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.28);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.side-offer__tag { font-size: 48px; font-weight: 900; line-height: 1; letter-spacing: -0.02em; text-shadow: 0 4px 16px rgba(0, 0, 0, 0.3); }
.side-offer__headline { margin: 8px 0 8px; font-size: 18px; font-weight: 800; line-height: 1.25; }
.side-offer__text { margin: 0 0 16px; color: rgba(255, 255, 255, 0.86); font-size: 14px; line-height: 1.5; }
.side-offer__age { margin-top: 10px; color: rgba(255, 255, 255, 0.7); font-size: 12px; text-align: center; }

.benefits { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; margin: 8px 0 30px; }
.benefit {
  position: relative;
  display: flex;
  gap: 14px;
  padding: 18px;
  border-radius: var(--r);
  background: var(--surface-2);
  border: 1px solid var(--line);
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.benefit:hover { border-color: rgba(var(--red-rgb), 0.55); transform: translateY(-2px); }
.benefit__icon {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: var(--r);
  background: rgba(var(--red-rgb), 0.16);
  color: var(--red);
}
.benefit__headline { margin-bottom: 4px; color: #fff; font-size: 16px; font-weight: 700; line-height: 1.3; }
.benefit__text { margin: 0; color: var(--text-2); font-size: 14px; line-height: 1.55; }
.benefit__num { position: absolute; top: 12px; right: 14px; color: var(--text-3); font-size: 12px; font-weight: 800; opacity: 0.6; }

.bonus {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  margin: 8px 0 30px;
  padding: 22px 24px;
  border-radius: var(--r-lg);
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(100deg, var(--red-deep) 0%, var(--red-2) 60%, var(--red) 100%);
}
.bonus::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: repeating-linear-gradient(-55deg, rgba(255, 255, 255, 0.05) 0 12px, transparent 12px 28px);
}
.bonus__tag {
  display: grid;
  place-items: center;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: #000;
  border: 3px solid var(--gold);
  box-shadow: 0 0 0 6px rgba(0, 0, 0, 0.25);
}
.bonus__tag span { color: var(--gold); font-size: 22px; font-weight: 900; text-align: center; line-height: 1.05; }
.bonus__headline { color: #fff; font-size: 20px; font-weight: 800; line-height: 1.25; }
.bonus__text { margin: 6px 0 0; color: rgba(255, 255, 255, 0.85); font-size: 14px; line-height: 1.5; }
.bonus--nobadge { grid-template-columns: minmax(0, 1fr) auto; }
.bonus .cta-btn { max-width: 100%; }

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 10px 0 30px;
  padding: 26px 28px;
  border-radius: var(--r-lg);
  background: radial-gradient(circle at 100% 0%, rgba(var(--red-rgb), 0.4), transparent 55%), #0a0a0a;
  border: 1px solid rgba(var(--red-rgb), 0.45);
}
.cta-panel__headline { color: #fff; font-size: 22px; font-weight: 900; text-transform: uppercase; line-height: 1.2; }
.cta-panel__sub { margin: 8px 0 0; color: var(--text-2); font-size: 15px; line-height: 1.5; }

.feedback { margin: 8px 0 30px; }
.feedback__h { margin-bottom: 14px; color: #fff; font-size: 19px; font-weight: 800; }
.feedback__items {
  --c-voices-gap: 14px;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 2 * var(--c-voices-gap)) / 3);
  gap: var(--c-voices-gap);
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 10px;
  scrollbar-width: thin;
  scrollbar-color: var(--red) rgba(255, 255, 255, 0.08);
}
.feedback__items::-webkit-scrollbar { height: 6px; }
.feedback__items::-webkit-scrollbar-track { background: rgba(255, 255, 255, 0.08); border-radius: 3px; }
.feedback__items::-webkit-scrollbar-thumb { background: var(--red); border-radius: 3px; }
.feedback__items > .feedback-card { scroll-snap-align: start; min-width: 0; }
.feedback-card {
  margin: 0;
  padding: 18px;
  border-radius: var(--r);
  background: var(--surface-2);
  border: 1px solid var(--line);
}
.feedback-card__top { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.feedback-card__avatar {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-weight: 800;
}
.feedback-card__who { color: #fff; font-weight: 700; font-size: 15px; }
.feedback-card__stars { display: flex; gap: 2px; margin-left: auto; color: #4a4a4a; }
.feedback-card__star.is-on { color: var(--gold); }
.feedback-card .feedback-card__text { margin: 0; padding: 0; border: 0; background: none; color: var(--text-2); font-size: 14.5px; font-style: normal; line-height: 1.6; }

.partners {
  position: relative;
  margin: 48px 0 0;
  padding: 30px 0 34px;
  border-top: 1px solid var(--line);
  overflow: hidden;
}
.partners__head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 22px;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.partners__head::before,
.partners__head::after {
  content: "";
  width: 36px;
  height: 2px;
  border-radius: 2px;
  background: var(--red);
}
.partners::before,
.partners::after {
  content: "";
  position: absolute;
  bottom: 0;
  z-index: 2;
  width: 90px;
  height: calc(100% - 70px);
  pointer-events: none;
}
.partners::before { left: 0; background: linear-gradient(90deg, var(--bg), transparent); }
.partners::after { right: 0; background: linear-gradient(270deg, var(--bg), transparent); }
.partners__track { display: flex; width: max-content; animation: c-marquee var(--c-studios-dur, 40s) linear infinite; }
.partners:hover .partners__track { animation-play-state: paused; }
.partners__set { display: flex; align-items: center; gap: 48px; padding-right: 48px; }
.vendor {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 130px;
  height: 40px;
  color: #9a9a9a;
  opacity: 0.8;
  transition: color 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}
.vendor:hover { color: #fff; opacity: 1; transform: scale(1.06); }
.vendor-logo { width: 100%; height: 100%; max-height: 36px; object-fit: contain; }
.vendor--text { font-size: 14px; font-weight: 800; text-align: center; white-space: nowrap; }

.qa-list { display: grid; gap: 10px; margin: 0 0 24px; }
.qa-item { border-radius: var(--r); background: var(--surface-2); border: 1px solid var(--line); transition: border-color 0.2s ease; }
.qa-item.is-open { border-color: rgba(var(--red-rgb), 0.55); }
.entry-content .qa-question { margin: 0; padding: 0; font-size: inherit; scroll-margin-top: 0; }
.qa-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 16px 18px;
  border: 0;
  background: none;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}
.qa-icon {
  position: relative;
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--red);
}
.qa-icon::before,
.qa-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 11px;
  height: 2px;
  margin: -1px 0 0 -5.5px;
  background: #fff;
  transition: transform 0.2s ease;
}
.qa-icon::after { transform: rotate(90deg); }
.qa-item.is-open .qa-icon::after { transform: rotate(0deg); }
.qa-answer { padding: 0 18px 16px; color: var(--text-2); font-size: 15px; }
.qa-answer p:last-child { margin-bottom: 0; }

.page-footer {
  margin-top: 56px;
  padding-top: 40px;
  background: var(--header);
  border-top: 3px solid var(--red);
}
.page-footer__items { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 32px; }
.wordmark--foot img { height: 26px; }
.page-footer__desc { margin: 16px 0 0; max-width: 380px; color: var(--text-3); font-size: 14px; line-height: 1.6; }
.page-footer__desc--wide { max-width: none; }
.page-footer__age { display: flex; align-items: center; gap: 10px; margin-top: 16px; color: var(--text-2); font-size: 13px; }
.age-badge {
  display: inline-grid;
  place-items: center;
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid var(--red);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}
.page-footer__h { margin-bottom: 14px; color: #fff; font-size: 14px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.05em; }
.page-footer__links { display: grid; gap: 9px; list-style: none; }
.page-footer__links a,
.page-footer__links span { color: var(--text-2); font-size: 14px; word-break: break-word; }
.page-footer__links a:hover { color: #fff; }
.page-footer__row { display: flex; flex-wrap: wrap; align-items: center; gap: 20px 28px; }
.page-footer__inline { display: flex; flex-wrap: wrap; flex: 1; gap: 8px 20px; list-style: none; }
.page-footer__inline a { color: var(--text-2); font-size: 14px; }
.page-footer__inline a:hover { color: #fff; }
.page-footer__pay {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 32px;
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.page-footer__pay-h { margin: 0; }
.cashier-icons { display: flex; flex-wrap: wrap; align-items: center; gap: 18px 30px; list-style: none; }
.cashier-icons__item { display: inline-flex; align-items: center; opacity: 0.85; transition: opacity 0.2s ease; }
.cashier-icons__item:hover { opacity: 1; }
.cashier-icons__svg { display: block; height: 24px; width: auto; }
.cashier-icons__text { color: var(--text-2); font-size: 14px; font-weight: 800; }
.page-footer__bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  margin-top: 22px;
  padding: 18px 0 24px;
  border-top: 1px solid var(--line);
  color: var(--text-3);
  font-size: 13px;
}

.missing {
  padding: 60px 24px;
  border-radius: var(--r-lg);
  background: radial-gradient(circle at 50% 0%, rgba(var(--red-rgb), 0.35), transparent 60%), var(--surface);
  border: 1px solid var(--line);
  text-align: center;
}
.missing__num { color: var(--red); font-size: clamp(90px, 14vw, 160px); font-weight: 900; font-style: italic; line-height: 1; letter-spacing: -0.05em; }
.missing__headline { margin: 10px 0 8px; font-size: 28px; font-weight: 900; }
.missing__sub { max-width: 460px; margin: 0 auto 24px; color: var(--text-2); }

@keyframes c-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes c-spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) {
  .partners__track,
  .showcase__ring { animation: none; }
  .lobby__track { scroll-behavior: auto; }
}

@media (min-width: 1025px) {
  .aside-panel .toc-list.collapsed { display: block; }
  .aside-panel .toc-head { cursor: default; pointer-events: none; }
  .aside-panel .toc-toggle__icon { display: none; }
}

@media (max-width: 1024px) {
  :root { --top-h: 104px; }
  .site-header__bar { gap: 14px; height: 58px; }
  .menubar { margin-bottom: 10px; }
  .menubar__link { height: 32px; padding: 0 12px; font-size: 13px; }
  .split { grid-template-columns: 1fr; gap: 20px; }
  .aside-panel { position: static; order: -1; }
  .aside-panel__box { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); align-items: start; max-height: none; overflow: visible; }
  .toc-head { margin: 0; }
  .toc-head[aria-expanded="true"] { margin-bottom: 10px; }
  .page-footer__items { grid-template-columns: 1fr 1fr; }
  .page-footer__about { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  body { font-size: 15px; }
  .wrap { padding: 0 14px; }
  .wordmark img { height: 22px; }
  .site-header__controls { gap: 6px; }
  .site-header__controls .cta-btn { min-height: 36px; padding: 0 10px; font-size: 12px; }
  .feedback__items { --c-voices-gap: 10px; grid-auto-columns: 82%; }
  .feedback-card { padding: 14px; }
  .feedback-card .feedback-card__text { font-size: 14px; }
  .partners { margin-top: 32px; padding: 24px 0 26px; }
  .partners::before,
  .partners::after { width: 40px; }
  .partners__set { gap: 30px; padding-right: 30px; }
  .vendor { width: 104px; height: 34px; }
  .page-footer__pay { gap: 14px; }
  .cashier-icons { gap: 14px 22px; }
  .cashier-icons__svg { height: 20px; }
  .content-area { padding-top: 14px; }
  .showcase,
  .showcase--banner { grid-template-columns: 1fr; gap: 8px; min-height: 0; padding: 26px 20px 0; text-align: left; }
  .showcase--banner { padding-bottom: 20px; }
  .showcase__sub { font-size: 15px; }
  .showcase__controls .cta-btn { flex: 1; }
  .showcase__art { min-height: 200px; }
  .showcase__img { max-height: 240px; }
  .showcase--banner .showcase__art { display: none; }
  .showcase__fallback { width: 200px; }
  .showcase__num { font-size: 80px; }
  .lobby__track { grid-auto-columns: 140px; gap: 10px; }
  .stats { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .counter { padding: 14px; }
  .counter__n { font-size: 22px; }
  .article-body { padding: 22px 18px; border-radius: var(--r); }
  .page-head { padding: 20px 18px; }
  .entry-content { font-size: 15.5px; }
  .entry-content h2 { font-size: 21px; margin-top: 30px; }
  .aside-panel__box { grid-template-columns: 1fr; }
  .benefits { grid-template-columns: 1fr; }
  .bonus { grid-template-columns: auto minmax(0, 1fr); padding: 18px; }
  .bonus .cta-btn { grid-column: 1 / -1; white-space: normal; text-align: center; }
  .bonus--nobadge { grid-template-columns: minmax(0, 1fr); }
  .bonus__tag { width: 68px; height: 68px; }
  .bonus__tag span { font-size: 17px; }
  .cta-panel { flex-direction: column; align-items: stretch; text-align: center; padding: 22px 18px; }
  .page-footer__items { grid-template-columns: 1fr; gap: 24px; }
  .page-footer__bar { flex-direction: column; }
}
