:root {
  --bg: #0d1522;
  --bg-soft: #142033;
  --panel: #182435;
  --panel-strong: #1d2b40;
  --line: rgba(255, 255, 255, 0.08);
  --text: #f3f6fb;
  --muted: #aab6c9;
  --accent: #c9983f;
  --accent-strong: #efd39a;
  --pink: #d879b7;
  --violet: #6f7fd6;
  --cyan: #68bfd8;
  --green: #73c9aa;
  --shadow: 0 22px 48px rgba(5, 12, 24, 0.28);
  --payment-scroll-duration: 24s;
}

* {
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 10%, rgba(111, 127, 214, 0.16), transparent 22%),
    radial-gradient(circle at 85% 12%, rgba(104, 191, 216, 0.12), transparent 20%),
    radial-gradient(circle at 50% 0%, rgba(201, 152, 63, 0.12), transparent 24%),
    linear-gradient(180deg, var(--bg) 0%, #101b2c 52%, #0b1320 100%);
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

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

.hero-topbar {
  position: relative;
  z-index: 3;
  width: 100%;
  margin-bottom: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.055);
  background: rgba(13, 21, 34, 0.42);
  backdrop-filter: blur(8px);
}

.hero-topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 66px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.hero-topbar__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: 46px;
  border-radius: 0;
  overflow: hidden;
  background: transparent;
  color: inherit;
  box-shadow: none;
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-mark svg {
  display: block;
}

.hero-topbar__brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-topbar__brand-text strong {
  font-size: 0.98rem;
}

.hero-topbar__brand-text span {
  color: var(--muted);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.hero-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
  cursor: pointer;
}

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

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

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

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

.hero-topbar__menu {
  display: contents;
}

.hero-topbar__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  justify-content: center;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
}

.hero-topbar__nav a,
.hero-topbar__status {
  display: inline-flex;
  align-items: center;
  min-height: auto;
  padding: 0;
  border-radius: 0;
  color: #d5deeb;
  font-size: 0.84rem;
}

.hero-topbar__nav a {
  color: var(--muted);
  border: 0;
  background: transparent;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

.hero-topbar__nav a:hover {
  color: #fff3d6;
  background: transparent;
}

.hero-topbar__status {
  gap: 8px;
  color: var(--muted);
  padding: 0;
  background: transparent;
  border: 0;
}

.hero-topbar__status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #6fd3b2;
  box-shadow: 0 0 12px rgba(111, 211, 178, 0.6);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 35%, rgba(201, 152, 63, 0.08), transparent 18%),
    radial-gradient(circle at 35% 60%, rgba(111, 127, 214, 0.08), transparent 22%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 420px;
  background:
    radial-gradient(circle at 20% 20%, rgba(239, 211, 154, 0.09), transparent 20%),
    radial-gradient(circle at 65% 15%, rgba(104, 191, 216, 0.08), transparent 18%);
  pointer-events: none;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.75fr);
  gap: 18px;
  align-items: center;
  min-width: 0;
}

.hero__content {
  min-width: 0;
  padding: 18px 0;
  position: relative;
}

.hero__content::before {
  content: "";
  position: absolute;
  left: -28px;
  top: 10px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 152, 63, 0.15), transparent 68%);
  filter: blur(18px);
  pointer-events: none;
}

.hero__content::after {
  content: "";
  position: absolute;
  right: 16%;
  top: 36px;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  box-shadow: 0 0 0 18px rgba(255, 255, 255, 0.015);
  pointer-events: none;
}

.hero__label,
.section-head__label,
.casino-card__rank {
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.hero__label,
.section-head__label {
  margin: 0 0 12px;
  color: var(--accent-strong);
  font-size: 0.75rem;
}

.hero__eyebrow-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 6px;
}

.hero__trust {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--muted);
  font-size: 0.78rem;
}

.hero h1 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  line-height: 1;
  letter-spacing: -0.04em;
  position: relative;
  z-index: 1;
}

.hero h1 span {
  color: var(--accent-strong);
  text-shadow: none;
}

.hero h1::after {
  content: "";
  display: block;
  width: 84px;
  height: 4px;
  margin-top: 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(239, 211, 154, 0.95), rgba(239, 211, 154, 0));
}

.hero__text {
  max-width: 56ch;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero__cta,
.hero__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0;
  transition: background 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, color 0.2s ease,
    filter 0.2s ease;
}

