:root {
  --paper: #ebe6dc;
  --paper-2: #e2ddd3;
  --ink: #111111;
  --ink-soft: #3d3a36;
  --muted: #5c5852;
  --line: #111111;
  --accent: #c40c0c;
  --accent-ink: #7a0606;
  --blue-stripe: #1e3a5f;
  --font-display: "Unbounded", system-ui, sans-serif;
  --font-body: "Source Serif 4", Georgia, "Times New Roman", serif;
  --radius: 0;
  --radius-sm: 2px;
  --shadow-hard: 6px 6px 0 #111;
  --shadow-soft: 12px 12px 0 rgba(17, 17, 17, 0.12);
  --ease: cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
}

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

img {
  max-width: 100%;
  display: block;
}

/* --- Ambient: halftone + diagonals + grain --- */
.ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.ambient__halftone {
  position: absolute;
  inset: 0;
  opacity: 0.07;
  background-image: radial-gradient(var(--ink) 0.65px, transparent 0.65px);
  background-size: 7px 7px;
}

.ambient__diagonals {
  position: absolute;
  inset: -30%;
  background: repeating-linear-gradient(
    -38deg,
    transparent,
    transparent 54px,
    rgba(30, 58, 95, 0.06) 54px,
    rgba(30, 58, 95, 0.06) 56px
  );
  animation: diagDrift 22s linear infinite;
}

@keyframes diagDrift {
  to {
    transform: translate3d(-80px, 40px, 0);
  }
}

.ambient__grain {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.45'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

/* --- Digital bits (embers) --- */
.embers {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.ember {
  position: absolute;
  width: 5px;
  height: 9px;
  background: var(--accent);
  opacity: 0;
  transform: rotate(32deg);
  animation: bitFall linear infinite;
  top: -12px;
}

@keyframes bitFall {
  0% {
    transform: translate3d(0, 0, 0) rotate(32deg);
    opacity: 0;
  }
  8% {
    opacity: 0.55;
  }
  92% {
    opacity: 0.35;
  }
  100% {
    transform: translate3d(var(--dx, 0), 110vh, 0) rotate(32deg);
    opacity: 0;
  }
}

.shell {
  position: relative;
  z-index: 2;
  min-height: 100vh;
}

.wrap {
  width: min(1120px, 92vw);
  margin-inline: auto;
}

/* --- Top bar: ink strip --- */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--ink);
  color: var(--paper);
  border-bottom: 4px solid var(--accent);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand__sigil {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border: 3px solid var(--paper);
  display: grid;
  place-items: center;
  background: var(--accent);
}

.brand__sigil--mark {
  background: var(--paper);
  padding: 5px;
  border-color: var(--paper);
}

.brand__sigil-img {
  display: block;
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.brand__text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.brand__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.brand__tag {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-style: italic;
  opacity: 0.75;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav a {
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--paper);
  opacity: 0.72;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
  transition: opacity 0.2s var(--ease), border-color 0.2s;
}

.nav a:hover {
  opacity: 1;
  border-color: var(--paper);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.9rem 1.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 3px solid var(--line);
  cursor: pointer;
  transition: transform 0.15s var(--ease), box-shadow 0.15s, background 0.2s, color 0.2s;
}

.btn--wide {
  padding: 1.05rem 2.4rem;
  font-size: 0.78rem;
}

.btn--primary {
  background: var(--ink);
  color: var(--paper);
  box-shadow: var(--shadow-hard);
}

.btn--primary:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 var(--accent);
}

.btn--ghost {
  background: var(--paper);
  color: var(--ink);
}

.btn--ghost:hover {
  background: var(--paper-2);
  box-shadow: var(--shadow-hard);
}

.btn--crimson {
  background: var(--paper);
  color: var(--accent);
  border-color: var(--accent);
}

.btn--crimson:hover {
  background: var(--accent);
  color: var(--paper);
  box-shadow: var(--shadow-hard);
}

/* --- Hero --- */
.hero {
  padding: clamp(2rem, 5vw, 3.5rem) 0 clamp(2.5rem, 6vw, 4rem);
  position: relative;
  border-bottom: 3px solid var(--ink);
  background: linear-gradient(180deg, var(--paper) 0%, var(--paper-2) 100%);
}

.hero__layout {
  display: grid;
  grid-template-columns: minmax(0, 52px) minmax(0, 1fr) minmax(0, min(340px, 100%));
  gap: clamp(1.25rem, 4vw, 2.75rem);
  align-items: stretch;
}

@media (max-width: 960px) {
  .hero__layout {
    grid-template-columns: 1fr;
  }

  .hero__rail {
    display: none;
  }

  .hero__promo {
    order: -1;
  }

  .hero__main {
    order: 0;
  }

  .nav {
    display: none;
  }
}

.hero__rail {
  position: relative;
  border-right: 3px solid var(--ink);
  padding-right: 0.35rem;
}

.hero__rail-line {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  background: repeating-linear-gradient(
    180deg,
    var(--accent),
    var(--accent) 10px,
    var(--blue-stripe) 10px,
    var(--blue-stripe) 20px
  );
}

.hero__rail-text {
  margin: 0;
  padding-left: 1rem;
  font-family: var(--font-display);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  line-height: 1.4;
  color: var(--muted);
}

.hero__badge {
  display: inline-block;
  padding: 0.35rem 0.65rem;
  border: 2px solid var(--ink);
  font-family: var(--font-display);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  background: var(--paper);
  box-shadow: 4px 4px 0 var(--ink);
}

.hero__title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 0.95;
  text-transform: uppercase;
}

