:root {
  --bg: #07040d;
  --bg-deep: #120614;
  --surface: rgba(255, 255, 255, 0.06);
  --surface-strong: rgba(255, 255, 255, 0.09);
  --surface-light: rgba(255, 245, 250, 0.88);
  --border: rgba(255, 255, 255, 0.14);
  --text: #fff6fc;
  --muted: #d9bfd1;
  --muted-dark: #5e4358;
  --pink: #ff49b3;
  --pink-soft: #ff84db;
  --rose: #ff6a86;
  --gold: #ffd867;
  --gold-deep: #ffbe3b;
  --shadow: 0 35px 80px rgba(0, 0, 0, 0.4);
  --radius-xl: 32px;
  --radius-lg: 26px;
  --radius-md: 20px;
  --radius-sm: 14px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Trebuchet MS", "Avenir Next", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(
      circle at 10% 15%,
      rgba(255, 73, 179, 0.2),
      transparent 24rem
    ),
    radial-gradient(
      circle at 90% 20%,
      rgba(255, 216, 103, 0.12),
      transparent 22rem
    ),
    radial-gradient(
      circle at 70% 65%,
      rgba(255, 132, 219, 0.18),
      transparent 22rem
    ),
    linear-gradient(180deg, #120614 0%, #09050f 34%, #05030a 100%);
  position: relative;
  overflow-x: clip;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.015) 25%, transparent 25%) 0
      0 / 42px 42px,
    linear-gradient(225deg, rgba(255, 255, 255, 0.015) 25%, transparent 25%) 0
      0 / 42px 42px;
  mask: radial-gradient(circle at center, black 55%, transparent 100%);
  pointer-events: none;
  z-index: -2;
}

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

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

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: #fff;
  color: #140814;
  transform: translateY(-140%);
  transition: transform 0.2s ease;
  z-index: 200;
}

.skip-link:focus {
  transform: translateY(0);
}

.page-glow {
  position: fixed;
  width: 26rem;
  height: 26rem;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  pointer-events: none;
  z-index: -1;
}

.page-glow-left {
  left: -10rem;
  top: 10rem;
  background: rgba(255, 73, 179, 0.18);
}

.page-glow-right {
  right: -8rem;
  top: 20rem;
  background: rgba(255, 216, 103, 0.12);
}

.container {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.section {
  padding: 2.2rem 0 4.8rem;
  position: relative;
}

.section[id] {
  scroll-margin-top: 7.5rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 1rem 0 0;
}

.header-shell {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 0.65rem 0.95rem 0.65rem 1.2rem;
  border: 1px solid rgba(255, 216, 103, 0.14);
  border-radius: 999px;
  background: rgba(9, 6, 15, 0.84);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(18px);
}

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

.brand img {
  width: auto;
  height: 64px;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.site-nav a {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  transition:
    color 0.25s ease,
    background-color 0.25s ease,
    transform 0.25s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.article-nav a:hover,
.article-nav a:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.header-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.75rem;
  min-width: 0;
}

.header-tools {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
  min-width: 0;
}

.language-switcher {
  position: relative;
}

.language-switcher__toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  min-height: 3.2rem;
  padding: 0.75rem 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  cursor: pointer;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    background-color 0.25s ease;
}

.language-switcher__toggle:hover,
.language-switcher__toggle:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 132, 219, 0.42);
  background: rgba(255, 255, 255, 0.08);
}

.language-switcher__flag {
  width: 22px;
  height: 16px;
  border-radius: 4px;
  object-fit: cover;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.16);
}

.language-switcher__code {
  white-space: nowrap;
}

.language-switcher__caret {
  font-size: 0.75rem;
  color: var(--muted);
}

.language-switcher__menu {
  position: absolute;
  top: calc(100% + 0.7rem);
  right: 0;
  z-index: 140;
  display: none;
  width: min(19rem, calc(100vw - 2rem));
  max-height: min(26rem, 70vh);
  overflow-y: auto;
  padding: 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  background: rgba(10, 6, 14, 0.98);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(18px);
}

.language-switcher.is-open .language-switcher__menu {
  display: grid;
}

.language-switcher__item {
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  gap: 0.7rem;
  width: 100%;
  padding: 0.72rem 0.8rem;
  border-radius: 16px;
  color: var(--text);
  transition:
    background-color 0.2s ease,
    transform 0.2s ease;
}

