:root {
  --bg-top: #0b3a92;
  --bg-main: #061534;
  --bg-deep: #020917;
  --surface: rgba(8, 19, 51, 0.86);
  --surface-strong: rgba(6, 14, 38, 0.94);
  --surface-soft: rgba(255, 255, 255, 0.05);
  --border: rgba(110, 189, 255, 0.22);
  --border-warm: rgba(255, 178, 74, 0.26);
  --text: #eef6ff;
  --muted: #9cb2d8;
  --blue: #42c6ff;
  --gold: #ffd56d;
  --orange: #ff9c32;
  --shadow: 0 24px 64px rgba(0, 0, 0, 0.34);
  --shadow-strong: 0 36px 90px rgba(0, 0, 0, 0.44);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --heading-font: "Palatino Linotype", "Book Antiqua", Georgia, serif;
  --body-font: "Avenir Next", "Trebuchet MS", "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  background: var(--bg-deep);
}

body {
  margin: 0;
  min-width: 320px;
  font-family: var(--body-font);
  color: var(--text);
  background:
    radial-gradient(circle at 12% 10%, rgba(67, 196, 255, 0.18), transparent 22rem),
    radial-gradient(circle at 88% 12%, rgba(255, 160, 56, 0.16), transparent 20rem),
    linear-gradient(180deg, #0b3a92 0%, #071a42 18%, #041127 42%, #020917 100%);
  background-color: var(--bg-deep);
  overflow-x: clip;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.025) 0, transparent 12%) 0 0 / 24rem 24rem,
    linear-gradient(320deg, rgba(255, 255, 255, 0.015) 0, transparent 15%) 0 0 / 18rem 18rem;
  pointer-events: none;
  z-index: -2;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

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

.skip-link {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 300;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: #f4fbff;
  color: #07142d;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

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

.page-lightning {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.page-lightning span {
  position: absolute;
  display: block;
  width: 22rem;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(126, 225, 255, 0.8), transparent);
  box-shadow: 0 0 20px rgba(83, 207, 255, 0.7);
  opacity: 0.42;
}

.flash-a {
  top: 11%;
  left: -4%;
  transform: rotate(-24deg);
}

.flash-b {
  top: 16%;
  right: -3%;
  width: 18rem;
  transform: rotate(20deg);
}

.flash-c {
  top: 56%;
  right: 14%;
  width: 15rem;
  transform: rotate(-16deg);
}

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

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

.header-shell {
  display: grid;
  grid-template-columns: auto auto;
  justify-content: space-between;
  align-items: center;
  gap: 0.9rem;
  padding: 0.6rem 0.8rem 0.6rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: 28px;
  background:
    radial-gradient(circle at 14% 50%, rgba(61, 194, 255, 0.14), transparent 10rem),
    linear-gradient(135deg, rgba(8, 20, 54, 0.96), rgba(4, 12, 34, 0.94));
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(14px);
}

html.is-scrolled .header-shell {
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.34);
}

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

.site-header .brand img {
  width: auto;
  height: clamp(48px, 5.4vw, 62px);
  filter: drop-shadow(0 10px 20px rgba(25, 156, 255, 0.14));
}

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

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

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

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.55rem;
  flex-wrap: nowrap;
}

.header-actions .btn {
  min-height: 2.7rem;
  padding: 0.7rem 1rem;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  box-shadow: none;
}

.header-actions .btn-ghost {
  background: rgba(255, 255, 255, 0.05);
}

.language-switcher {
  position: relative;
  z-index: 20;
}

.language-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 2.7rem;
  padding: 0.65rem 0.82rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    background-color 0.25s ease;
}

.language-toggle:hover,
.language-toggle:focus-visible,
.language-switcher.is-open .language-toggle {
  border-color: rgba(255, 178, 74, 0.48);
  background: rgba(255, 255, 255, 0.09);
  transform: translateY(-1px);
}

.language-toggle img,
.language-option img {
  width: 1.35rem;
  height: 1.02rem;
  border-radius: 0.18rem;
  object-fit: cover;
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.28);
}