.hero__title-line {
  display: block;
  font-size: clamp(2.1rem, 7vw, 4.2rem);
  letter-spacing: -0.02em;
}

.hero__title-line--ru {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-thickness: 5px;
  text-underline-offset: 6px;
}

.hero__title-sub {
  display: block;
  margin-top: 0.65rem;
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1rem, 2.4vw, 1.25rem);
  text-transform: none;
  letter-spacing: 0;
  color: var(--ink-soft);
}

.hero__lead {
  max-width: 40rem;
  margin: 0 0 1.5rem;
  color: var(--ink-soft);
}

.hero__lead strong {
  color: var(--ink);
  font-weight: 600;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border: 3px solid var(--ink);
  box-shadow: var(--shadow-hard);
}

@media (max-width: 640px) {
  .hero__stats {
    grid-template-columns: 1fr;
  }
}

.stat {
  padding: 1rem 1rem 1.1rem;
  background: var(--paper);
  border-right: 3px solid var(--ink);
}

.stat:last-child {
  border-right: none;
}

@media (max-width: 640px) {
  .stat {
    border-right: none;
    border-bottom: 3px solid var(--ink);
  }

  .stat:last-child {
    border-bottom: none;
  }
}

.stat__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.5rem, 4vw, 2.1rem);
  line-height: 1;
  color: var(--accent);
}

.stat__label {
  margin-top: 0.4rem;
  font-family: var(--font-display);
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

/* --- Promo card (hero) --- */
.hero__promo {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.promo-card {
  position: relative;
  width: 100%;
  max-width: 340px;
  padding: 1.35rem 1.2rem 1.4rem;
  border: 4px solid var(--ink);
  background: linear-gradient(155deg, #fffef6 0%, #fff159 38%, #ffc400 100%);
  box-shadow:
    0 0 0 5px var(--accent),
    14px 14px 0 var(--ink);
  text-align: center;
  animation: promoGlow 2.4s ease-in-out infinite;
}

@keyframes promoGlow {
  0%,
  100% {
    box-shadow:
      0 0 0 4px var(--accent),
      14px 14px 0 var(--ink);
  }
  50% {
    box-shadow:
      0 0 0 12px rgba(196, 12, 12, 0.28),
      14px 14px 0 var(--ink);
  }
}

.promo-card__ribbon {
  position: absolute;
  top: 12px;
  right: -6px;
  padding: 0.35rem 2.25rem 0.35rem 0.9rem;
  background: var(--accent);
  color: var(--paper);
  font-family: var(--font-display);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 8% 50%);
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.2);
}

.promo-card__brand {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
}

.promo-card__amount {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.75rem, 9vw, 3.85rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--ink);
  text-shadow: 3px 3px 0 rgba(255, 255, 255, 0.65);
}