.language-switcher__item:hover,
.language-switcher__item:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.language-switcher__item.is-current {
  background: rgba(255, 132, 219, 0.12);
}

.language-switcher__item-name {
  min-width: 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.2;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3.2rem;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease,
    background-color 0.25s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  color: #1e0816;
  background: linear-gradient(
    135deg,
    var(--pink) 0%,
    #ff79c7 55%,
    #ffd9f5 100%
  );
  box-shadow: 0 18px 36px rgba(255, 73, 179, 0.26);
}

.btn-soft {
  color: var(--text);
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.05);
}

.btn-full {
  width: 100%;
}

.menu-toggle {
  display: none;
  place-items: center;
  gap: 0.24rem;
  width: 3rem;
  height: 3rem;
  padding: 0.7rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  cursor: pointer;
}

.menu-toggle span {
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  padding-top: 2rem;
}

.hero.section {
  padding-bottom: 1rem;
}

.hero + .section {
  padding-top: 0;
}

.hero-grid,
.section-grid,
.dual-panel,
.split-grid,
.gameplay-grid,
.feature-grid,
.footer-grid,
.pros-cons,
.review-shell {
  display: grid;
  gap: 1.3rem;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  align-items: center;
}

.hero-copy h1,
.section-heading h2,
.intro-card h2,
.facts-card h2,
.panel h2,
.verdict-card h2,
.page-hero h1,
.not-found-card h1 {
  font-family: "Arial Rounded MT Bold", "Trebuchet MS", sans-serif;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.hero-copy h1 {
  margin: 0.6rem 0 1rem;
  font-size: clamp(3rem, 7vw, 5.7rem);
  line-height: 0.92;
  max-width: 11ch;
}

.lede,
.intro-card p,
.content-card p,
.panel p,
.feature-card p,
.wide-panel p,
.facts-card p,
.footer-brand p,
.footer-cta p,
.article-card p,
.article-card li,
.not-found-card p {
  color: var(--muted);
}

.lede {
  max-width: 58ch;
  font-size: 1.08rem;
  line-height: 1.7;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0;
  color: #ffdce9;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold) 20%, var(--pink) 65%);
  box-shadow: 0 0 16px rgba(255, 73, 179, 0.65);
}

.eyebrow-dark {
  color: #6b3357;
}

.eyebrow-dark::before {
  box-shadow: none;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 1.8rem 0 2rem;
}

.stat-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.stat-rail li,
.track-card,
.article-nav,
.intro-card,
.facts-card,
.feature-card,
.content-card,
.panel,
.wide-panel,
.verdict-card,
.article-card,
.not-found-card {
  border: 1px solid var(--border);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.07),
    rgba(255, 255, 255, 0.03)
  );
  box-shadow: var(--shadow);
}

.stat-rail li {
  padding: 1rem 1.05rem;
  border-radius: 22px;
}

.stat-label,
.track-card-label {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.stat-rail strong,
.track-card strong,
.feature-card h3,
.content-card h3,
.pros-cons h3,
.article-card h2,
.page-meta span,
.facts-list dd,
.footer-links h2,
.footer-cta h2 {
  font-weight: 800;
}

.hero-visual {
  position: relative;
}

.hero-card {
  position: relative;
  overflow: hidden;
  padding: 1rem;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(
      circle at top right,
      rgba(255, 73, 179, 0.22),
      transparent 13rem
    ),
    linear-gradient(180deg, rgba(30, 16, 34, 0.95), rgba(10, 6, 14, 0.98));
  box-shadow: 0 36px 80px rgba(0, 0, 0, 0.42);
}

.facts-table {
  width: 100%;
  margin-top: 1rem;
  border-collapse: collapse;
  color: var(--text);
  font-size: 0.95rem;
}

.facts-table th,
.facts-table td {
  padding: 0.75rem 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: left;
  vertical-align: top;
}

.facts-table th {
  color: var(--muted);
  font-weight: 700;
}

.offer-showcase {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.35rem;
}

.offer-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 27rem;
  padding: 1.5rem 1.35rem 1.25rem;
  border-radius: 22px;
  border: 1px solid rgba(190, 96, 255, 0.28);
  border-top: 6px solid #a85eff;
  background:
    radial-gradient(
      circle at 82% 14%,
      rgba(255, 73, 179, 0.12),
      transparent 13rem
    ),
    radial-gradient(
      circle at 16% 54%,
      rgba(196, 124, 255, 0.08),
      transparent 11rem
    ),
    linear-gradient(180deg, rgba(21, 13, 28, 0.96), rgba(10, 6, 16, 0.98));
  box-shadow:
    inset 0 0 30px rgba(0, 0, 0, 0.22),
    0 22px 42px rgba(0, 0, 0, 0.24);
  text-align: center;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.offer-card::before {
  content: "";
  position: absolute;
  inset: auto -8% -3.5rem -8%;
  height: 7.5rem;
  background: radial-gradient(
    circle at center,
    rgba(255, 73, 179, 0.18),
    transparent 68%
  );
  filter: blur(26px);
  pointer-events: none;
}

.offer-card:hover,
.offer-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(255, 118, 202, 0.34);
  box-shadow:
    inset 0 0 30px rgba(0, 0, 0, 0.2),
    0 28px 48px rgba(0, 0, 0, 0.28);
}