.language-menu {
  position: absolute;
  top: calc(100% + 0.55rem);
  right: 0;
  display: grid;
  gap: 0.25rem;
  width: min(15.5rem, calc(100vw - 1.5rem));
  max-height: min(26rem, calc(100vh - 7rem));
  overflow: auto;
  padding: 0.5rem;
  border: 1px solid rgba(255, 178, 74, 0.24);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(10, 21, 59, 0.98), rgba(5, 12, 34, 0.98)),
    rgba(5, 12, 34, 0.98);
  box-shadow: 0 26px 72px rgba(0, 0, 0, 0.45);
  list-style: none;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-0.4rem);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.language-switcher.is-open .language-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.language-option {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 2.35rem;
  padding: 0.55rem 0.7rem;
  border: 1px solid transparent;
  border-radius: 13px;
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition:
    border-color 0.2s ease,
    background-color 0.2s ease;
}

.language-option:hover,
.language-option:focus-visible,
.language-option.is-active {
  border-color: rgba(255, 178, 74, 0.26);
  background: rgba(255, 255, 255, 0.07);
}

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

.menu-toggle-bar {
  display: block;
  width: 1.05rem;
  height: 0.12rem;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle-bar + .menu-toggle-bar {
  margin-top: 0.24rem;
}

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

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.15rem;
  padding: 0.85rem 1.2rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background-color 0.25s ease,
    border-color 0.25s ease;
}

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

.btn-primary {
  color: #2f1200;
  background: linear-gradient(135deg, var(--gold), #ffb43e 58%, #ff7b1d);
  box-shadow: 0 18px 34px rgba(255, 138, 29, 0.28);
}

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

.hero {
  padding: 2.5rem 0 1.8rem;
}

.page-breadcrumbs {
  margin: 0 0 1rem;
}

.page-breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.page-breadcrumbs li + li::before {
  content: "/";
  margin-right: 0.5rem;
  color: rgba(255, 255, 255, 0.28);
}

.page-breadcrumbs a:hover,
.page-breadcrumbs a:focus-visible {
  color: var(--text);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 430px);
  gap: clamp(1.25rem, 4vw, 2.8rem);
  align-items: center;
}

.hero-grid--single {
  grid-template-columns: minmax(0, 1fr);
}

.hero-copy {
  min-width: 0;
}

.hero-copy h1 {
  margin: 0 0 1rem;
  font-family: var(--heading-font);
  max-width: 11.5ch;
  font-size: clamp(2.5rem, 5.6vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
  text-shadow:
    0 0 28px rgba(68, 196, 255, 0.24),
    0 0 56px rgba(255, 144, 48, 0.08);
}

.hero-grid--single .hero-copy h1 {
  max-width: 15ch;
}

.hero-copy p {
  margin: 0;
  color: var(--text);
  font-size: 1.02rem;
  line-height: 1.72;
}

.hero-copy > * + * {
  margin-top: 1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1.25rem;
}

.stat-card {
  padding: 1rem;
  border: 1px solid var(--border-warm);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    rgba(8, 19, 51, 0.72);
  box-shadow: var(--shadow);
}

.stat-card span {
  display: block;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.stat-card strong {
  display: block;
  margin-top: 0.42rem;
  font-size: 1.08rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-art {
  position: relative;
  padding: 0.9rem;
  border: 1px solid var(--border-warm);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 22% 12%, rgba(69, 204, 255, 0.22), transparent 22rem),
    linear-gradient(160deg, rgba(11, 42, 109, 0.9), rgba(6, 14, 38, 0.98));
  box-shadow: var(--shadow-strong);
}

.hero-art::after {
  content: "";
  position: absolute;
  right: -2rem;
  bottom: -2rem;
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 167, 58, 0.24), transparent 68%);
  filter: blur(18px);
}

.hero-art img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  border-radius: calc(var(--radius-xl) - 0.85rem);
  background:
    radial-gradient(circle at 50% 42%, rgba(66, 198, 255, 0.15), transparent 20rem),
    linear-gradient(180deg, rgba(8, 20, 52, 0.86), rgba(2, 9, 23, 0.94));
}