.hero__cta {
  color: #171208;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.28), transparent 42%),
    linear-gradient(135deg, #ffe8a7 0%, #e7b953 48%, #c9952f 100%);
  border: 1px solid rgba(255, 230, 166, 0.58);
  box-shadow:
    0 14px 30px rgba(201, 152, 63, 0.22),
    0 0 0 4px rgba(239, 211, 154, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.hero__link {
  color: #dbe3f0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.025);
}

.hero__cta:hover,
.hero-showcase__button:hover,
.button:hover {
  color: #171208;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.34), transparent 42%),
    linear-gradient(135deg, #fff0bd 0%, #efc865 48%, #d29b32 100%);
  border-color: rgba(255, 233, 178, 0.72);
  box-shadow:
    0 0 0 4px rgba(239, 211, 154, 0.1),
    0 16px 34px rgba(201, 152, 63, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  filter: none;
}

.hero__link:hover {
  color: #fff3d6;
  border-color: rgba(239, 211, 154, 0.34);
  background: rgba(239, 211, 154, 0.08);
  box-shadow: 0 0 0 4px rgba(239, 211, 154, 0.05);
}

.hero__metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.hero-metric {
  padding: 16px 18px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015)),
    rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-metric strong {
  display: block;
  margin-bottom: 4px;
  color: var(--accent-strong);
  font-size: 1.35rem;
}

.hero-metric span {
  color: var(--muted);
  font-size: 0.88rem;
}

.hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
  position: relative;
  z-index: 1;
}

.hero__chips span {
  padding: 9px 14px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.025));
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #dcd3bf;
  font-size: 0.88rem;
}

.hero-showcase {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  isolation: isolate;
  min-width: 0;
}

.hero-showcase::before {
  content: "";
  position: absolute;
  inset: 16px 26px 24px 26px;
  border-radius: 32px;
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.04), transparent 38%),
    radial-gradient(circle at 75% 78%, rgba(239, 211, 154, 0.08), transparent 24%);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transform: rotate(-4deg);
  opacity: 0.48;
  pointer-events: none;
}

.hero-showcase__card {
  position: relative;
  z-index: 2;
  width: 100%;
  min-width: 0;
  padding: 26px;
  border-radius: 24px;
  border: 1px solid rgba(201, 152, 63, 0.18);
  background:
    radial-gradient(circle at top right, rgba(201, 152, 63, 0.11), transparent 24%),
    radial-gradient(circle at left center, rgba(111, 127, 214, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), transparent 18%),
    var(--panel-strong);
  box-shadow:
    0 20px 40px rgba(5, 12, 24, 0.24),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 0 18px rgba(111, 127, 214, 0.05);
  overflow: hidden;
}

.hero-showcase__card::after {
  content: "";
  position: absolute;
  inset: auto -40px -40px auto;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 210, 127, 0.16), transparent 72%);
}

.hero-showcase__card::before {
  content: "";
  position: absolute;
  inset: -30% auto auto -20%;
  width: 34%;
  height: 180%;
  transform: rotate(18deg);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0)
  );
  opacity: 0.7;
}

.hero-showcase__ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.07);
  pointer-events: none;
}

.hero-showcase__ring--one {
  width: 210px;
  height: 210px;
  right: -16px;
  top: 18px;
  box-shadow: 0 0 0 18px rgba(255, 255, 255, 0.015);
}

.hero-showcase__ring--two {
  width: 140px;
  height: 140px;
  left: 8px;
  bottom: 24px;
  box-shadow: 0 0 0 12px rgba(201, 152, 63, 0.03);
}