.offer-card-hot {
  border-top-color: #ff4ca6;
}

.offer-ribbon {
  position: absolute;
  top: 1rem;
  left: -3rem;
  width: 9rem;
  padding: 0.7rem 0;
  background: linear-gradient(135deg, #ff4ca6 0%, #a85eff 100%);
  color: #fff7fd;
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-align: center;
  transform: rotate(-36deg);
  box-shadow: 0 12px 24px rgba(255, 73, 179, 0.24);
}

.offer-brand {
  margin-top: 0.4rem;
  margin-bottom: 2.1rem;
  min-height: 4.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff8fd;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  text-shadow: 0 10px 22px rgba(255, 73, 179, 0.12);
}

.offer-brand-lura {
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transform: skewX(-8deg);
}

.offer-brand-trivela {
  font-style: italic;
}

.offer-brand-bombastic {
  color: #ffd867;
  font-style: italic;
}

.offer-brand-golden {
  font-size: 1.75rem;
  font-weight: 700;
  color: #ffeec2;
}

.offer-value {
  margin: 0;
  color: #c47cff;
  font-size: 1.08rem;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.offer-extra {
  margin: 0.55rem 0 1.45rem;
  color: rgba(255, 246, 252, 0.78);
  font-size: 0.95rem;
  font-weight: 700;
}

.offer-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 4rem;
  margin-top: auto;
  border: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, #a85eff 0%, #ff479f 100%);
  color: #fffafc;
  cursor: pointer;
  font-size: 0.98rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-decoration: none;
  box-shadow: 0 12px 22px rgba(255, 73, 179, 0.2);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.offer-button:hover,
.offer-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(255, 73, 179, 0.28);
}

.offer-button-red {
  background: linear-gradient(135deg, #ff4ca6 0%, #ff7a45 100%);
}

.offer-note {
  margin: 1rem 0 0;
  color: rgba(255, 246, 252, 0.52);
  font-size: 0.82rem;
  font-weight: 700;
}

.casino-rankings {
  display: grid;
  gap: 0.7rem;
  margin: 1rem 0 0.8rem;
}

.casino-row {
  position: relative;
  display: grid;
  grid-template-columns: 48px 98px minmax(0, 1.25fr) minmax(168px, 0.76fr) 142px;
  align-items: center;
  gap: 0.7rem;
  padding: 0.85rem 0.85rem 0.85rem 0.8rem;
  border-radius: 20px;
  border: 1px solid rgba(190, 96, 255, 0.28);
  background:
    radial-gradient(
      circle at 85% 15%,
      rgba(255, 73, 179, 0.1),
      transparent 16rem
    ),
    radial-gradient(
      circle at 15% 50%,
      rgba(196, 124, 255, 0.07),
      transparent 12rem
    ),
    linear-gradient(180deg, rgba(21, 13, 28, 0.96), rgba(10, 6, 16, 0.98));
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.22);
}

.casino-row__badge {
  position: absolute;
  top: 0.7rem;
  right: 0.75rem;
  padding: 0.42rem 0.68rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #a85eff 0%, #ff4ca6 100%);
  color: #fff7fd;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 8px 18px rgba(255, 73, 179, 0.18);
  z-index: 2;
  max-width: calc(100% - 1.5rem);
  text-align: center;
}

.casino-row__badge--secondary {
  background: linear-gradient(135deg, #b56cff 0%, #d84db9 100%);
}

.casino-row__rank {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(190, 96, 255, 0.34);
  background: rgba(255, 255, 255, 0.04);
  color: #be7dff;
  font-size: 1.05rem;
  font-weight: 900;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.casino-row__logo {
  display: grid;
  place-items: center;
  min-height: 74px;
  padding: 0.6rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.casino-row__logo img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 46px;
  object-fit: contain;
}

.casino-row__meta {
  min-width: 0;
}

.casino-row__title {
  margin: 0;
  color: #fff8fd;
  font-size: clamp(1.14rem, 1.7vw, 1.42rem);
  font-weight: 900;
  line-height: 1;
}

.casino-row__rating {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.32rem;
}

.casino-row__stars {
  color: var(--gold);
  font-size: 0.86rem;
  letter-spacing: 0.12em;
}

.casino-row__score {
  color: rgba(255, 246, 252, 0.75);
  font-size: 0.84rem;
  font-weight: 700;
}

.casino-row__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.55rem;
}

.casino-row__tags span {
  padding: 0.34rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 246, 252, 0.74);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.15;
}

.casino-row__offer {
  text-align: right;
  align-self: center;
}

.casino-row__amount,
.casino-row__spins {
  margin: 0;
}

.casino-row__amount {
  color: #c47cff;
  font-size: clamp(1.28rem, 2.25vw, 1.82rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.casino-row__spins {
  margin-top: 0.2rem;
  color: rgba(255, 246, 252, 0.66);
  font-size: 0.78rem;
  font-weight: 700;
}

.casino-row__action {
  display: flex;
  justify-content: flex-end;
}

.casino-row__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 132px);
  min-height: 3rem;
  padding: 0.68rem 0.82rem;
  border: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, #a85eff 0%, #ff479f 100%);
  color: #fffafc;
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  box-shadow: 0 12px 22px rgba(255, 73, 179, 0.2);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.casino-row__button:hover,
.casino-row__button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(255, 73, 179, 0.28);
}

.casino-rankings__note {
  margin: 0 0 0.25rem;
  color: rgba(255, 246, 252, 0.58);
  font-size: 0.76rem;
  font-weight: 700;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: auto 1rem 1rem 1rem;
  height: 6rem;
  border-radius: 999px;
  background: radial-gradient(
    circle at center,
    rgba(255, 73, 179, 0.16),
    transparent 68%
  );
  filter: blur(28px);
  pointer-events: none;
}

.hero-card-top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.25rem 0.35rem 1rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.hero-image-wrap {
  position: relative;
}

.hero-image {
  width: 100%;
  height: auto;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(
    135deg,
    rgba(255, 73, 179, 0.15),
    rgba(255, 216, 103, 0.08)
  );
}

.chip-stack {
  position: absolute;
  right: 1rem;
  top: 1rem;
  display: grid;
  gap: 0.65rem;
  width: min(10rem, 36%);
}

.info-chip {
  padding: 0.75rem 0.85rem;
  border-radius: 18px;
  color: #170813;
  background: rgba(255, 248, 251, 0.94);
  box-shadow: 0 16px 34px rgba(16, 8, 20, 0.2);
}

.info-chip span {
  display: block;
  margin-bottom: 0.2rem;
  color: #7b4a63;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.track-map {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1rem;
}

.track-card {
  border-radius: 22px;
  padding: 1rem;
  background: linear-gradient(
    135deg,
    rgba(255, 73, 179, 0.13),
    rgba(255, 216, 103, 0.07)
  );
}

.hero-note,
.wide-panel,
.wide-panel-accent {
  border-radius: 24px;
  padding: 1.25rem 1.35rem;
}

.hero-note {
  position: relative;
  margin-top: 1rem;
  color: #ffe8f5;
  background: linear-gradient(
    135deg,
    rgba(255, 73, 179, 0.16),
    rgba(255, 255, 255, 0.05)
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.article-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 2.4rem;
  padding: 1rem;
  border-radius: 28px;
}

.article-nav a {
  padding: 0.8rem 1rem;
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
  font-weight: 700;
}

.review-shell {
  grid-template-columns: 1fr;
  align-items: start;
}

.toc-card {
  position: static;
  padding: 1rem 1.1rem;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.03)
  );
  box-shadow: var(--shadow);
}