.section {
  padding: 1.6rem 0 4rem;
}

.review-layout {
  display: grid;
  grid-template-columns: minmax(236px, 292px) minmax(0, 1fr);
  gap: 1.15rem;
  align-items: start;
}

.toc-card {
  position: sticky;
  top: 1.1rem;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(10, 21, 59, 0.94), rgba(6, 14, 38, 0.88)),
    rgba(6, 14, 38, 0.88);
  box-shadow: var(--shadow);
}

.toc-card .footer-title {
  margin: 0;
  padding: 1.15rem 1.2rem 1rem;
}

.toc-card .footer-title::after {
  left: 1.2rem;
  bottom: 0.32rem;
}

.toc-card ul {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 1rem 1rem 1rem;
  list-style: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.toc-card li {
  margin: 0;
}

.toc-card a {
  display: block;
  padding: 0.8rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(24, 33, 61, 0.92), rgba(15, 22, 42, 0.94)),
    rgba(255, 255, 255, 0.025);
  color: rgba(225, 234, 255, 0.84);
  font-size: 0.95rem;
  line-height: 1.42;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition:
    color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease,
    background-color 0.2s ease;
}

.toc-card a:hover,
.toc-card a:focus-visible {
  color: var(--text);
  border-color: rgba(255, 178, 74, 0.24);
  transform: translateX(2px);
}

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

.content-section,
.content-media,
.faq-card,
.list-card,
.site-footer,
.error-panel,
.redirect-panel {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(10, 21, 59, 0.94), rgba(6, 14, 38, 0.88)),
    rgba(6, 14, 38, 0.88);
  box-shadow: var(--shadow);
}

.content-section {
  padding: 1.45rem;
}

.content-section h2,
.error-panel h1,
.redirect-panel h1 {
  margin: 0 0 1rem;
  font-family: var(--heading-font);
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  line-height: 1.05;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.content-section h3 {
  margin: 1.45rem 0 0.7rem;
  font-family: var(--heading-font);
  font-size: 1.16rem;
  line-height: 1.35;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.content-section > h3:first-of-type {
  margin-top: 0;
}

.content-section p {
  margin: 0;
  color: var(--text);
  line-height: 1.75;
}

.content-section p + p {
  margin-top: 0.95rem;
}

.content-section ul {
  display: grid;
  gap: 0.8rem;
  margin: 0;
  list-style: none;
}

.content-section li,
.list-card li {
  position: relative;
  padding-left: 1.4rem;
  line-height: 1.7;
}

.content-section li::before,
.list-card li::before {
  content: "";
  position: absolute;
  top: 0.68rem;
  left: 0;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  box-shadow: 0 0 12px rgba(255, 167, 58, 0.22);
}

.casino-rankings {
  display: grid;
  gap: 0.78rem;
  margin: 1.15rem 0 0.75rem;
}

.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.74rem;
  padding: 0.9rem 0.9rem 0.9rem 0.82rem;
  border: 1px solid var(--border-warm);
  border-radius: var(--radius-md);
  background:
    radial-gradient(circle at 88% 16%, rgba(255, 213, 109, 0.14), transparent 13rem),
    radial-gradient(circle at 12% 52%, rgba(66, 198, 255, 0.13), transparent 12rem),
    linear-gradient(180deg, rgba(9, 28, 73, 0.98), rgba(4, 12, 34, 0.96));
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.26);
}

.casino-row__badge {
  position: absolute;
  top: 0.72rem;
  right: 0.78rem;
  z-index: 2;
  max-width: calc(100% - 1.5rem);
  padding: 0.42rem 0.7rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), #ffb43e 58%, var(--orange));
  color: #2f1200;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
  box-shadow: 0 10px 22px rgba(255, 156, 50, 0.22);
}

.casino-row__badge--secondary {
  background: linear-gradient(135deg, var(--blue), #75dcff);
  color: #021022;
}

.casino-row__rank {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 213, 109, 0.38);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: var(--gold);
  font-size: 1.05rem;
  font-weight: 900;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.casino-row__logo {
  display: grid;
  min-height: 74px;
  place-items: center;
  padding: 0.6rem;
  border: 1px solid rgba(110, 189, 255, 0.22);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
}

.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: var(--text);
  font-family: var(--heading-font);
  font-size: clamp(1.18rem, 1.7vw, 1.48rem);
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1;
}

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

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