.hero-showcase__spark {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(180deg, #fff6d7, #efd39a);
  box-shadow: 0 0 18px rgba(239, 211, 154, 0.35);
  pointer-events: none;
}

.hero-showcase__spark--one {
  top: 32px;
  left: 26px;
}

.hero-showcase__spark--two {
  top: 88px;
  right: 12px;
}

.hero-showcase__spark--three {
  bottom: 42px;
  left: 14px;
}

.hero-showcase__top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.hero-showcase__badge,
.hero-showcase__live {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
}

.hero-showcase__badge {
  color: #fff2c8;
  background:
    linear-gradient(180deg, rgba(255, 220, 132, 0.2), rgba(201, 152, 63, 0.1)),
    rgba(201, 152, 63, 0.12);
  border-color: rgba(255, 220, 132, 0.36);
  box-shadow:
    0 0 0 3px rgba(239, 211, 154, 0.06),
    0 10px 22px rgba(201, 152, 63, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.hero-showcase__live {
  color: #c4f2df;
  background: rgba(115, 201, 170, 0.08);
  border-color: rgba(115, 201, 170, 0.18);
}

.hero-showcase__live--score {
  display: inline-grid;
  grid-template-columns: 13px auto;
  align-items: center;
  justify-items: center;
  column-gap: 6px;
  color: #8df0bd;
  background: rgba(75, 222, 142, 0.14);
  border-color: rgba(99, 236, 163, 0.34);
  font-weight: 800;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.hero-showcase__badge span,
.hero-showcase__live span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.72rem;
}

.hero-showcase__badge span {
  background: rgba(255, 196, 74, 0.18);
  box-shadow: 0 0 12px rgba(255, 184, 77, 0.24);
}

.hero-showcase__badge .badge-fire {
  position: relative;
  background:
    radial-gradient(circle at 50% 62%, #fff1a8 0 18%, transparent 19%),
    linear-gradient(135deg, #ff7a2e, #f5c74f);
  box-shadow:
    0 0 12px rgba(255, 160, 54, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.hero-showcase__badge .badge-fire::before {
  content: "";
  display: block;
  width: 9px;
  height: 12px;
  border-radius: 8px 8px 8px 2px;
  background: linear-gradient(180deg, #fff3a3 0%, #ff9b2f 52%, #f05a28 100%);
  transform: rotate(45deg);
}

.hero-showcase__center {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  align-items: stretch;
  gap: 18px;
  padding: 34px 0 20px;
}

.hero-showcase__logo {
  width: 82px;
  height: 82px;
  min-height: 82px;
  border-radius: 18px;
  font-size: 1.08rem;
}

.hero-showcase__eyebrow {
  margin: 0 0 10px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  line-height: 1;
}

.hero-showcase h2 {
  margin: 0;
  font-size: 2rem;
  line-height: 1;
}

.hero-showcase__bonus {
  margin: 12px 0 0;
  color: var(--accent-strong);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.25;
}

.hero-showcase__payments {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin-top: 16px;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.hero-showcase__payments-track {
  display: flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  will-change: transform;
  animation: paymentsScroll var(--payment-scroll-duration) linear infinite;
}

.hero-showcase__payments .pay-badge {
  min-width: 66px;
  height: 34px;
  padding: 0 12px;
}

.hero-showcase__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 46px;
  margin-top: 22px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 230, 166, 0.58);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.28), transparent 42%),
    linear-gradient(135deg, #ffe8a7 0%, #e7b953 48%, #c9952f 100%);
  color: #171208;
  text-decoration: none;
  font-weight: 600;
  box-shadow:
    0 14px 30px rgba(201, 152, 63, 0.2),
    0 0 0 4px rgba(239, 211, 154, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.42);
  transition: background 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, filter 0.2s ease;
}

.hero-coin {
  position: absolute;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(239, 211, 154, 0.98), rgba(201, 152, 63, 0.98));
  color: #36240a;
  font-weight: 800;
  box-shadow:
    0 10px 20px rgba(0, 0, 0, 0.16),
    0 0 12px rgba(201, 152, 63, 0.08);
}

.hero-coin--one {
  top: 34px;
  right: -6px;
  animation: coinFloatOne 4.2s ease-in-out infinite;
}

.hero-coin--two {
  left: -8px;
  bottom: 68px;
  animation: coinFloatTwo 5s ease-in-out infinite;
}

.hero-coin--three {
  right: 34px;
  bottom: 18px;
  animation: coinFloatThree 4.7s ease-in-out infinite;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(30px);
  opacity: 0.55;
}

.hero-orb--one {
  width: 140px;
  height: 140px;
  top: 18px;
  right: 10px;
  background: rgba(255, 184, 77, 0.28);
  animation: orbPulseOne 4s ease-in-out infinite;
}

.hero-orb--two {
  width: 120px;
  height: 120px;
  left: 8px;
  bottom: 22px;
  background: rgba(145, 93, 255, 0.24);
  animation: orbPulseTwo 4.8s ease-in-out infinite;
}

@keyframes coinFloatOne {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-12px) rotate(10deg);
  }
}

@keyframes coinFloatTwo {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(10px) rotate(-12deg);
  }
}

@keyframes coinFloatThree {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-8px) scale(1.06);
  }
}

@keyframes orbPulseOne {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.08);
    opacity: 0.72;
  }
}

@keyframes orbPulseTwo {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.42;
  }
  50% {
    transform: scale(0.92);
    opacity: 0.62;
  }
}