.toc-nav {
  overflow-x: auto;
  scrollbar-width: thin;
}

.toc-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.toc-list a {
  display: inline-flex;
  align-items: center;
  min-height: 2.9rem;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  color: var(--muted);
  line-height: 1.25;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  white-space: nowrap;
}

.review-article {
  display: grid;
  gap: 1rem;
}

.section-grid {
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
}

.section-heading {
  max-width: 47rem;
  margin-bottom: 1.4rem;
}

.section-heading h2,
.intro-card h2,
.facts-card h2,
.panel h2,
.verdict-card h2,
.page-hero h1 {
  margin: 0.4rem 0 1rem;
  line-height: 0.98;
}

.section-heading h2 {
  font-size: clamp(2.1rem, 5vw, 3.8rem);
}

.intro-card,
.facts-card,
.feature-card,
.content-card,
.panel,
.wide-panel,
.verdict-card,
.article-card,
.not-found-card {
  padding: 1.6rem;
  border-radius: var(--radius-lg);
}

.intro-card p,
.content-card p,
.panel p,
.feature-card p,
.wide-panel p,
.verdict-card p,
.article-card p,
.article-card li {
  line-height: 1.7;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.4rem;
}

.pill-list span,
.page-meta span {
  padding: 0.7rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text);
}