.casino-row__score {
  color: rgba(238, 246, 255, 0.72);
  font-size: 0.84rem;
  font-weight: 800;
}

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

.casino-row__tags span {
  padding: 0.34rem 0.55rem;
  border: 1px solid rgba(110, 189, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.15;
}

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

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

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

.casino-row__spins {
  margin-top: 0.24rem;
  color: rgba(238, 246, 255, 0.66);
  font-size: 0.78rem;
  font-weight: 800;
}

.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-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--gold), #ffb43e 58%, #ff7b1d);
  color: #2f1200;
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 14px 28px rgba(255, 138, 29, 0.25);
  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 20px 38px rgba(255, 138, 29, 0.34);
}

.casino-rankings__note {
  margin: 0 0 0.25rem;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
}

.content-section .casino-row__title,
.content-section .casino-row__amount,
.content-section .casino-row__spins {
  margin: 0;
  line-height: 1;
}

.content-section .casino-row__spins {
  margin-top: 0.24rem;
}

.facts-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 0.2rem;
}

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

.facts-table th {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.facts-table td {
  line-height: 1.6;
}

.facts-table tbody tr:nth-child(odd) {
  background: rgba(255, 255, 255, 0.02);
}

.symbols-table-wrap {
  overflow: hidden;
  margin: 1.35rem 0 1.65rem;
  border: 1px solid rgba(255, 178, 74, 0.22);
  border-radius: 24px;
  background:
    radial-gradient(circle at 14% 12%, rgba(66, 198, 255, 0.1), transparent 14rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02));
}

.symbols-table {
  width: 100%;
  border-collapse: collapse;
}

.symbols-table th,
.symbols-table td {
  padding: 1rem;
  text-align: left;
  vertical-align: middle;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.symbols-table th {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.symbols-table td {
  line-height: 1.68;
}

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

.symbol-cell {
  display: grid;
  gap: 0.65rem;
  min-width: 13rem;
}

.symbol-cell strong {
  font-family: var(--heading-font);
  font-size: 1.02rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.symbol-icons {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.symbol-icons img {
  width: 4.2rem;
  height: 4.2rem;
  object-fit: contain;
  border-radius: 16px;
  background:
    radial-gradient(circle at 50% 38%, rgba(66, 198, 255, 0.13), transparent 68%),
    rgba(255, 255, 255, 0.035);
  filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.28));
}

.symbol-icons--group img {
  width: 3.5rem;
  height: 3.5rem;
}

.content-media {
  overflow: hidden;
  padding: 0.9rem;
}

.content-media img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: calc(var(--radius-lg) - 0.75rem);
  object-fit: contain;
  background:
    radial-gradient(circle at 50% 42%, rgba(66, 198, 255, 0.08), transparent 22rem),
    linear-gradient(180deg, rgba(8, 20, 52, 0.86), rgba(2, 9, 23, 0.94));
}

.media-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin: 1.35rem 0 1.55rem;
}

.media-pair .content-media {
  margin: 0;
  padding: 0.65rem;
}

.demo-slot {
  overflow: hidden;
  margin-top: 1.35rem;
  border: 1px solid rgba(255, 178, 74, 0.28);
  border-radius: 26px;
  background: rgba(2, 7, 23, 0.9);
  box-shadow: var(--shadow);
}

.demo-slot__preview {
  position: relative;
  min-height: clamp(15rem, 48vw, 22rem);
}

.demo-slot.is-demo-active .demo-slot__preview {
  display: none;
}

.demo-slot__preview img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  opacity: 0.76;
  filter: saturate(1.08) contrast(1.05);
  background:
    radial-gradient(circle at 50% 42%, rgba(66, 198, 255, 0.08), transparent 22rem),
    linear-gradient(180deg, rgba(8, 20, 52, 0.86), rgba(2, 9, 23, 0.94));
}