.top-section {
  padding: 18px 0 64px;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 24px;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.section-head__link {
  color: var(--accent-strong);
  text-decoration: none;
}

.section-head__text {
  max-width: 38ch;
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.casino-card {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 12px;
  align-items: start;
  position: relative;
  overflow: hidden;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    radial-gradient(circle at top right, rgba(111, 127, 214, 0.1), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 22%),
    var(--panel);
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.casino-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    135deg,
    rgba(239, 211, 154, 0) 0%,
    rgba(239, 211, 154, 0.06) 45%,
    rgba(104, 191, 216, 0.08) 100%
  );
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.casino-card:hover {
  border-color: rgba(201, 152, 63, 0.2);
  box-shadow:
    0 22px 44px rgba(5, 12, 24, 0.32),
    0 0 0 1px rgba(239, 211, 154, 0.05) inset,
    0 0 22px rgba(111, 127, 214, 0.08);
}

.casino-card:hover::after {
  opacity: 1;
}

.casino-card--accent {
  background:
    radial-gradient(circle at top right, rgba(201, 152, 63, 0.18), transparent 28%),
    radial-gradient(circle at left center, rgba(111, 127, 214, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 22%),
    var(--panel-strong);
  border-color: rgba(201, 152, 63, 0.24);
  box-shadow:
    0 22px 44px rgba(5, 12, 24, 0.32),
    0 0 22px rgba(201, 152, 63, 0.06);
}

.casino-card__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 4px;
  grid-column: 1;
}

.casino-card__brand {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  min-width: 0;
}

.casino-card__brand-text {
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 0;
}

.casino-card__brand-label {
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.casino-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 78px;
  height: 78px;
  border-radius: 20px;
  border: 0;
  color: #fff7da;
  font-weight: 900;
  font-size: 1.16rem;
  letter-spacing: 0.04em;
  overflow: hidden;
  padding: 0;
  position: relative;
  box-shadow: none;
}

.casino-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: inherit;
  background: transparent;
}

.casino-logo:has(img) {
  width: auto;
  height: auto;
  min-width: 0;
  min-height: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.hero-showcase__logo:has(img) {
  width: auto;
  height: auto;
  min-height: 0;
}

.casino-logo:has(img) img {
  width: 78px;
  height: 78px;
  border-radius: 18px;
  object-fit: contain;
  background: transparent;
}

.hero-showcase__logo:has(img) img {
  width: 82px;
  height: 82px;
}

.casino-logo--nova {
  --logo-glow: rgba(255, 184, 77, 0.22);
  background:
    radial-gradient(circle at 28% 22%, rgba(255, 255, 255, 0.42), transparent 28%),
    linear-gradient(135deg, #ffe16a 0%, #ff9f2f 46%, #ff5b45 100%);
}

.casino-logo--orbit {
  --logo-glow: rgba(255, 88, 214, 0.24);
  background:
    radial-gradient(circle at 28% 22%, rgba(255, 255, 255, 0.38), transparent 28%),
    linear-gradient(135deg, #ff77df 0%, #a463ff 48%, #4d7cff 100%);
}

.casino-logo--ruby {
  --logo-glow: rgba(255, 87, 116, 0.22);
  background:
    radial-gradient(circle at 28% 22%, rgba(255, 255, 255, 0.38), transparent 28%),
    linear-gradient(135deg, #ff8c73 0%, #ff477e 44%, #8f43ff 100%);
}

.casino-logo--volt {
  --logo-glow: rgba(82, 230, 255, 0.22);
  background:
    radial-gradient(circle at 28% 22%, rgba(255, 255, 255, 0.38), transparent 28%),
    linear-gradient(135deg, #71f5ff 0%, #36b8ff 48%, #5b63ff 100%);
}

.casino-logo--fox {
  --logo-glow: rgba(255, 159, 31, 0.24);
  background:
    radial-gradient(circle at 28% 22%, rgba(255, 255, 255, 0.42), transparent 28%),
    linear-gradient(135deg, #fff078 0%, #ffb12e 48%, #ff6f2e 100%);
}

.casino-card__rank {
  color: var(--accent-strong);
  font-size: 0.78rem;
}

.casino-card__score {
  display: inline-grid;
  grid-template-columns: 13px auto;
  align-items: center;
  justify-content: center;
  justify-items: center;
  column-gap: 6px;
  flex: 0 0 auto;
  min-width: 72px;
  height: 40px;
  padding: 0 13px;
  border-radius: 999px;
  background: rgba(75, 222, 142, 0.14);
  border: 1px solid rgba(99, 236, 163, 0.34);
  color: #8df0bd;
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 0;
  box-shadow: none;
}

.casino-card__score span {
  color: #b8f7d3;
  font-size: 0.78rem;
  line-height: 1;
  text-shadow: none;
}

.score-star {
  display: block;
  width: 13px;
  height: 13px;
  flex: 0 0 auto;
  background: #9ff5c6;
  clip-path: polygon(50% 0%, 61% 34%, 97% 34%, 68% 55%, 79% 91%, 50% 70%, 21% 91%, 32% 55%, 3% 34%, 39% 34%);
}

.score-value {
  display: block;
  line-height: 1;
  transform: translateY(-0.5px);
  font-variant-numeric: tabular-nums;
}

.hero-showcase__live--score .score-star {
  display: block;
  width: 13px;
  height: 13px;
  transform: none;
  background: #9ff5c6;
  opacity: 1;
  border-radius: 0;
  font-size: 0;
  line-height: 0;
}

.hero-showcase__live.hero-showcase__live--score .score-star {
  width: 13px;
  height: 13px;
  background: #9ff5c6;
  box-shadow: none;
}

.casino-card h3 {
  margin: 0;
  font-size: 1.55rem;
  line-height: 1.05;
  grid-column: 1;
}

.casino-card__bonus {
  margin: 0;
  color: var(--accent-strong);
  font-weight: 700;
  line-height: 1.35;
  text-shadow: 0 0 10px rgba(201, 152, 63, 0.08);
  grid-column: 1;
}

.casino-card__list {
  margin: 2px 0 2px;
  padding: 0;
  list-style: none;
  grid-column: 1;
}

.casino-card__list li {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr);
  column-gap: 10px;
  align-items: start;
  margin-bottom: 10px;
  padding-left: 0;
  color: #d8deea;
  line-height: 1.55;
}

.casino-card__list li::before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  width: 24px;
  height: 24px;
  margin-top: 0.02em;
  border-radius: 8px;
  background:
    radial-gradient(circle at 30% 18%, rgba(255, 255, 255, 0.48), transparent 30%),
    linear-gradient(135deg, #fff4b8 0%, #f2cf63 52%, #dca53b 100%);
  color: #2b1d05;
  font-size: 0.9rem;
  font-weight: 900;
  box-shadow:
    0 8px 18px rgba(220, 165, 59, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.48);
}

.casino-card__list .casino-card__list-item--time::before {
  content: "⏱";
}

.casino-card__list .casino-card__list-item--limit::before {
  content: "$";
}

.casino-card__list .casino-card__list-item--support::before {
  content: "✦";
}

.casino-card__list .casino-card__list-item--speed::before {
  content: "↯";
}

.casino-card__list .casino-card__list-item--flow::before {
  content: "→";
}

.casino-card__list .casino-card__list-item--mobile::before {
  content: "◼";
}

.casino-card__list .casino-card__list-item--crypto::before {
  content: "₿";
}

.casino-card__list .casino-card__list-item--bonus::before {
  content: "+";
}

.casino-card__list .casino-card__list-item--spins::before {
  content: "↻";
}

.casino-card__list .casino-card__list-item--trophy::before {
  content: "★";
}

.casino-card__list .casino-card__list-item--spark::before {
  content: "✧";
}

.casino-card__list .casino-card__list-item--balance::before {
  content: "≋";
}

.casino-card__list .casino-card__list-item--games::before {
  content: "◆";
}

.casino-card__list .casino-card__list-item--vip::before {
  content: "♛";
}

.casino-card__list li::before {
  content: "";
  background:
    var(--list-icon) center / 15px 15px no-repeat,
    radial-gradient(circle at 30% 18%, rgba(255, 255, 255, 0.52), transparent 30%),
    linear-gradient(135deg, #fff2a8 0%, #f1ca56 52%, #d79a2f 100%);
  border: 1px solid rgba(255, 230, 159, 0.38);
  box-shadow:
    0 8px 18px rgba(220, 165, 59, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.52);
}

.casino-card__list .casino-card__list-item--time::before,
.casino-card__list .casino-card__list-item--limit::before,
.casino-card__list .casino-card__list-item--support::before,
.casino-card__list .casino-card__list-item--speed::before,
.casino-card__list .casino-card__list-item--flow::before,
.casino-card__list .casino-card__list-item--mobile::before,
.casino-card__list .casino-card__list-item--crypto::before,
.casino-card__list .casino-card__list-item--bonus::before,
.casino-card__list .casino-card__list-item--spins::before,
.casino-card__list .casino-card__list-item--trophy::before,
.casino-card__list .casino-card__list-item--spark::before,
.casino-card__list .casino-card__list-item--balance::before,
.casino-card__list .casino-card__list-item--games::before,
.casino-card__list .casino-card__list-item--vip::before {
  content: "";
}

.casino-card__list .casino-card__list-item--time::before,
.casino-card__list .casino-card__list-item--speed::before,
.casino-card__list .casino-card__list-item--balance::before {
  --list-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232b1d05' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='13' r='7'/%3E%3Cpath d='M9 2h6M12 13V9M12 13l3 2M7 5l2 2M17 5l-2 2'/%3E%3C/svg%3E");
}

.casino-card__list .casino-card__list-item--limit::before,
.casino-card__list .casino-card__list-item--flow::before,
.casino-card__list .casino-card__list-item--trophy::before {
  --list-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232b1d05' stroke-width='2.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3v18M16 7.5c-.8-1-2.2-1.5-3.8-1.5-2.1 0-3.7 1-3.7 2.6 0 1.8 1.8 2.4 3.8 2.8 2.1.5 3.7 1.1 3.7 3 0 1.7-1.7 2.8-4 2.8-1.8 0-3.3-.6-4.2-1.7'/%3E%3C/svg%3E");
}

.casino-card__list .casino-card__list-item--support::before,
.casino-card__list .casino-card__list-item--mobile::before,
.casino-card__list .casino-card__list-item--bonus::before,
.casino-card__list .casino-card__list-item--spark::before,
.casino-card__list .casino-card__list-item--vip::before {
  --list-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232b1d05' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12a7 7 0 0 1 14 0v4a2 2 0 0 1-2 2h-2M5 12v4a2 2 0 0 0 2 2h1M9 19h3'/%3E%3Cpath d='M8 12v3M16 12v3'/%3E%3C/svg%3E");
}

.casino-card__list .casino-card__list-item--crypto::before {
  --list-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232b1d05' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M11 4v16M14 4v16M8 6h6a3 3 0 0 1 0 6H8h7a3 3 0 0 1 0 6H8'/%3E%3C/svg%3E");
}

.casino-card__list .casino-card__list-item--spins::before {
  --list-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232b1d05' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 12a8 8 0 1 1-2.3-5.7M20 4v6h-6'/%3E%3C/svg%3E");
}

.casino-card__list .casino-card__list-item--games::before {
  --list-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232b1d05' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='4' y='7' width='16' height='10' rx='3'/%3E%3Cpath d='M8 12h4M10 10v4M16 11h.1M18 13h.1'/%3E%3C/svg%3E");
}

.casino-card__payments {
  display: block;
  margin-top: 4px;
  grid-column: 1;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.casino-card__footer {
  display: block;
  width: 100%;
  margin-top: 14px;
  padding-top: 12px;
  width: 100%;
}

.casino-card__footer .button {
  width: 100% !important;
  min-width: 0 !important;
  max-width: none !important;
  flex: 1 1 auto;
}

.casino-card__payments-grid {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  width: 100%;
  max-width: 100%;
}

.casino-card__payments-track {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  align-items: center;
  width: max-content;
  max-width: none;
  will-change: transform;
  animation: paymentsScroll var(--payment-scroll-duration) linear infinite;
}

.pay-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-width: 74px;
  height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  pointer-events: none;
}

.pay-logo {
  display: block;
  width: 52px;
  height: 18px;
  flex: 0 0 auto;
  object-fit: contain;
}

@keyframes paymentsScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  width: auto;
  min-width: 148px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid rgba(255, 230, 166, 0.58);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.28), transparent 42%),
    linear-gradient(135deg, #ffe8a7 0%, #e7b953 48%, #c9952f 100%);
  color: #171208;
  text-decoration: none;
  font-weight: 600;
  box-shadow:
    0 14px 30px rgba(201, 152, 63, 0.2),
    0 0 0 4px rgba(239, 211, 154, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.42);
  transition: background 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, filter 0.2s ease;
  font-size: 0.98rem;
  letter-spacing: 0;
}

.button--secondary {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.28), transparent 42%),
    linear-gradient(135deg, #ffe8a7 0%, #e7b953 48%, #c9952f 100%);
  color: #171208;
  border: 1px solid rgba(255, 230, 166, 0.58);
  box-shadow:
    0 14px 30px rgba(201, 152, 63, 0.2),
    0 0 0 4px rgba(239, 211, 154, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.info-section {
  padding: 18px 0 64px;
}

.rating-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.rating-card,
.faq-list details {
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015)),
    rgba(24, 36, 53, 0.72);
  box-shadow: 0 18px 36px rgba(5, 12, 24, 0.16);
}

.rating-card {
  padding: 20px;
  border-radius: 20px;
}

.rating-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  border-radius: 14px;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.42), transparent 28%),
    linear-gradient(135deg, #76f5bf 0%, #d9b85b 100%);
  color: #0f2118;
  font-weight: 900;
  box-shadow:
    0 12px 24px rgba(115, 201, 170, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.32);
}

.rating-card__icon svg {
  display: block;
  width: 24px;
  height: 24px;
}

.rating-card__icon path {
  fill: none;
  stroke: #101826;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.rating-card__icon--bonus path:first-child {
  fill: #101826;
  stroke: none;
}

.rating-card__icon--trust path:first-child,
.rating-card__icon--payments path:first-child,
.rating-card__icon--experience path:first-child {
  fill: rgba(16, 24, 38, 0.12);
}

.rating-card:nth-child(1) .rating-card__icon {
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.42), transparent 28%),
    linear-gradient(135deg, #ffe36e 0%, #ff9f43 100%);
  box-shadow: 0 12px 24px rgba(255, 159, 67, 0.18);
}

.rating-card:nth-child(2) .rating-card__icon {
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.42), transparent 28%),
    linear-gradient(135deg, #73f0ba 0%, #22c787 100%);
  box-shadow: 0 12px 24px rgba(34, 199, 135, 0.18);
}