.facts-list {
  display: grid;
  gap: 0.1rem;
  margin: 1.1rem 0 0.9rem;
}

.facts-list div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.facts-list dt {
  color: var(--muted);
}

.facts-list dd {
  margin: 0;
  text-align: right;
}

.fine-print {
  margin-bottom: 0;
  font-size: 0.92rem;
}

.section-contrast::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 73, 179, 0.05),
    rgba(255, 255, 255, 0)
  );
  z-index: -1;
}

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

.feature-card,
.content-card {
  position: relative;
}

.card-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 18px;
  margin-bottom: 1rem;
  background: linear-gradient(
    135deg,
    rgba(255, 73, 179, 0.22),
    rgba(255, 216, 103, 0.2)
  );
  color: #ffeaf6;
  font-weight: 900;
}

.feature-card.highlight {
  background: linear-gradient(
    180deg,
    rgba(255, 73, 179, 0.18),
    rgba(255, 255, 255, 0.05)
  );
}

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

.wide-panel {
  margin-top: 1.2rem;
}

.wide-panel-accent {
  margin-top: 1.2rem;
  background: linear-gradient(
    135deg,
    rgba(255, 216, 103, 0.14),
    rgba(255, 73, 179, 0.1)
  );
}

.dual-panel {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.panel.light {
  color: #2a1425;
  background: linear-gradient(
    180deg,
    rgba(255, 247, 251, 0.98),
    rgba(255, 228, 241, 0.9)
  );
}

.panel.light p,
.panel.light li {
  color: var(--muted-dark);
}

.panel.dark {
  background: linear-gradient(
    180deg,
    rgba(34, 16, 35, 0.96),
    rgba(19, 10, 25, 0.98)
  );
}

.check-list {
  display: grid;
  gap: 0.75rem;
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.45rem;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--pink) 100%);
}

.split-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.verdict-card {
  background: linear-gradient(
    180deg,
    rgba(255, 216, 103, 0.13),
    rgba(255, 73, 179, 0.1)
  );
}

.pros-cons {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 1.35rem;
}

.pros-cons > div {
  padding: 1.25rem;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.16);
}

.pros-cons ul {
  margin: 0.8rem 0 0;
  padding-left: 1.2rem;
  color: var(--muted);
  line-height: 1.7;
}

.faq-list {
  display: grid;
  gap: 0.85rem;
}

.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 1.2rem 1.3rem;
  border: 0;
  background: transparent;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  font-weight: 800;
  cursor: pointer;
}

.faq-question::after {
  content: "+";
  flex: 0 0 auto;
  font-size: 1.6rem;
  line-height: 1;
  transition: transform 0.25s ease;
}

.faq-item.is-open .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.3rem;
  transition: max-height 0.28s ease;
}

.faq-answer p {
  margin: 0;
  padding-bottom: 1.3rem;
  color: var(--muted);
  line-height: 1.7;
}

.site-footer {
  padding: 1.2rem 0 2.8rem;
}

.footer-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 216, 103, 0.14);
  border-radius: 34px;
  background:
    radial-gradient(
      circle at 12% 18%,
      rgba(255, 216, 103, 0.12),
      transparent 18rem
    ),
    radial-gradient(
      circle at 88% 12%,
      rgba(255, 73, 179, 0.1),
      transparent 18rem
    ),
    linear-gradient(180deg, rgba(5, 4, 9, 0.98), rgba(1, 1, 3, 0.96));
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.42);
}