.demo-slot__preview::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 45%, rgba(66, 198, 255, 0.08), transparent 16rem),
    linear-gradient(180deg, rgba(2, 7, 23, 0.18), rgba(2, 7, 23, 0.78));
}

.demo-slot__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 0.9rem;
  padding: 1.5rem;
  text-align: center;
}

.demo-slot__overlay span {
  font-family: var(--heading-font);
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  text-shadow: 0 14px 34px rgba(0, 0, 0, 0.55);
}

.demo-slot__link {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.demo-slot__link:hover,
.demo-slot__link:focus-visible {
  color: var(--gold);
}

.demo-slot__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 24rem;
  background: #020714;
}

.demo-slot__frame[hidden] {
  display: none;
}

.demo-slot__iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.bonus-slider {
  margin: 1.35rem 0 1.55rem;
}

.bonus-slider__viewport {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 0.35rem;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.bonus-slider__viewport::-webkit-scrollbar {
  display: none;
}

.bonus-slider__slide {
  flex: 0 0 100%;
  margin: 0;
  scroll-snap-align: start;
}

.bonus-slider__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 0.9rem;
}

.bonus-slider__arrow {
  display: grid;
  place-items: center;
  width: 2.9rem;
  height: 2.9rem;
  border: 1px solid rgba(255, 178, 74, 0.22);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(24, 33, 61, 0.92), rgba(15, 22, 42, 0.94)),
    rgba(255, 255, 255, 0.025);
  color: var(--gold);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.bonus-slider__arrow:hover,
.bonus-slider__arrow:focus-visible {
  border-color: rgba(255, 178, 74, 0.46);
  color: var(--text);
  transform: translateY(-1px);
}

.bonus-slider__arrow:disabled {
  opacity: 0.42;
  cursor: default;
  transform: none;
}

.bonus-slider__dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem;
}

.bonus-slider__dot {
  width: 0.8rem;
  height: 0.8rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  cursor: pointer;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    box-shadow 0.2s ease;
}

.bonus-slider__dot.is-active {
  background: linear-gradient(135deg, var(--gold), var(--orange));
  box-shadow: 0 0 18px rgba(255, 167, 58, 0.24);
  transform: scale(1.08);
}

.pros-grid,
.faq-list {
  display: grid;
  gap: 1rem;
}

.contact-stack {
  display: grid;
  gap: 1rem;
}

.contact-panel {
  padding: 1.1rem;
  border: 1px solid rgba(110, 189, 255, 0.16);
  border-radius: 20px;
  background:
    radial-gradient(circle at 88% 16%, rgba(255, 213, 109, 0.06), transparent 12rem),
    linear-gradient(180deg, rgba(18, 29, 61, 0.42), rgba(9, 16, 37, 0.48));
}

.contact-section {
  display: grid;
  gap: 1rem;
}

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

.contact-channel {
  display: grid;
  gap: 0.35rem;
  padding: 1rem 1.05rem;
  border: 1px solid rgba(255, 178, 74, 0.2);
  border-radius: 18px;
  background:
    radial-gradient(circle at 88% 16%, rgba(255, 213, 109, 0.08), transparent 12rem),
    linear-gradient(180deg, rgba(18, 29, 61, 0.92), rgba(9, 16, 37, 0.94));
  color: var(--text);
  transition:
    transform 0.2s ease,
    border-color 0.2s ease;
}

.contact-channel:hover,
.contact-channel:focus-visible {
  border-color: rgba(255, 178, 74, 0.42);
  transform: translateY(-1px);
}