.rating-card:nth-child(3) .rating-card__icon {
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.42), transparent 28%),
    linear-gradient(135deg, #72d8ff 0%, #5d7cff 100%);
  box-shadow: 0 12px 24px rgba(93, 124, 255, 0.18);
}

.rating-card:nth-child(4) .rating-card__icon {
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.42), transparent 28%),
    linear-gradient(135deg, #ff79d7 0%, #935cff 100%);
  box-shadow: 0 12px 24px rgba(147, 92, 255, 0.18);
}

.rating-card h3 {
  margin: 0 0 10px;
  font-size: 1.05rem;
}

.rating-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  font-size: 0.94rem;
}

.faq-list {
  display: grid;
  gap: 12px;
  width: 100%;
  max-width: none;
  margin: 0;
}

.faq-list details {
  border-radius: 18px;
  padding: 0;
  overflow: hidden;
}

.faq-list summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 28px;
  align-items: center;
  column-gap: 18px;
  min-height: 60px;
  padding: 14px 20px;
  color: #f0f4fb;
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 28px;
  height: 28px;
  justify-self: end;
  align-self: center;
  border-radius: 999px;
  background: rgba(239, 211, 154, 0.09);
  border: 1px solid rgba(239, 211, 154, 0.18);
  color: var(--accent-strong);
}