.footer-columns {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(220px, 0.72fr) minmax(
      280px,
      1fr
    );
  gap: clamp(1.5rem, 3vw, 3.8rem);
  padding: clamp(1.6rem, 3vw, 2.5rem);
}

.footer-about,
.footer-nav,
.footer-payments {
  position: relative;
  z-index: 1;
}

.footer-about img {
  width: auto;
  height: 96px;
  margin-bottom: 1.35rem;
}

.footer-about p,
.footer-note,
.footer-disclaimer {
  margin: 0;
  color: rgba(255, 246, 252, 0.76);
  line-height: 1.75;
}

.footer-about p {
  max-width: 34ch;
}

.footer-copyright {
  margin-top: 1.85rem;
  color: rgba(255, 246, 252, 0.64);
  font-size: 0.98rem;
}

.footer-title {
  position: relative;
  display: inline-block;
  margin: 0 0 1.45rem;
  padding-bottom: 0.8rem;
  color: var(--gold);
  font-size: clamp(1.12rem, 2vw, 1.45rem);
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 4.3rem;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold-deep), #ff9d47);
}

.footer-nav-list {
  display: grid;
  gap: 0.95rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-nav-list a {
  color: rgba(255, 246, 252, 0.88);
  font-size: 1.03rem;
  transition:
    color 0.24s ease,
    transform 0.24s ease;
}

.footer-nav-list a:hover,
.footer-nav-list a:focus-visible {
  color: var(--gold);
  transform: translateX(4px);
}

.footer-nav-list a[aria-current="page"] {
  color: var(--gold);
}

.payment-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.payment-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 4rem;
  padding: 0.95rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.035);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.payment-badge img {
  width: auto;
  height: 24px;
  object-fit: contain;
}

.footer-note {
  max-width: 30ch;
  margin-top: 1.05rem;
  color: rgba(255, 246, 252, 0.64);
  font-size: 0.96rem;
}

.footer-disclaimer {
  padding: 1.2rem clamp(1.6rem, 3vw, 2.5rem) 1.45rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  font-size: 0.96rem;
}

.back-to-top {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  display: grid;
  place-items: center;
  width: 3.2rem;
  height: 3.2rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  background: rgba(13, 8, 18, 0.9);
  color: var(--text);
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.28);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.page-shell {
  padding: 2rem 0 4rem;
}

.page-hero--placeholder {
  min-height: 16rem;
}

.page-hero--placeholder h1 {
  max-width: none;
}

.page-hero {
  padding: 2rem;
  margin-bottom: 1.3rem;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(
    180deg,
    rgba(255, 73, 179, 0.12),
    rgba(255, 255, 255, 0.03)
  );
  box-shadow: var(--shadow);
}

.page-hero h1 {
  margin: 0.55rem 0 0.9rem;
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  line-height: 0.95;
  max-width: 12ch;
}

.page-hero p {
  max-width: 58ch;
  color: var(--muted);
  line-height: 1.7;
}

.page-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.3rem;
}

.article-layout {
  display: grid;
  gap: 1rem;
}

.article-card h2 {
  margin-top: 0;
}

.article-card h3 {
  margin: 1.45rem 0 0.65rem;
  font-size: 1.18rem;
  font-weight: 800;
}

.article-media {
  display: grid;
  justify-items: center;
  margin: 1.35rem 0 1.65rem;
}

.article-media img {
  width: min(100%, 960px);
  height: auto;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.28);
}

.article-media--phone img {
  width: min(100%, 540px);
}

.article-card ul {
  margin: 0.65rem 0 0;
  padding-left: 1.2rem;
  color: var(--muted);
  line-height: 1.7;
}

.article-card ul {
  padding-left: 1.2rem;
}

.article-card li + li {
  margin-top: 0.4rem;
}

.article-card a,
.page-hero a {
  color: var(--gold);
  text-decoration: underline;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.16em;
}

.article-card a:hover,
.article-card a:focus-visible,
.page-hero a:hover,
.page-hero a:focus-visible {
  color: #fff1c8;
}

.demo-stage {
  margin: 1.4rem 0 1.65rem;
}

.demo-stage__shell {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(
      circle at 18% 18%,
      rgba(255, 73, 179, 0.2),
      transparent 18rem
    ),
    radial-gradient(
      circle at 82% 22%,
      rgba(255, 216, 103, 0.16),
      transparent 16rem
    ),
    linear-gradient(180deg, rgba(16, 9, 21, 0.98), rgba(5, 3, 10, 1));
  box-shadow: 0 32px 72px rgba(0, 0, 0, 0.4);
}