.contact-channel span {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-channel strong {
  font-size: 1.04rem;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.contact-form {
  display: grid;
  gap: 0.9rem;
}

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

.contact-form__field {
  display: grid;
  gap: 0.45rem;
}

.contact-form__field span {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-form__field input,
.contact-form__field select,
.contact-form__field textarea {
  width: 100%;
  min-height: 3rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(110, 189, 255, 0.18);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font: inherit;
  resize: vertical;
}

.contact-form__field textarea {
  min-height: 9rem;
}

.contact-form__field input:focus,
.contact-form__field select:focus,
.contact-form__field textarea:focus {
  outline: none;
  border-color: rgba(255, 178, 74, 0.44);
  box-shadow: 0 0 0 3px rgba(255, 178, 74, 0.08);
}

.contact-form__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.contact-form__success {
  margin: 0;
  color: #bcefc7;
  font-weight: 700;
}

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

.list-card,
.faq-card {
  padding: 1.3rem;
}

.list-card h3,
.faq-card h3 {
  margin: 0 0 0.85rem;
  font-family: var(--heading-font);
  font-size: 1.14rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.faq-card p {
  margin: 0;
  line-height: 1.72;
}

.site-footer-wrap {
  padding: 0.65rem 0 2.3rem;
}

.site-footer {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 178, 74, 0.16);
  border-radius: 34px;
  background:
    radial-gradient(circle at 9% 12%, rgba(84, 162, 255, 0.18), transparent 20rem),
    radial-gradient(circle at 92% 12%, rgba(255, 153, 56, 0.12), transparent 18rem),
    linear-gradient(180deg, rgba(4, 11, 31, 0.985), rgba(2, 6, 19, 0.99));
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.36);
}

.site-footer::before,
.site-footer::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(12px);
}

.site-footer::before {
  inset: -5rem auto auto -5rem;
  width: 15rem;
  height: 15rem;
  background: radial-gradient(circle, rgba(84, 162, 255, 0.18), transparent 70%);
}

.site-footer::after {
  inset: auto -4rem -4rem auto;
  width: 14rem;
  height: 14rem;
  background: radial-gradient(circle, rgba(255, 156, 50, 0.15), transparent 72%);
}

.footer-columns {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(240px, 0.7fr) minmax(260px, 0.88fr);
  gap: 1rem;
  padding: 1.35rem;
}

.footer-about,
.footer-nav-box,
.footer-cta {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(17, 25, 52, 0.9), rgba(10, 16, 36, 0.94)),
    rgba(255, 255, 255, 0.03);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 12px 26px rgba(0, 0, 0, 0.16);
  padding: 1.25rem;
}

.footer-nav-box,
.footer-cta {
  background:
    linear-gradient(180deg, rgba(14, 20, 44, 0.94), rgba(9, 14, 31, 0.96)),
    rgba(255, 255, 255, 0.025);
}

.footer-about .brand {
  width: fit-content;
}

.footer-about img {
  width: auto;
  height: clamp(74px, 8vw, 104px);
  margin-bottom: 1rem;
  filter: drop-shadow(0 12px 22px rgba(0, 0, 0, 0.24));
}

.footer-about p {
  margin: 0;
  max-width: 24ch;
  color: rgba(216, 226, 255, 0.8);
  font-size: 0.96rem;
  line-height: 1.72;
}

.footer-title {
  position: relative;
  display: inline-block;
  width: fit-content;
  margin: 0 0 0.95rem;
  color: var(--gold);
  font-family: var(--heading-font);
  font-size: 1rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.55rem;
  width: 4.1rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 214, 109, 0.9), rgba(255, 146, 41, 0.9));
}

.site-footer .footer-title::after {
  display: none;
}

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

.footer-nav-list a {
  display: inline-flex;
  align-items: center;
  min-height: 3.45rem;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  color: rgba(238, 243, 255, 0.92);
  background:
    linear-gradient(180deg, rgba(28, 36, 66, 0.92), rgba(18, 24, 45, 0.94)),
    rgba(255, 255, 255, 0.03);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  font-size: 0.96rem;
  line-height: 1.36;
  transition:
    transform 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    background-color 0.25s ease,
    box-shadow 0.25s ease;
}

.footer-nav-list a:hover,
.footer-nav-list a:focus-visible {
  color: var(--gold);
  border-color: rgba(255, 178, 74, 0.24);
  background:
    linear-gradient(180deg, rgba(33, 41, 74, 0.94), rgba(21, 28, 49, 0.96)),
    rgba(255, 255, 255, 0.05);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.14);
  transform: translateX(2px);
}

.footer-actions {
  display: grid;
  gap: 0.72rem;
  margin-bottom: 0.95rem;
}