.promo-card__hook {
  margin: 0.35rem 0 0.5rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-ink);
}

.promo-card__hint {
  margin: 0 0 1rem;
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--ink-soft);
}

.btn--promo {
  width: 100%;
  padding: 1rem 1rem;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  background: var(--ink);
  color: #fff159;
  border-color: var(--ink);
  box-shadow: 5px 5px 0 var(--accent);
}

.btn--promo:hover {
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 var(--accent);
  color: #fff;
}

/* --- Slot cards (hall scroll) --- */
.hall-scroll__inner--slots {
  gap: 1.15rem;
  padding: 0.35rem max(0.75rem, env(safe-area-inset-right, 0px)) 1rem max(0px, env(safe-area-inset-left, 0px));
}

.slot-card {
  flex: 0 0 min(300px, 86vw);
  scroll-snap-align: start;
}

.slot-card__link {
  display: block;
  height: 100%;
  border: 3px solid var(--ink);
  background: var(--paper);
  box-shadow: var(--shadow-hard);
  color: inherit;
  transition: transform 0.2s var(--ease), box-shadow 0.2s;
}

.slot-card__link:hover {
  transform: translate(-4px, -4px);
  box-shadow: 10px 10px 0 var(--ink);
}

.slot-card--tilt-l .slot-card__link {
  transform: rotate(-1.5deg);
}

.slot-card--tilt-r .slot-card__link {
  transform: rotate(1.5deg);
}

.slot-card--tilt-l .slot-card__link:hover,
.slot-card--tilt-r .slot-card__link:hover {
  transform: translate(-4px, -4px) rotate(0deg);
}

.slot-card__shot {
  aspect-ratio: 1;
  overflow: hidden;
  border-bottom: 3px solid var(--ink);
  background: #0a0a0a;
}

.slot-card__shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s var(--ease);
}

.slot-card__link:hover .slot-card__shot img {
  transform: scale(1.06);
}

.slot-card__body {
  position: relative;
  padding: 1rem 1rem 1.15rem;
  text-align: left;
}

.slot-card__badge {
  position: absolute;
  top: -0.65rem;
  right: 0.65rem;
  padding: 0.2rem 0.45rem;
  border: 2px solid var(--ink);
  background: var(--accent);
  color: var(--paper);
  font-family: var(--font-display);
  font-size: 0.52rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.slot-card__body h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 800;
  text-transform: uppercase;
}

.slot-card__body p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.45;
}

/* Первая карточка — бонус +1000 ₽ */
.slot-card--bonus {
  flex: 0 0 min(300px, 86vw);
  scroll-snap-align: start;
}

.slot-card__link--bonus {
  background: linear-gradient(165deg, #fffef8 0%, #fff159 42%, #ffc400 100%);
  box-shadow:
    0 0 0 4px var(--accent),
    10px 10px 0 var(--ink);
}

.slot-card__link--bonus:hover {
  box-shadow:
    0 0 0 6px rgba(196, 12, 12, 0.45),
    10px 10px 0 var(--ink);
}

.slot-card__shot--bonus {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  min-height: 140px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.35), transparent);
}

.slot-bonus__plus {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.5rem, 10vw, 3.25rem);
  line-height: 0.85;
  color: var(--ink);
}

.slot-bonus__rub {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.65rem, 5vw, 2rem);
  letter-spacing: 0.04em;
  color: var(--accent-ink);
}

.slot-card__link--bonus .slot-card__badge {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

.slot-card__cta {
  display: block;
  margin-top: 0.65rem;
  font-family: var(--font-display);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-ink);
}

/* Рулетка: слева бонус, справа текст (без картинки) */
.roulette-layout {
  display: grid;
  grid-template-columns: minmax(130px, 220px) minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
}