.demo-stage__shell::after {
  content: "";
  position: absolute;
  inset: 1rem;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.demo-stage__frame {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  background: #020104;
}

.demo-stage__cover {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: clamp(1.25rem, 3vw, 2.2rem);
  text-align: center;
  transition:
    opacity 0.35s ease,
    visibility 0.35s ease;
}

.demo-stage__cover::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(9, 6, 15, 0.22), rgba(9, 6, 15, 0.78)),
    radial-gradient(
      circle at center,
      rgba(255, 132, 219, 0.14),
      transparent 46%
    );
  backdrop-filter: blur(12px);
}

.demo-stage__poster {
  position: absolute;
  inset: -6%;
  width: 112%;
  height: 112%;
  object-fit: cover;
  filter: blur(18px) saturate(1.08);
  transform: scale(1.06);
  transition: transform 0.4s ease;
}

.demo-stage__content {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 1rem;
  width: min(100%, 34rem);
}

.demo-stage__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(9, 6, 15, 0.58);
  color: #ffe8f5;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
}

.demo-stage__badge::before {
  content: "";
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--pink) 100%);
  box-shadow: 0 0 16px rgba(255, 73, 179, 0.45);
}

.demo-stage__button {
  min-width: min(100%, 22rem);
  min-height: 4.9rem;
  padding-inline: 2rem;
  border-radius: 24px;
  border-color: rgba(255, 255, 255, 0.16);
  background: linear-gradient(
    135deg,
    var(--pink) 0%,
    #ff74b4 48%,
    var(--gold) 100%
  );
  box-shadow: 0 22px 44px rgba(255, 73, 179, 0.26);
  color: #2a0f1f;
  font-size: clamp(1.25rem, 3vw, 2rem);
}

.demo-stage__button:disabled {
  cursor: progress;
  opacity: 0.92;
}

.demo-stage__meta,
.demo-stage__noscript {
  margin: 0;
}

.demo-stage__meta {
  max-width: 34rem;
  padding: 0.95rem 1.15rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(10, 7, 16, 0.62);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
  color: #fff3fb;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.65;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.28);
}

.demo-stage__noscript {
  margin-top: 0.95rem;
  font-size: 0.94rem;
}