.footer-actions .btn {
  width: 100%;
  min-height: 3.4rem;
  border-radius: 999px;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  justify-content: center;
}

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

.payment-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 3.35rem;
  padding: 0.7rem 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(24, 31, 57, 0.92), rgba(16, 21, 39, 0.94)),
    rgba(255, 255, 255, 0.02);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.payment-badge img {
  width: auto;
  height: 22px;
  max-width: 100%;
  object-fit: contain;
}

.footer-badge {
  display: flex;
  justify-content: center;
}

.footer-badge span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3.65rem;
  min-height: 3.65rem;
  border: 1px solid rgba(255, 178, 74, 0.22);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.footer-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1.35rem 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-meta {
  display: grid;
  gap: 0.4rem;
  text-align: right;
  color: rgba(208, 219, 251, 0.78);
  font-size: 0.9rem;
}

.footer-meta p {
  margin: 0;
  line-height: 1.6;
}

.back-to-top {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 90;
  display: grid;
  place-items: center;
  width: 3.2rem;
  height: 3.2rem;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(6, 14, 38, 0.92);
  color: var(--text);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.28);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    border-color 0.25s ease;
}

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

.back-to-top:hover,
.back-to-top:focus-visible {
  border-color: var(--border-warm);
}

.error-page,
.redirect-page {
  min-height: 100vh;
}

.error-panel,
.redirect-panel {
  max-width: 720px;
  margin: 0 auto;
  padding: 1.8rem;
  text-align: center;
}

.error-panel p,
.redirect-panel p {
  margin: 0;
  line-height: 1.72;
}

.error-code {
  margin: 0 0 0.8rem;
  font-family: var(--heading-font);
  font-size: clamp(3.4rem, 12vw, 6rem);
  line-height: 0.9;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.panel-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

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

  .toc-card {
    position: static;
  }

  .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;
  }

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

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

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

@media (max-width: 860px) {
  .header-shell {
    padding: 0.55rem 0.7rem 0.55rem 0.8rem;
  }

  .header-actions .btn {
    min-height: 2.55rem;
    padding: 0.64rem 0.85rem;
    font-size: 0.72rem;
  }

  .language-toggle {
    min-height: 2.55rem;
    padding: 0.6rem 0.76rem;
    font-size: 0.72rem;
  }

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

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

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

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-meta {
    text-align: left;
  }

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

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

  .casino-row__badge {
    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-pair {
    grid-template-columns: 1fr;
  }

  .contact-channels,
  .contact-form__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(1180px, calc(100% - 1rem));
  }

  .hero {
    padding-top: 1.8rem;
  }

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

  .header-shell {
    grid-template-columns: 1fr;
    justify-content: stretch;
    border-radius: 24px;
  }

  .brand {
    justify-content: center;
  }

  .header-actions {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
  }

  .language-toggle {
    width: 100%;
  }

  .language-menu {
    right: 0;
    left: auto;
    width: min(18rem, calc(100vw - 2rem));
  }

  .hero-actions .btn,
  .panel-actions .btn {
    width: 100%;
  }

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

  .facts-table th,
  .facts-table td {
    display: block;
    width: 100%;
  }

  .facts-table thead {
    display: none;
  }

  .facts-table td {
    padding-top: 0.25rem;
  }

  .facts-table tr {
    display: block;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

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

  .symbols-table thead {
    display: none;
  }

  .symbols-table tr,
  .symbols-table td {
    display: block;
    width: 100%;
  }

  .symbols-table tr {
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

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

  .symbols-table td {
    padding: 0.35rem 0.9rem;
    border-bottom: 0;
  }

  .symbol-cell {
    min-width: 0;
  }

  .demo-slot__preview,
  .demo-slot__preview img,
  .demo-slot__frame {
    min-height: 18rem;
  }

  .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;
    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 {
    justify-content: stretch;
    text-align: left;
  }

  .casino-row__button {
    width: 100%;
  }

  .footer-columns {
    padding: 1.1rem;
  }

  .footer-about,
  .footer-nav-box,
  .footer-cta {
    padding: 1rem;
  }

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