.cluster-promo {
  grid-column: 1;
  grid-row: 1;
  margin: 0;
  padding: 0.85rem 0.65rem;
  border: 3px solid var(--ink);
  background: linear-gradient(165deg, #fffef8 0%, #fff159 42%, #ffc400 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 0.4rem;
  text-align: center;
  box-shadow: 4px 4px 0 rgba(17, 17, 17, 0.12);
}

.cluster-promo__k {
  margin: 0;
  font-family: var(--font-display);
  font-size: 0.5rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

.cluster-promo__sum {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.35rem, 4.5vw, 1.75rem);
  line-height: 1;
  color: var(--accent);
}

.cluster-promo__sub {
  margin: 0;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--ink-soft);
}

.btn--cluster-promo {
  margin-top: 0.25rem;
  width: 100%;
  max-width: 100%;
  padding: 0.5rem 0.35rem;
  font-size: 0.52rem;
  letter-spacing: 0.1em;
  border: 2px solid #fff159;
  background: #fff159;
  color: var(--ink);
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.35);
}

.btn--cluster-promo:hover {
  filter: brightness(1.05);
  transform: translate(-1px, -1px);
}

.roulette-layout__main {
  grid-column: 2;
  grid-row: 1;
  min-width: 0;
}

.roulette-layout__main h3 {
  margin: 0 0 0.45rem;
}

.roulette-layout__main > p:not(.tile__action) {
  margin: 0;
}

@media (max-width: 520px) {
  .roulette-layout {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .cluster-promo {
    grid-column: 1;
    grid-row: 1;
    max-width: none;
    padding: 0.75rem 1rem;
  }

  .btn--cluster-promo {
    width: 100%;
    max-width: 16rem;
  }

  .roulette-layout__main {
    grid-column: 1;
    grid-row: 2;
  }

  .cluster-promo__sum {
    font-size: 1.35rem;
  }
}

/* --- Marquee --- */
.marquee {
  background: var(--ink);
  color: var(--paper);
  border-bottom: 3px solid var(--ink);
  overflow: hidden;
}

.marquee__track {
  display: flex;
  gap: 2.5rem;
  padding: 0.55rem 0;
  white-space: nowrap;
  animation: marquee 26s linear infinite;
}

.marquee--ink .marquee__track {
  font-family: var(--font-display);
  font-weight: 600;
}

.marquee span {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.85;
}

.marquee strong {
  font-weight: 700;
  color: var(--paper);
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* --- Sections --- */
section {
  padding: clamp(2.5rem, 6vw, 4.25rem) 0;
}

#hall {
  background: var(--paper);
}

#games {
  background: var(--paper);
  border-block: none;
}

#bonus {
  background: var(--paper);
}

#faq {
  background: var(--paper-2);
}

#guide {
  background: var(--paper);
  border-top: 3px solid var(--ink);
}

.section-head {
  max-width: 44rem;
  margin-bottom: 2rem;
}

.section-head--center {
  text-align: center;
  margin-inline: auto;
}

.section-kicker {
  font-family: var(--font-display);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 0.4rem;
}

.section-title {
  margin: 0 0 0.6rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.55rem, 3.8vw, 2.35rem);
  line-height: 1.1;
  text-transform: uppercase;
}

.section-title span {
  box-decoration-break: clone;
  background: var(--ink);
  color: var(--paper);
  padding: 0 0.35em;
}

.section-desc {
  margin: 0;
  color: var(--ink-soft);
}

/* --- Hall horizontal scroll --- */
.hall-scroll {
  margin: 0 calc(50% - 50vw);
  padding: 0 calc(50vw - 50%);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--ink) var(--paper-2);
  -webkit-overflow-scrolling: touch;
}

/* Карточки слотов — от левого края экрана (без отступа как у текста в .wrap) */
.hall-scroll.hall-scroll--align-wrap {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: 0;
  padding-right: 0;
  scroll-padding-left: 0;
  scroll-padding-right: max(0.75rem, env(safe-area-inset-right, 0px));
  scrollbar-color: rgba(17, 17, 17, 0.35) var(--paper);
}