.demo-stage.is-ready .demo-stage__cover {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.demo-stage.is-ready .demo-stage__poster {
  transform: scale(1.12);
}

.not-found-wrap {
  min-height: calc(100vh - 10rem);
  display: grid;
  place-items: center;
}

.not-found-card {
  width: min(42rem, 100%);
  text-align: center;
}

.not-found-card h1 {
  margin: 0.5rem 0 1rem;
  font-size: clamp(3rem, 10vw, 5rem);
  line-height: 0.92;
}

body.nav-open {
  overflow: hidden;
}

@media (max-width: 1140px) {
  .header-shell {
    grid-template-columns: auto 1fr auto;
  }

  .site-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 0.8rem);
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
    padding: 1rem;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(10, 6, 14, 0.98);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    width: 100%;
    text-align: center;
    background: rgba(255, 255, 255, 0.04);
  }

  .hero-grid,
  .section-grid,
  .dual-panel,
  .split-grid,
  .review-shell {
    grid-template-columns: 1fr;
  }

  .footer-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-about {
    grid-column: 1 / -1;
  }

  .toc-card {
    position: static;
  }

  .feature-grid,
  .gameplay-grid,
  .pros-cons,
  .track-map {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .offer-showcase {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .casino-row {
    grid-template-columns: 48px 96px minmax(0, 1fr) 132px;
  }

  .casino-row__offer {
    grid-column: 3 / 4;
    text-align: left;
  }

  .casino-row__action {
    grid-column: 4 / 5;
    grid-row: 1 / span 2;
    align-self: center;
  }
}

@media (max-width: 820px) {
  .brand img {
    height: 56px;
  }

  .header-tools {
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .language-switcher__menu {
    right: 0;
    left: auto;
  }

  .stat-rail,
  .feature-grid,
  .gameplay-grid,
  .track-map,
  .pros-cons {
    grid-template-columns: 1fr;
  }

  .chip-stack {
    position: static;
    width: 100%;
    margin-top: 1rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .footer-about {
    grid-column: auto;
  }

  .footer-about img {
    height: 84px;
  }

  .demo-stage__button {
    min-height: 4.35rem;
  }

  .casino-row {
    grid-template-columns: 46px 88px minmax(0, 1fr);
    padding-top: 3.25rem;
  }

  .casino-row__badge {
    left: auto;
    right: 0.75rem;
  }

  .casino-row__offer,
  .casino-row__action {
    grid-column: 1 / -1;
  }

  .casino-row__action {
    grid-row: auto;
    justify-content: flex-start;
  }

  .casino-row__button {
    width: min(100%, 170px);
    min-height: 2.9rem;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 1.2rem, 100%);
  }

  .site-header {
    padding-top: 0.65rem;
  }

  .header-shell {
    grid-template-columns: 1fr;
    gap: 0.55rem;
    padding: 0.68rem;
    border-radius: 28px;
  }

  .header-spacer {
    display: none;
  }

  .brand {
    justify-content: flex-start;
  }

  .brand img {
    height: 48px;
  }

  .hero-copy h1,
  .section-heading h2,
  .page-hero h1,
  .not-found-card h1 {
    letter-spacing: -0.05em;
  }

  .stat-rail {
    gap: 0.65rem;
  }

  .cta-row,
  .article-nav,
  .page-meta {
    flex-direction: column;
  }

  .offer-showcase {
    grid-template-columns: 1fr;
  }

  .btn,
  .article-nav a,
  .page-meta span {
    width: 100%;
  }

  .header-tools,
  .header-actions,
  .language-switcher {
    width: 100%;
  }

  .header-tools,
  .header-actions {
    display: grid;
    justify-content: stretch;
    gap: 0.55rem;
  }

  .header-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .header-actions .btn {
    min-height: 2.45rem;
    padding-inline: 0.72rem;
    white-space: normal;
    text-align: center;
    font-size: 0.92rem;
    line-height: 1.15;
  }

  .language-switcher__toggle {
    width: 100%;
    justify-content: center;
    min-height: 2.45rem;
    padding: 0.58rem 0.82rem;
    font-size: 0.92rem;
  }

  .language-switcher__menu {
    left: 0;
    right: 0;
    width: 100%;
  }

  .chip-stack {
    grid-template-columns: 1fr;
  }

  .footer-shell {
    border-radius: 28px;
  }

  .payment-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .payment-badge {
    min-height: 3.65rem;
  }

  .demo-stage__shell {
    border-radius: 24px;
  }

  .demo-stage__shell::after {
    inset: 0.7rem;
    border-radius: 18px;
  }

  .demo-stage__frame {
    aspect-ratio: 4 / 5;
    min-height: 28rem;
  }

  .demo-stage__cover {
    padding: 1.15rem;
  }

  .demo-stage__poster {
    inset: -6%;
    width: 112%;
    height: 112%;
    object-fit: cover;
    filter: blur(18px) saturate(1.08);
    transform: scale(1.06);
    background: transparent;
  }

  .demo-stage__content {
    width: min(100%, 18.5rem);
    gap: 0.8rem;
  }

  .demo-stage__badge {
    max-width: 100%;
    padding: 0.62rem 0.88rem;
    font-size: 0.68rem;
    line-height: 1.25;
    letter-spacing: 0.11em;
    white-space: normal;
    text-align: center;
    justify-content: center;
  }

  .demo-stage__button {
    width: 100%;
    min-height: 3.45rem;
    padding-inline: 1rem;
    border-radius: 20px;
    font-size: clamp(0.98rem, 5.4vw, 1.18rem);
  }

  .demo-stage__meta {
    max-width: 100%;
    padding: 0.8rem 0.9rem;
    font-size: 0.86rem;
    line-height: 1.45;
  }

  .casino-row {
    grid-template-columns: 1fr;
    gap: 0.7rem;
    padding: 4rem 0.8rem 0.8rem;
  }

  .casino-row__rank {
    position: absolute;
    top: 0.78rem;
    left: 0.8rem;
  }

  .casino-row__badge {
    top: 0.78rem;
    right: 0.8rem;
    left: auto;
    max-width: calc(100% - 4.9rem);
    padding-inline: 0.7rem;
    font-size: 0.58rem;
  }

  .casino-row__logo {
    min-height: 76px;
  }

  .casino-row__title {
    font-size: 1.14rem;
  }

  .casino-row__stars {
    letter-spacing: 0.1em;
  }

  .casino-row__offer,
  .casino-row__action {
    text-align: left;
    justify-content: stretch;
  }

  .casino-row__button {
    width: 100%;
  }
}