.faq-toggle::before,
.faq-toggle::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 9px;
  height: 2px;
  border-radius: 999px;
  background: var(--accent-strong);
  transform: translate(-50%, -50%);
}

.faq-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-list details[open] .faq-toggle::after {
  opacity: 0;
}

.faq-list p {
  margin: 0;
  padding: 0 18px 16px;
  color: var(--muted);
  line-height: 1.65;
}

#faq .section-head {
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}

.site-footer {
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(7, 13, 22, 0.24);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
}

.site-footer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  color: inherit;
  text-decoration: none;
}

.site-footer p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.92rem;
}

.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.site-footer__nav a {
  color: var(--muted);
  text-decoration: none;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  transition: color 0.2s ease;
}

.site-footer__nav a:hover {
  color: var(--accent-strong);
}

.site-footer__note {
  text-align: right;
}

@media (max-width: 980px) {
  .hero-topbar__inner {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero__content {
    width: 100%;
    max-width: none;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(3.2rem, 7.8vw, 4.35rem);
  }

  .hero__text {
    max-width: none;
  }

  .hero-showcase {
    justify-content: center;
    width: 100%;
  }

  .hero-showcase__card {
    max-width: 560px;
  }

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

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

  .rating-grid,
  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .site-footer__note {
    text-align: left;
  }

  .site-footer__nav {
    justify-content: flex-start;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  .hero {
    padding-top: 0;
    padding-bottom: 34px;
  }

  .hero-topbar {
    margin-bottom: 28px;
  }

  .hero-topbar__inner {
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 14px;
    padding-bottom: 14px;
    gap: 13px;
    justify-content: space-between;
  }

  .hero-topbar__brand {
    gap: 10px;
    min-width: 0;
  }

  .hero-topbar__brand-text strong {
    white-space: nowrap;
  }

  .hero-topbar__brand-text span {
    display: none;
  }

  .hero-menu-toggle {
    display: inline-flex;
  }

  .hero-topbar__menu {
    display: none;
    position: absolute;
    z-index: 20;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    width: 100%;
    overflow: hidden;
    padding: 14px 16px 13px;
    border-radius: 18px;
    background:
      linear-gradient(180deg, rgba(31, 45, 65, 0.98), rgba(16, 27, 43, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.07);
    box-shadow: 0 20px 44px rgba(4, 10, 19, 0.42);
    backdrop-filter: blur(10px);
  }

  .hero-topbar__inner.is-menu-open .hero-topbar__menu {
    display: block;
  }

  .hero-topbar__nav {
    display: grid;
    justify-content: start;
    justify-items: stretch;
    align-items: stretch;
    gap: 2px;
    width: 100%;
    padding-top: 0;
    text-align: left;
  }

  .hero-topbar__nav a {
    justify-content: flex-start;
    justify-self: stretch;
    width: 100%;
    min-height: 34px;
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: 0;
    color: #dce5f2;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.01em;
  }

  .hero-topbar__nav a:hover {
    color: var(--accent-strong);
  }

  .hero-topbar__status {
    justify-content: flex-start;
    justify-self: start;
    width: 100%;
    min-height: 28px;
    margin-top: 8px;
    padding-top: 9px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    font-size: 0.8rem;
  }

  .hero__content {
    width: 100%;
    max-width: none;
    padding: 0;
  }

  .hero__content::before,
  .hero__content::after,
  .hero-showcase::before,
  .hero-showcase__ring,
  .hero-showcase__spark {
    display: none;
  }

  .hero__label,
  .section-head__label {
    font-size: 0.7rem;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(2.75rem, 12vw, 4rem);
    line-height: 0.98;
    letter-spacing: -0.04em;
  }

  .hero h1::after {
    width: 78px;
    margin-top: 14px;
  }

  .hero__text {
    width: 100%;
    max-width: none;
    font-size: 0.98rem;
    line-height: 1.62;
    overflow-wrap: break-word;
  }

  .hero__grid {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 28px;
    width: 100%;
  }

  .hero-showcase {
    width: 100%;
    min-height: auto;
    margin-top: 0;
    overflow: visible;
  }

  .hero__eyebrow-row {
    flex-wrap: wrap;
  }

  .hero__actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    margin-top: 24px;
    gap: 12px;
  }

  .hero__actions .button,
  .hero__cta,
  .hero__link {
    width: 100%;
    min-width: 0;
    justify-content: center;
  }

  .hero-showcase__card {
    width: 100%;
    max-width: 100%;
    padding: 18px;
    border-radius: 20px;
  }

  .hero-showcase__top {
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .hero-showcase__badge,
  .hero-showcase__live {
    min-height: 32px;
    padding: 0 10px;
    font-size: 0.76rem;
  }

  .hero-showcase__center {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 14px;
    padding: 24px 0 16px;
    align-items: center;
  }

  .hero-showcase__center > div:last-child {
    min-width: 0;
  }

  .hero-showcase__logo:has(img) img {
    width: 64px;
    height: 64px;
    border-radius: 16px;
  }

  .hero-showcase__eyebrow {
    margin-bottom: 8px;
    font-size: 0.66rem;
  }

  .hero-showcase h2 {
    font-size: clamp(1.55rem, 7.4vw, 2rem);
    line-height: 1.04;
    overflow-wrap: anywhere;
  }

  .hero-showcase__bonus {
    font-size: 0.94rem;
  }

  .hero-showcase__payments {
    margin-top: 12px;
  }

  .hero-showcase__payments .pay-badge {
    min-width: 58px;
    height: 32px;
    padding: 0 10px;
  }

  .hero-showcase__payments .pay-badge::before {
    width: 42px;
  }

  .hero-showcase__button {
    min-height: 48px;
    margin-top: 18px;
  }

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

  .hero-coin {
    display: none;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .rating-grid,
  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .site-footer__nav {
    justify-content: flex-start;
  }

  .casino-card {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .casino-card__top {
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 12px;
  }

  .casino-card__brand {
    min-width: 0;
    gap: 12px;
  }

  .casino-logo {
    width: 66px;
    height: 66px;
    border-radius: 18px;
  }

  .casino-card__score {
    align-self: flex-start;
    min-width: 68px;
    height: 38px;
    font-size: 0.94rem;
  }

  .button {
    width: 100%;
    min-width: 0;
  }

  .casino-card__footer {
    justify-content: stretch;
    margin-top: 12px;
    padding: 10px;
  }

  .casino-card__footer .button {
    width: 100% !important;
    min-width: 0 !important;
    max-width: none;
    flex: 1 1 auto;
  }

  .casino-card__payments-summary {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .casino-card__payments-summary strong {
    margin-left: 0;
  }

  .casino-card__payments,
  .casino-card__bonus,
  .casino-card h3,
  .casino-card__list,
  .casino-card__top {
    grid-column: 1;
  }
}

@media (max-width: 420px) {
  .container {
    width: min(100% - 20px, 1180px);
  }

  .hero-topbar__nav {
    gap: 14px;
  }

  .hero-topbar__nav a,
  .hero-topbar__status {
    font-size: 0.8rem;
  }

  .hero h1 {
    font-size: clamp(2.55rem, 12.8vw, 3.35rem);
  }

  .hero-showcase__card,
  .casino-card {
    padding: 16px;
  }

  .hero-showcase__center {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 12px;
  }

  .hero-showcase__logo:has(img) img {
    width: 58px;
    height: 58px;
  }

  .hero-showcase h2,
  .casino-card h3 {
    font-size: 1.45rem;
    overflow-wrap: anywhere;
  }

  .faq-list summary {
    grid-template-columns: minmax(0, 1fr) 30px;
    padding: 14px 14px;
    column-gap: 12px;
  }
}