.hall-scroll__inner {
  display: flex;
  gap: 1rem;
  padding-bottom: 0.5rem;
}

.hall-card {
  flex: 0 0 min(340px, 82vw);
  scroll-snap-align: start;
  border: 3px solid var(--ink);
  padding: 1.35rem 1.25rem 1.5rem;
  background: var(--paper);
  box-shadow: var(--shadow-hard);
  position: relative;
}

.hall-card__idx {
  position: absolute;
  top: 0.65rem;
  right: 0.75rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  line-height: 1;
  color: var(--paper);
  -webkit-text-stroke: 2px var(--ink);
}

.hall-card h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  text-transform: uppercase;
  max-width: 12rem;
}

.hall-card .counter {
  margin-top: 1rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.75rem;
  color: var(--accent);
}

/* --- Game deck --- */
.game-deck {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.game-deck__cluster {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: stretch;
}

/* Левая колонка на всю высоту правой: без пустого угла снизу */
.game-deck__cluster > .tile--roulette {
  grid-row: 1 / -1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

@media (max-width: 860px) {
  .game-deck__cluster {
    grid-template-columns: 1fr;
  }

  .game-deck__cluster > .tile--roulette {
    grid-row: auto;
  }

  .roulette-tile__stretch {
    margin-top: 0.85rem;
    padding-top: 0.85rem;
  }
}

.game-deck__pair {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.tile {
  position: relative;
  border: 3px solid var(--ink);
  padding: 1.35rem 1.25rem 1.5rem;
  background: var(--paper);
  overflow: hidden;
  transition: transform 0.2s var(--ease), box-shadow 0.2s;
}

.tile:hover {
  transform: translate(-3px, -3px);
  box-shadow: var(--shadow-hard);
}

.tile__shine {
  position: absolute;
  inset: 0;
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 50%), rgba(196, 12, 12, 0.08), transparent 42%);
  opacity: 0;
  transition: opacity 0.25s;
  pointer-events: none;
}

.tile:hover .tile__shine {
  opacity: 1;
}

.tile--lead {
  background: repeating-linear-gradient(
      -45deg,
      var(--paper),
      var(--paper) 12px,
      rgba(30, 58, 95, 0.06) 12px,
      rgba(30, 58, 95, 0.06) 24px
    ),
    var(--paper);
}

.tile--lead.tile--lead-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 1.25rem;
  align-items: center;
  background: var(--paper);
}

@media (max-width: 768px) {
  .tile--lead.tile--lead-split {
    grid-template-columns: 1fr;
  }
}

.tile--lead-split__visual {
  position: relative;
}

.tile--lead-split__film {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 10px;
  z-index: 1;
  background: repeating-linear-gradient(
    90deg,
    var(--paper),
    var(--paper) 5px,
    var(--ink) 5px,
    var(--ink) 9px
  );
  border-bottom: 2px solid var(--ink);
}

.tile--lead-split__img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
  border: 3px solid var(--ink);
  box-shadow: 6px 6px 0 rgba(196, 12, 12, 0.35);
}

.tile--lead-split__content {
  min-width: 0;
}

.tile--roulette-visual {
  position: relative;
  overflow: hidden;
}

.tile__thumb-row {
  display: flex;
  gap: 0.45rem;
  margin-bottom: 0.75rem;
}

.tile__thumb-row img {
  width: calc(50% - 0.225rem);
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  border: 3px solid var(--ink);
}

.tile__thumb-row--fan img:first-child {
  transform: rotate(-4deg);
}

.tile__thumb-row--fan img:last-child {
  transform: rotate(5deg) translateX(-6px);
}

.tile__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.tile__tag {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  border: 2px solid var(--ink);
  padding: 0.2rem 0.45rem;
}

.tile__emoji {
  font-size: 1.5rem;
  line-height: 1;
}

.tile h3 {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  text-transform: uppercase;
}

.tile p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
}

.tile__action {
  margin-top: 1rem;
}

/* Как у остальных плиток: без чёрного фона и без растягивания «пятна» на высоту соседа */
.tile--roulette {
  background: var(--paper);
  color: var(--ink);
}

.tile--roulette .roulette-layout__main h3 {
  color: var(--ink);
}

.tile--roulette .roulette-layout__main > p:not(.tile__action) {
  color: var(--ink-soft);
}

.tile--roulette .roulette-layout {
  flex: 0 0 auto;
}

.roulette-tile__stretch {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 0;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 2px dashed rgba(17, 17, 17, 0.2);
}

.roulette-tile__panel {
  padding: 0.85rem 0.75rem;
  border: 2px solid rgba(17, 17, 17, 0.12);
  background: var(--paper-2);
}

.roulette-tile__panel-title {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
}

.roulette-tile__panel-text {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--ink-soft);
}

.btn--roulette-extra {
  width: 100%;
  margin-top: 0.85rem;
  padding: 0.65rem 0.75rem;
  font-size: 0.62rem;
}

.tile--compact {
  min-height: 0;
  flex: 1;
}

/* --- Bonus --- */
.bonus__cta {
  display: flex;
  justify-content: center;
}

/* --- FAQ --- */
.faq {
  max-width: 720px;
  margin-inline: auto;
  border: 3px solid var(--ink);
  background: var(--paper);
  box-shadow: var(--shadow-hard);
}

.faq-item + .faq-item {
  border-top: 3px solid var(--ink);
}

.faq-item button {
  width: 100%;
  text-align: left;
  padding: 1rem 1.1rem;
  background: var(--paper);
  border: none;
  cursor: pointer;
  font: inherit;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: background 0.2s;
}

.faq-item button:hover {
  background: var(--paper-2);
}

.faq-item button span:last-child {
  font-size: 1.35rem;
  line-height: 1;
  transition: transform 0.25s var(--ease);
}

.faq-item.is-open button span:last-child {
  transform: rotate(45deg);
}

.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease);
}

.faq-panel p {
  margin: 0 1.1rem 1rem;
  color: var(--ink-soft);
  font-size: 0.98rem;
}

/* --- Article --- */
.article {
  border: 3px solid var(--ink);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  background: var(--paper);
  box-shadow: var(--shadow-soft);
}

@media (min-width: 900px) {
  .article {
    columns: 2;
    column-gap: 2.25rem;
    column-rule: 2px solid rgba(17, 17, 17, 0.15);
  }

  .article h2,
  .article h3 {
    break-after: avoid;
  }

  .article p,
  .article ul {
    break-inside: avoid;
  }
}

.article h2 {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.2vw, 1.35rem);
  font-weight: 800;
  text-transform: uppercase;
  margin: 2rem 0 0.75rem;
  color: var(--ink);
}

.article h2:first-child {
  margin-top: 0;
}

.article h3 {
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 1.35rem 0 0.45rem;
  color: var(--accent);
}

.article p {
  margin: 0 0 0.85rem;
  color: var(--ink-soft);
}

.article ul {
  margin: 0 0 0.85rem 1.1rem;
  color: var(--ink-soft);
}

.article li {
  margin-bottom: 0.35rem;
}

.guide-cta {
  text-align: center;
  margin-top: 2rem;
}

/* --- Footer --- */
.footer {
  padding: 2rem 0 2.5rem;
  background: var(--ink);
  color: var(--paper);
  border-top: 4px solid var(--accent);
}

.footer .brand__sigil {
  border-color: var(--paper);
}

.footer .brand__sigil--mark {
  background: var(--paper);
  border-color: var(--paper);
}

.footer .brand__name {
  color: var(--paper);
}

.footer .brand__tag {
  color: rgba(235, 230, 220, 0.75);
}

.footer__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.75rem;
  align-items: flex-start;
}

.footer small {
  display: block;
  max-width: 38rem;
  font-size: 0.82rem;
  line-height: 1.55;
  color: rgba(235, 230, 220, 0.78);
}

/* --- Reveal --- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .marquee__track {
    animation: none;
  }

  .promo-card {
    animation: none;
    box-shadow:
      0 0 0 4px var(--accent),
      14px 14px 0 var(--ink);
  }
}
