@font-face {
  font-family: "Zona Pro";
  src: url("../fonts/zona-pro/zonapro-regular-webfont.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Zona Pro";
  src: url("../fonts/zona-pro/zonapro-semibold-webfont.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Zona Pro";
  src: url("../fonts/zona-pro/zonapro-bold-webfont.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Zona Pro";
  src: url("../fonts/zona-pro/zonapro-extrabold-webfont.woff2") format("woff2");
  font-style: normal;
  font-weight: 800;
  font-display: swap;
}

:root {
  --page-bg: #151a1f;
  --header-bg: #151a1f;
  --panel-bg: #0d1318;
  --panel-soft: #203b40;
  --heading-bg: rgba(16, 23, 29, 0.5);
  --control-bg: #10171d;
  --light-bg: #35444e;
  --white: #fff;
  --text: #fff;
  --muted: #94aeb4;
  --dark-text: #fff;
  --accent: #2bc69d;
  --accent-hover: #61ddbc;
  --accent-soft: #6bd7ba;
  --accent-bright: #1fe988;
  --accent-highlight: #01dcba;
  --accent-pale: #d9fff5;
  --signal-blue: #2bc69d;
  --signal-blue-hover: #61ddbc;
  --signal-blue-soft: #94aeb4;
  --brand-green: #2bc69d;
  --brand-green-hover: #61ddbc;
  --brand-green-active: #1e6f5c;
  --line: rgba(231, 190, 74, 0.16);
  --locale-gold: #e7be4a;
  --radius: 8px;
  --shadow: 0 12px 28px rgba(9, 15, 20, 0.2);
  --header-height: 75px;
  --site-max-width: 1490px;
  --page-gutter: 32px;
  --left-column: 240px;
  --right-column: 0px;
  --vave-section-gap: 28px;
  --content-flow-gap: var(--vave-section-gap);
  --vave-live: #ff4e4e;
  --vave-success: #1fe988;
  --vave-surface-glass: rgba(16, 23, 29, 0.5);
  --vave-surface-soft: rgba(255, 255, 255, 0.05);
}

html {
  background: var(--page-bg);
  scrollbar-color: rgba(43, 198, 157, 0.5) transparent;
  scrollbar-width: thin;
}

body,
button,
input,
select,
textarea {
  font-family: "Zona Pro", sans-serif;
}

body {
  color: var(--text);
  background:
    radial-gradient(100% 180% at 0% 0%, #30434a 0%, #171f25 62%, #11161b 100%)
    fixed;
  font-size: 14px;
  line-height: 1.25;
}

button:focus-visible,
a:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* Header */
.topbar {
  height: var(--header-height);
  background:
    radial-gradient(100% 400% at 0% 0%, #2d4147 0%, #151c21 78%);
  border-bottom: 1px solid rgba(231, 190, 74, 0.16);
  box-shadow: 0 8px 28px rgba(9, 15, 20, 0.18);
}

.topbar::after {
  background: var(--locale-gold);
  opacity: 0.82;
}

.nav {
  max-width: var(--site-max-width);
  padding-inline: var(--page-gutter);
  gap: 32px;
}

.brand {
  flex: 0 0 96px;
}

.brand-logo {
  width: 88px;
  max-height: 30px;
  object-fit: contain;
  object-position: left center;
}

.nav-links {
  gap: 28px;
}

.nav-links a {
  min-height: 35px;
  padding: 0;
  color: #fff;
  background: transparent;
  border: 0;
  border-radius: 0;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 35px;
  text-transform: none;
  transition:
    color 220ms cubic-bezier(0.32, 0.72, 0, 1),
    opacity 220ms cubic-bezier(0.32, 0.72, 0, 1),
    transform 220ms cubic-bezier(0.32, 0.72, 0, 1);
}

.header-time {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 66px;
  min-height: 38px;
  padding-inline: 12px;
  line-height: 1;
  text-align: center;
}

.header-time-value {
  color: #f4f7f7;
  font-size: 13px;
  font-weight: 600;
}

.header-city {
  display: block;
  max-width: 78px;
  margin-top: 5px;
  overflow: hidden;
  color: rgba(148, 174, 180, 0.78);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links .state-active {
  color: var(--accent);
  background: transparent;
  border-color: transparent;
  transform: translateY(-1px);
}

.nav-links .state-active::after {
  right: 0;
  bottom: -13px;
  left: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 2px 2px 0 0;
}

.nav-link-icon {
  display: none;
}

.header-tools,
.auth {
  gap: 10px;
}

.tool-button,
.language-switch,
.btn {
  min-height: 40px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-transform: none;
  transition:
    color 220ms cubic-bezier(0.32, 0.72, 0, 1),
    background-color 220ms cubic-bezier(0.32, 0.72, 0, 1),
    border-color 220ms cubic-bezier(0.32, 0.72, 0, 1),
    transform 220ms cubic-bezier(0.32, 0.72, 0, 1);
}

.tool-button,
.language-switch {
  color: var(--muted);
  background: transparent;
  border: 1px solid transparent;
  box-shadow: none;
}

.tool-button:hover,
.language-switch:hover,
.language-switch:focus-visible {
  color: #fff;
  background: var(--vave-surface-soft);
  border-color: rgba(43, 198, 157, 0.45);
  box-shadow: none;
}

@property --vave-border-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

@keyframes vave-border-run {
  to {
    --vave-border-angle: 360deg;
  }
}

.header-tools .tool-button {
  --vave-button-fill: linear-gradient(180deg, #253941, #1c2d35);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  min-width: 92px;
  min-height: 36px;
  height: 36px;
  padding: 0 14px;
  white-space: nowrap;
  color: #eafff9;
  border: 1px solid transparent;
  border-radius: 8px;
  background:
    var(--vave-button-fill) padding-box,
    conic-gradient(
      from var(--vave-border-angle),
      rgba(43, 198, 157, 0.24) 0deg 246deg,
      #dffef6 278deg,
      #22c99d 318deg,
      rgba(43, 198, 157, 0.24) 360deg
    ) border-box;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 0 14px rgba(43, 198, 157, 0.28);
  font-size: 12px;
  letter-spacing: 0.01em;
  animation: vave-border-run 2.8s linear infinite;
}

.header-tools .tool-button--live-casino {
  --vave-button-fill: linear-gradient(180deg, #39d8ad, var(--accent));
  min-width: 112px;
  color: #10251f;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    0 0 17px rgba(43, 198, 157, 0.42);
}

.header-tools .tool-button--slots {
  min-width: 72px;
}

.header-tools .tool-button:hover,
.header-tools .tool-button:focus-visible {
  --vave-button-fill: linear-gradient(180deg, #65ebc6, #43d9b0);
  color: #10251f;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.34),
    0 0 20px rgba(43, 198, 157, 0.5);
  transform: translateY(-1px);
}

.header-tools .tool-button:focus-visible {
  outline: 2px solid #eafff9;
  outline-offset: 2px;
}

.language-flag-de {
  position: relative;
  display: inline-block;
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  overflow: hidden;
  background: #fff url("../img/vave/content/germany-flag-round.svg") center / cover no-repeat;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(43, 198, 157, 0.08), 0 3px 9px rgba(0, 0, 0, 0.24);
}

.auth .btn {
  min-width: 82px;
  padding-inline: 16px;
}

.auth .hot {
  color: var(--accent);
  background: transparent;
  border: 2px solid var(--accent);
  box-shadow: none;
}

.auth .ghost {
  color: #fff;
  background: var(--accent);
  border: 1px solid var(--accent);
  box-shadow: none;
}

.auth .hot:hover,
.auth .ghost:hover {
  color: #fff;
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  transform: translateY(-1px);
}

.auth .btn:active,
.tool-button:active {
  transform: scale(0.98);
}

/* Main layout: one left rail, no opposite aside. */
.page-shell,
.page-shell.state-left-collapsed,
.page-shell.state-right-collapsed,
.page-shell.state-left-collapsed.state-right-collapsed,
.page-shell.flag-left-sidebar-collapsed,
.page-shell.flag-right-sidebar-collapsed,
.page-shell.flag-left-sidebar-collapsed.flag-right-sidebar-collapsed {
  grid-template-columns: var(--left-column) minmax(0, 1fr);
  max-width: var(--site-max-width);
  padding: 20px var(--page-gutter) 48px;
  gap: 32px;
}

.right-sidebar {
  display: none !important;
}

.pin-content {
  display: grid;
  width: 100%;
  max-width: none;
  gap: var(--vave-section-gap);
}

/* Left sidebar */
.pin-sidebar {
  top: calc(var(--header-height) + 20px);
  gap: 16px;
  max-height: calc(100dvh - var(--header-height) - 32px);
  padding: 16px;
  background: rgba(53, 68, 78, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  box-shadow: none;
}

.sports-sidebar,
.sports-sidebar-body {
  gap: 12px;
}

.sport-side-toggle {
  justify-content: flex-start;
  min-height: 40px;
  padding: 0 12px;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0;
  box-shadow: none;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sport-side-toggle:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}

.sports-quick-links {
  gap: 4px;
}

.sports-quick-row,
.sport-row {
  min-height: 44px;
  padding: 0 10px;
  gap: 10px;
  color: #fff;
  background: transparent;
  border: 0;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.25;
  transition:
    color 220ms cubic-bezier(0.32, 0.72, 0, 1),
    background-color 220ms cubic-bezier(0.32, 0.72, 0, 1),
    transform 220ms cubic-bezier(0.32, 0.72, 0, 1);
}

.sports-quick-row:hover,
.sports-quick-row.state-open,
.sport-row:hover {
  color: var(--accent);
  background: rgba(16, 23, 29, 0.42);
  border-color: transparent;
  transform: translateX(2px);
}

.sports-quick-row.state-open {
  color: var(--vave-live);
}

.sports-quick-icon,
.sport-row-icon {
  color: currentColor;
}

.sports-row-arrow {
  flex-basis: 28px;
  background: transparent;
  border: 0;
}

.sports-row-arrow::after,
.sport-row-chevron::after {
  border-color: currentColor;
}

.top-game-card,
.sports-catalog {
  overflow: hidden;
  background: var(--panel-bg);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  box-shadow: none;
}

.top-game-header,
.sports-tabs,
.sports-summary,
.sports-list-heading {
  color: #fff;
  background: #22474f;
  border-color: rgba(255, 255, 255, 0.08);
}

.top-game-body,
.sports-list {
  color: #fff;
  background: #10171d;
}

.match-status,
.match-league,
.sports-list-heading {
  color: var(--muted);
}

.match-odds a,
.match-details {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.08);
  border-radius: 6px;
}

.match-odds a:hover,
.match-details:hover {
  color: #fff;
  background: var(--accent);
}

/* Vave donor navigation replaces the legacy sports widget. */
.brand-side-menu {
  order: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand-side-app,
.brand-side-wheel,
.brand-side-link {
  text-decoration: none;
}

.brand-side-app {
  position: relative;
  display: flex;
  min-height: 76px;
  overflow: hidden;
  padding: 15px 82px 13px 14px;
  color: #fff;
  background: #22474f;
  border: 1px solid rgba(43, 198, 157, 0.2);
  border-radius: 6px;
  box-shadow: 0 3px 0 rgba(9, 15, 20, 0.28);
}

.brand-side-app:hover,
.brand-side-app:focus-visible {
  color: #fff;
  background: #28545d;
}

.brand-side-app-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
}

.brand-side-app strong {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
}

.brand-side-app small {
  margin-top: 6px;
  color: #94aeb4;
  font-size: 10px;
  line-height: 1.2;
  white-space: nowrap;
}

.brand-side-app-media {
  position: absolute;
  right: 7px;
  bottom: 0;
  width: 70px;
  height: 69px;
  overflow: hidden;
  border-radius: 7px 7px 0 0;
}

.brand-side-app-media img {
  display: block;
  width: 100%;
  height: auto;
}

.brand-side-wheel {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 52px;
  margin-top: 32px;
  padding: 0 14px 0 58px;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(90deg, #12d4c3 0%, #4f91dc 100%);
  border-radius: 7px;
  box-shadow: 0 6px 16px rgba(9, 15, 20, 0.16);
  isolation: isolate;
}

.brand-side-wheel:hover,
.brand-side-wheel:focus-visible {
  color: #fff;
  filter: brightness(1.07);
}

.brand-side-wheel strong {
  position: relative;
  z-index: 3;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
}

.brand-side-wheel-art {
  position: absolute;
  left: -31px;
  bottom: -20px;
  width: 74px;
  height: 76px;
  pointer-events: none;
  transition: transform 220ms ease;
}

.brand-side-wheel:hover .brand-side-wheel-art,
.brand-side-wheel:focus-visible .brand-side-wheel-art {
  transform: translateX(4px) scale(1.03);
}

.brand-side-wheel-art img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-side-wheel-disc {
  z-index: 1;
}

.brand-side-wheel-frame {
  z-index: 2;
}

.brand-side-nav-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 28px;
  margin: 30px 0 10px;
  color: #94aeb4;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
}

.brand-side-nav-heading > span {
  width: 8px;
  height: 8px;
  margin-right: 3px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(-45deg) translateY(2px);
}

.brand-side-links {
  display: grid;
  gap: 2px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.brand-side-link {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr) auto;
  align-items: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 3px;
  color: #fff;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  transition:
    color 180ms cubic-bezier(0.32, 0.72, 0, 1),
    background-color 180ms cubic-bezier(0.32, 0.72, 0, 1),
    transform 180ms cubic-bezier(0.32, 0.72, 0, 1);
}

.brand-side-link svg {
  display: block;
  width: 20px;
  height: 20px;
  color: currentColor;
  fill: currentColor;
}

.brand-side-link:hover,
.brand-side-link:focus-visible {
  color: var(--accent);
  background: rgba(16, 23, 29, 0.35);
  transform: translateX(2px);
}

.brand-side-link--live {
  color: var(--vave-live);
}

.brand-side-badge {
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  color: #fff;
  background: var(--accent);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 600;
  line-height: 1;
}

/* The article navigation remains at the bottom of the left rail. */
.pin-side-nav {
  order: 2;
  background: transparent;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0;
  box-shadow: none;
}

.pin-side-nav-toggle {
  min-height: 44px;
  padding: 0;
  color: var(--muted);
  background: transparent;
  border: 0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pin-side-links {
  gap: 2px;
  padding: 4px 0 0;
  color: var(--muted);
  background: transparent;
}

.pin-side-links a {
  padding: 7px 8px;
  border-radius: 6px;
  font-size: 12px;
  line-height: 1.35;
}

.pin-side-links a:hover,
.pin-side-links a:focus-visible {
  color: var(--accent);
  background: rgba(16, 23, 29, 0.45);
}

/* Hero and promotional surfaces */
.hero {
  min-height: 500px;
  margin-bottom: 20px;
  padding: 40px 48px;
  background: #10171d;
  border: 0;
  border-radius: 8px;
  box-shadow: none;
}

.hero::after {
  background:
    linear-gradient(90deg, rgba(16, 23, 29, 0.92) 0%, rgba(16, 23, 29, 0.68) 48%, rgba(16, 23, 29, 0.08) 100%),
    linear-gradient(180deg, rgba(25, 10, 52, 0.14), rgba(8, 12, 21, 0.3));
}

.hero-img {
  border-radius: 8px;
  filter: saturate(0.95) contrast(1.03);
}

.hero-copy {
  width: min(560px, 58%);
}

.hero h1 {
  color: #fff;
  font-size: clamp(32px, 3vw, 40px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.16;
  text-transform: none;
}

.hero p {
  max-width: 54ch;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.55;
}

.pin-btn,
.section-cta-link,
.promo-banner-cta,
.section-bonus-cta,
.app-banner-btn,
.registration-card .signup-button,
.bet-slip .signup-button {
  min-height: 40px;
  padding-inline: 16px;
  color: #fff;
  background: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 8px;
  box-shadow: none;
  font-size: 14px;
  font-weight: 700;
  text-transform: none;
  transition:
    background-color 220ms cubic-bezier(0.32, 0.72, 0, 1),
    border-color 220ms cubic-bezier(0.32, 0.72, 0, 1),
    transform 220ms cubic-bezier(0.32, 0.72, 0, 1);
}

.pin-btn:hover,
.section-cta-link:hover,
.promo-banner-cta:hover,
.section-bonus-cta:hover,
.app-banner-btn:hover {
  color: #fff;
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  transform: translateY(-1px);
}

.pin-btn:active,
.section-cta-link:active,
.promo-banner-cta:active,
.section-bonus-cta:active,
.app-banner-btn:active {
  transform: scale(0.98);
}

.promo-banner-card,
.platform-banner-card,
.editorial-media,
.inline-editorial-media {
  background: #10171d;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  box-shadow: none;
}

/* Editorial content */
.pin-section,
.content-section,
.reviews-section,
.home-app-banner,
.bonus-banner-section,
.bonus-final-cta,
.article-content-flow {
  color: #fff;
  background: rgba(16, 23, 29, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  box-shadow: none;
}

.article-content-flow {
  background: transparent;
  border: 0;
  gap: var(--vave-section-gap);
}

.pin-content > *,
.article-content-flow > * {
  margin-block: 0 !important;
}

.pin-section,
.content-section {
  margin-bottom: 20px;
  padding: 20px;
}

.pin-section h2,
.content-section h2,
.reviews-section > h2 {
  margin: 0 0 20px;
  padding: 0;
  color: #fff;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.25;
  text-transform: none;
}

.pin-section h2::before,
.content-section h2::before,
.reviews-section > h2::before {
  display: none;
}

.pin-section h3,
.content-section h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 26px 0 12px;
  color: #fff;
  font-size: clamp(16px, 1.5vw, 18px);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.35;
  text-wrap: balance;
}

.pin-section h3::before,
.content-section h3::before {
  width: 3px;
  height: 18px;
  flex: 0 0 3px;
  background: linear-gradient(180deg, #3ed9b1, #248cb8);
  border-radius: 999px;
  box-shadow: 0 0 12px rgba(43, 198, 157, 0.28);
  content: "";
}

.pin-section p,
.content-section p,
.pin-section li,
.content-section li {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.6;
}

.pin-section a:not(.pin-btn):not(.section-cta-link):not(.app-download-btn):not(.app-banner-btn),
.content-section a:not(.pin-btn):not(.section-cta-link):not(.app-download-btn):not(.app-banner-btn) {
  color: var(--accent);
}

.brand-editorial-figure {
  position: relative;
  margin: 20px 0 24px;
  overflow: hidden;
  background: #0b1218;
  border: 1px solid rgba(43, 198, 157, 0.26);
  border-radius: 10px;
  box-shadow:
    0 16px 34px rgba(3, 10, 14, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.brand-editorial-figure img {
  display: block;
  width: 100%;
  height: auto;
}

.brand-editorial-figure--wide img {
  aspect-ratio: 5 / 2;
  object-fit: cover;
}

.brand-list-feature {
  position: relative;
  isolation: isolate;
  margin: 0 0 28px;
  padding: clamp(14px, 2vw, 20px);
  overflow: hidden;
  background: #0e171e;
  border: 1px solid rgba(43, 198, 157, 0.2);
  border-radius: 10px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.brand-list-feature::before {
  position: absolute;
  z-index: 1;
  inset: 0 auto 0 0;
  width: 74%;
  background: linear-gradient(
    90deg,
    rgba(8, 18, 24, 0.98) 0%,
    rgba(8, 18, 24, 0.94) 68%,
    rgba(8, 18, 24, 0.58) 84%,
    rgba(8, 18, 24, 0) 100%
  );
  pointer-events: none;
  content: "";
}

.brand-list-feature__content {
  position: relative;
  z-index: 2;
  width: min(68%, 720px);
  min-width: 0;
}

.brand-list-feature--character-right .brand-list-feature__content,
.brand-list-feature--character-left .brand-list-feature__content {
  width: min(74%, 780px);
}

.brand-list-feature--character-right::before {
  inset: 0 auto 0 0;
  width: 82%;
}

.brand-list-feature--character-left::before {
  inset: 0 0 0 auto;
  width: 82%;
  background: linear-gradient(
    270deg,
    rgba(8, 18, 24, 0.98) 0%,
    rgba(8, 18, 24, 0.94) 68%,
    rgba(8, 18, 24, 0.58) 84%,
    rgba(8, 18, 24, 0) 100%
  );
}

.brand-list-feature--character-left .brand-list-feature__content {
  margin-left: auto;
}

.brand-list-feature--mirror-media .brand-list-feature__media > img:not(.brand-media-brand) {
  transform: scaleX(-1);
}

.brand-list-feature__content > p:first-child {
  margin-top: 0;
}

.brand-list-feature__content > ul {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.brand-list-feature__content > ul > li {
  position: relative;
  margin: 0;
  padding: 11px 12px 11px 40px;
  background: rgba(3, 20, 27, 0.7);
  border: 1px solid rgba(43, 198, 157, 0.24);
  border-radius: 7px;
  transition: border-color 220ms ease, background-color 220ms ease, transform 220ms ease;
}

.brand-list-feature__content > ul > li::before {
  position: absolute;
  top: 13px;
  left: 13px;
  display: grid;
  place-items: center;
  width: 16px;
  height: 16px;
  color: #06211a;
  background: #35d0aa;
  border-radius: 5px;
  font-size: 9px;
  font-weight: 800;
  line-height: 1;
  content: "✓";
}

.brand-list-feature__content > ul > li:hover {
  background: rgba(5, 29, 37, 0.88);
  border-color: rgba(62, 217, 177, 0.5);
  transform: translateX(2px);
}

.brand-list-feature__media {
  position: absolute;
  z-index: 0;
  inset: 0;
  margin: 0;
  overflow: hidden;
  background: #0a1117;
  border: 0;
  border-radius: inherit;
}

.brand-list-feature__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

@media (max-width: 760px) {
  .brand-editorial-figure--wide img {
    aspect-ratio: 16 / 9;
  }

  .brand-list-feature {
    display: block;
  }

  .brand-list-feature::before {
    display: block;
    width: 100%;
    background: rgba(7, 17, 23, 0.84);
  }

  .brand-list-feature__content {
    width: 100%;
  }

  .brand-list-feature--character-right .brand-list-feature__content,
  .brand-list-feature--character-left .brand-list-feature__content {
    width: 100%;
    margin-left: 0;
  }

  .brand-list-feature--character-right::before,
  .brand-list-feature--character-left::before {
    inset: 0;
    width: 100%;
    background: rgba(7, 17, 23, 0.84);
  }

  .brand-list-feature__media {
    position: absolute;
    inset: 0;
    width: 100%;
    margin: 0;
    border: 0;
    border-radius: inherit;
  }

  .brand-list-feature__media img {
    aspect-ratio: auto;
    object-position: 78% top;
  }

  .brand-list-feature--character-right .brand-list-feature__media img {
    object-position: right center;
  }

  .brand-list-feature--character-left .brand-list-feature__media img {
    object-position: left center;
  }
}

/* German Gold: Vave teal with one restrained locale accent. */
:root {
  --locale-gold: #f0c75e;
  --locale-gold-soft: #e7be4a;
}

body {
  background:
    radial-gradient(circle at 93% 8%, rgba(240, 199, 94, 0.09), transparent 30rem),
    radial-gradient(100% 180% at 0% 0%, #30434a 0%, #171f25 62%, #11161b 100%) fixed;
}

.topbar {
  background:
    radial-gradient(circle at 76% -180%, rgba(240, 199, 94, 0.18), transparent 42%),
    linear-gradient(180deg, #202d32, #151b20);
  border-bottom-color: rgba(240, 199, 94, 0.22);
}

.topbar::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  height: 2px;
  background: var(--locale-gold);
  box-shadow: none;
  opacity: 0.82;
  content: "";
}

.nav-links .state-active {
  color: var(--locale-gold);
}

.nav-links .state-active::after {
  height: 3px;
  background: var(--locale-gold);
  box-shadow: none;
}

.language-switch:hover,
.language-switch:focus-visible {
  border-color: rgba(240, 199, 94, 0.52);
  box-shadow: 0 0 0 1px rgba(240, 199, 94, 0.14);
}

.language-flag-de {
  box-shadow:
    0 0 0 2px rgba(240, 199, 94, 0.13),
    0 4px 11px rgba(0, 0, 0, 0.3);
}

.auth .hot {
  color: var(--locale-gold);
  border-color: rgba(240, 199, 94, 0.68);
}

.auth .hot:hover {
  color: #17120a;
  background: var(--locale-gold);
  border-color: var(--locale-gold);
}

.hero {
  border: 1px solid rgba(240, 199, 94, 0.2);
  box-shadow:
    inset 0 -2px 0 rgba(240, 199, 94, 0.28),
    0 18px 46px rgba(0, 0, 0, 0.16);
}

.hero h1 {
  text-shadow: 0 3px 24px rgba(0, 0, 0, 0.42);
}

.hero-rating {
  color: var(--locale-gold);
}

.pin-section,
.content-section,
.reviews-section,
.home-app-banner,
.bonus-banner-section,
.bonus-final-cta {
  background:
    radial-gradient(circle at 100% 0, rgba(240, 199, 94, 0.035), transparent 30%),
    rgba(16, 23, 29, 0.76);
  border-color: rgba(240, 199, 94, 0.1);
  box-shadow: inset 2px 0 0 rgba(240, 199, 94, 0.24);
}

.pin-section h3::before,
.content-section h3::before {
  background: var(--locale-gold);
  box-shadow: 0 0 12px rgba(240, 199, 94, 0.2);
}

.brand-imported-section > h2::before {
  filter: drop-shadow(0 0 6px rgba(240, 199, 94, 0.28));
}

.brand-editorial-figure,
.brand-list-feature {
  border-color: rgba(240, 199, 94, 0.22);
  box-shadow:
    inset 0 2px 0 rgba(240, 199, 94, 0.1),
    0 16px 34px rgba(3, 10, 14, 0.24);
}

.brand-list-feature__content > :is(ul, ol) > li {
  border-color: rgba(240, 199, 94, 0.17);
}

.brand-list-feature__content > :is(ul, ol) > li:hover {
  border-color: rgba(240, 199, 94, 0.42);
}

.brand-info-card {
  border-color: rgba(240, 199, 94, 0.17);
}

.brand-info-card:hover {
  border-color: rgba(240, 199, 94, 0.42);
}

.table-wrap,
.table-scroll {
  border-color: rgba(240, 199, 94, 0.3);
  scrollbar-color: rgba(240, 199, 94, 0.65) #101a20;
}

.table-wrap thead th,
.table-scroll thead th {
  background:
    linear-gradient(100deg, rgba(240, 199, 94, 0.15), rgba(240, 199, 94, 0.06)),
    #182a31;
  border-bottom-color: rgba(240, 199, 94, 0.5);
}

.table-wrap tbody tr:nth-child(even) td,
.table-scroll tbody tr:nth-child(even) td,
.table-wrap table > tr:nth-of-type(even) td,
.table-scroll table > tr:nth-of-type(even) td {
  background: rgba(240, 199, 94, 0.025);
}

.table-wrap tbody tr:hover td,
.table-scroll tbody tr:hover td,
.table-wrap table > tr:hover td,
.table-scroll table > tr:hover td {
  background: rgba(240, 199, 94, 0.075);
}

.table-wrap::-webkit-scrollbar-thumb,
.table-scroll::-webkit-scrollbar-thumb {
  background: rgba(240, 199, 94, 0.68);
}

.footer-inner {
  border-top: 1px solid rgba(240, 199, 94, 0.2);
  box-shadow:
    inset 0 2px 0 rgba(240, 199, 94, 0.1),
    0 -18px 46px rgba(0, 0, 0, 0.08);
}

/* One locale accent: a single solid gold line, never a tricolor strip. */
:root {
  --locale-gold: #f4c84f;
}

.topbar {
  border-bottom-color: transparent;
}

.topbar::after {
  right: 0;
  bottom: 0;
  left: 0;
  width: auto;
  height: 2px;
  background: var(--locale-gold);
  box-shadow: none;
  opacity: 0.82;
}

.nav-links .state-active {
  color: #f8d977;
  border-color: transparent;
}

.nav-links .state-active::after {
  height: 3px;
  background: var(--locale-gold);
  box-shadow: none;
}

@media (max-width: 900px) {
  .topbar {
    background: rgba(24, 42, 49, 0.98);
    border-bottom-color: transparent;
    box-shadow: 0 10px 28px rgba(2, 10, 13, 0.34);
  }

  .topbar::after {
    right: 0;
    bottom: 0;
    left: 0;
    width: auto;
    height: 2px;
    background: var(--locale-gold);
    opacity: 0.86;
  }

  .mobile-burger {
    background: rgba(244, 200, 79, 0.07);
    border: 1px solid rgba(244, 200, 79, 0.34);
  }

  .mobile-burger:hover,
  .mobile-burger:focus-visible {
    background: rgba(244, 200, 79, 0.13);
    border-color: rgba(244, 200, 79, 0.62);
  }

  .mobile-burger span {
    background: #f8d977;
  }

  .mobile-menu {
    background:
      radial-gradient(circle at 15% 0, rgba(72, 137, 137, 0.2), transparent 34%),
      linear-gradient(180deg, #203841 0%, #172b33 42%, #101e25 100%);
    border-right-color: rgba(244, 200, 79, 0.58);
    box-shadow: 24px 0 54px rgba(0, 0, 0, 0.46);
  }

  .brand-mobile-drawer-header {
    background: rgba(28, 49, 57, 0.97);
    border-bottom-color: rgba(244, 200, 79, 0.3);
  }

  .brand-mobile-drawer-close {
    color: #f8d977;
    background: rgba(244, 200, 79, 0.07);
    border: 1px solid rgba(244, 200, 79, 0.26);
  }

  .mobile-menu .brand-mobile-drawer-actions > a {
    background: rgba(27, 64, 69, 0.94);
    border-color: rgba(244, 200, 79, 0.38);
  }

  .mobile-menu .brand-mobile-drawer-actions > .ghost {
    color: #172026;
    background: var(--locale-gold);
    border-color: var(--locale-gold);
  }

  .brand-mobile-primary {
    background: rgba(8, 25, 31, 0.78);
    border-color: rgba(244, 200, 79, 0.34);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  }

  .mobile-menu .brand-mobile-primary-link {
    color: #c7d9dd;
  }

  .mobile-menu .brand-mobile-primary-link:hover,
  .mobile-menu .brand-mobile-primary-link:focus-visible {
    color: #fff;
    background: rgba(244, 200, 79, 0.1);
    outline-color: rgba(244, 200, 79, 0.56);
  }

  .mobile-menu .brand-mobile-primary-link[aria-current="page"],
  .mobile-menu .brand-mobile-primary-link.state-active {
    color: #fff8df;
    background: rgba(244, 200, 79, 0.16);
    box-shadow: inset 0 0 0 1px rgba(244, 200, 79, 0.4);
  }

  .mobile-menu .brand-mobile-primary-link[aria-current="page"]::after,
  .mobile-menu .brand-mobile-primary-link.state-active::after {
    height: 3px;
    background: var(--locale-gold);
    box-shadow: none;
  }

  .mobile-menu .brand-side-app {
    background:
      radial-gradient(circle at 0 0, rgba(244, 200, 79, 0.12), transparent 46%),
      #28515a;
    border-color: rgba(244, 200, 79, 0.4);
  }

  .mobile-menu .brand-side-wheel {
    color: #fff8df;
    background: linear-gradient(135deg, #28565b, #173740);
    border: 1px solid rgba(244, 200, 79, 0.48);
  }

  .mobile-menu .brand-side-nav-heading {
    color: rgba(248, 217, 119, 0.9);
  }

  .mobile-menu .brand-side-link:hover,
  .mobile-menu .brand-side-link:focus-visible {
    background: rgba(244, 200, 79, 0.09);
  }

  .mobile-menu .brand-side-link--live {
    color: #f4f8f9;
  }

  .mobile-menu .brand-side-link svg {
    color: var(--locale-gold);
  }
}

/* Final aside cascade: desktop rail and the mobile drawer share the gold accent. */
.pin-sidebar {
  background:
    radial-gradient(circle at 100% 0, rgba(240, 199, 94, 0.065), transparent 42%),
    rgba(53, 68, 78, 0.76);
  border-color: rgba(240, 199, 94, 0.17);
  box-shadow: inset 0 1px 0 rgba(240, 199, 94, 0.09);
}

.brand-side-app {
  background:
    radial-gradient(circle at 0 0, rgba(240, 199, 94, 0.08), transparent 46%),
    #22474f;
  border-color: rgba(240, 199, 94, 0.25);
}

.brand-side-wheel {
  border: 1px solid rgba(240, 199, 94, 0.26);
}

.brand-side-nav-heading,
.pin-side-nav-toggle {
  color: rgba(240, 199, 94, 0.72);
}

.pin-side-nav {
  border-top-color: rgba(240, 199, 94, 0.18);
}

@media (max-width: 900px) {
  .mobile-menu {
    background:
      radial-gradient(120% 50% at 0 0, rgba(240, 199, 94, 0.08), transparent 70%),
      #192832;
    border-right-color: rgba(240, 199, 94, 0.38);
  }

  .brand-mobile-drawer-header {
    border-bottom-color: rgba(240, 199, 94, 0.14);
  }

  .brand-mobile-primary {
    border-color: rgba(240, 199, 94, 0.18);
  }

  .mobile-menu .brand-mobile-primary-link[aria-current="page"]::after,
  .mobile-menu .brand-mobile-primary-link.state-active::after {
    background: var(--locale-gold);
    box-shadow: 0 0 8px rgba(240, 199, 94, 0.34);
  }

  .mobile-menu .brand-side-app {
    background:
      radial-gradient(circle at 0 0, rgba(240, 199, 94, 0.08), transparent 46%),
      #22474f;
    border-color: rgba(240, 199, 94, 0.24);
  }

  .mobile-menu .brand-side-wheel {
    border-color: rgba(240, 199, 94, 0.24);
  }

  .mobile-menu .brand-side-nav-heading {
    color: rgba(240, 199, 94, 0.68);
  }
}

/* The same single gold accent continues through the desktop aside. */
.pin-sidebar {
  background:
    radial-gradient(circle at 100% 0, rgba(240, 199, 94, 0.065), transparent 42%),
    rgba(53, 68, 78, 0.76);
  border-color: rgba(240, 199, 94, 0.17);
  box-shadow: inset 0 1px 0 rgba(240, 199, 94, 0.09);
}

.brand-side-app {
  background:
    radial-gradient(circle at 0 0, rgba(240, 199, 94, 0.08), transparent 46%),
    #22474f;
  border-color: rgba(240, 199, 94, 0.25);
}

.brand-side-app:hover,
.brand-side-app:focus-visible {
  border-color: rgba(240, 199, 94, 0.46);
}

.brand-side-wheel {
  border: 1px solid rgba(240, 199, 94, 0.26);
  box-shadow:
    inset 0 1px 0 rgba(240, 199, 94, 0.12),
    0 6px 16px rgba(9, 15, 20, 0.16);
}

.brand-side-nav-heading,
.pin-side-nav-toggle {
  color: rgba(240, 199, 94, 0.72);
}

.pin-side-nav {
  border-top-color: rgba(240, 199, 94, 0.18);
}

@media (max-width: 900px) {
  .mobile-menu {
    background:
      radial-gradient(120% 50% at 0 0, rgba(240, 199, 94, 0.08), transparent 70%),
      #192832;
    border-right-color: rgba(240, 199, 94, 0.38);
  }

  .brand-mobile-drawer-header {
    border-bottom-color: rgba(240, 199, 94, 0.14);
  }

  .brand-mobile-primary {
    border-color: rgba(240, 199, 94, 0.18);
  }

  .mobile-menu .brand-mobile-primary-link[aria-current="page"]::after,
  .mobile-menu .brand-mobile-primary-link.state-active::after {
    background: var(--locale-gold);
    box-shadow: 0 0 8px rgba(240, 199, 94, 0.34);
  }

  .mobile-menu .brand-side-app {
    background:
      radial-gradient(circle at 0 0, rgba(240, 199, 94, 0.08), transparent 46%),
      #22474f;
    border-color: rgba(240, 199, 94, 0.24);
  }

  .mobile-menu .brand-side-wheel {
    border: 1px solid rgba(240, 199, 94, 0.24);
  }

  .mobile-menu .brand-side-nav-heading {
    color: rgba(240, 199, 94, 0.68);
  }
}

@media (max-width: 760px) {
  .topbar::after {
    background: var(--locale-gold);
  }

  .pin-section,
  .content-section,
  .reviews-section,
  .home-app-banner,
  .bonus-banner-section,
  .bonus-final-cta {
    box-shadow: inset 2px 0 0 rgba(240, 199, 94, 0.2);
  }
}

/* Full-bleed generated bonus and app banners */
.promo-banner-card::after {
  z-index: 2;
  background: linear-gradient(
    90deg,
    rgba(4, 8, 12, 0.9) 0%,
    rgba(4, 8, 12, 0.75) 34%,
    rgba(4, 8, 12, 0.2) 53%,
    transparent 70%
  );
}

.promo-banner-card.promo-copy-opposite::after {
  background: linear-gradient(
    270deg,
    rgba(4, 8, 12, 0.9) 0%,
    rgba(4, 8, 12, 0.75) 34%,
    rgba(4, 8, 12, 0.2) 53%,
    transparent 70%
  );
}

.promo-banner-image,
.promo-banner-card.promo-img-right .promo-banner-image {
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: none;
  transform: none;
}

.promo-banner-copy {
  position: relative;
  z-index: 3;
}

.platform-banner-card::after {
  z-index: 2;
  background:
    linear-gradient(
      90deg,
      rgba(4, 8, 12, 0.82) 0%,
      rgba(4, 8, 12, 0.58) 24%,
      rgba(4, 8, 12, 0.05) 41%,
      rgba(4, 8, 12, 0.05) 59%,
      rgba(4, 8, 12, 0.58) 76%,
      rgba(4, 8, 12, 0.82) 100%
    );
}

.platform-banner-image {
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: inherit;
  filter: none;
}

.platform-banner-card .app-banner-btn,
.platform-banner-card .app-banner-center {
  position: relative;
  z-index: 3;
}

.platform-banner-card .app-banner-btn,
.app-download-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 290px);
  min-width: 250px;
  min-height: 76px;
  padding: 12px 20px;
  gap: 16px;
  color: #42d7b2;
  background: rgba(17, 48, 51, 0.9);
  border: 1px solid rgba(66, 215, 178, 0.88);
  border-radius: 9px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  text-decoration: none;
}

.platform-banner-card .app-banner-btn:hover,
.app-download-btn:hover {
  color: #fff;
  background: rgba(28, 89, 82, 0.96);
  border-color: #65f1cc;
}

.platform-banner-card .app-banner-btn img,
.app-download-btn img {
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(77%) sepia(42%) saturate(692%) hue-rotate(112deg) brightness(91%) contrast(88%);
}

.platform-banner-card .app-banner-btn span,
.app-download-btn span {
  display: grid;
  justify-items: start;
  gap: 2px;
  min-width: 0;
  line-height: 1.08;
  text-align: left;
}

.platform-banner-card .app-banner-btn small,
.platform-banner-card .app-banner-btn strong,
.app-download-btn small,
.app-download-btn strong {
  color: inherit;
  font-size: 14px;
  font-weight: 850;
  letter-spacing: 0.01em;
  line-height: 1.08;
  text-transform: uppercase;
}

@media (max-width: 760px) {
  .platform-banner-card .app-banner-btn,
  .app-download-btn {
    width: 100%;
    min-width: 0;
    min-height: 66px;
    padding: 10px 14px;
    gap: 12px;
  }

  .platform-banner-card .app-banner-btn img,
  .app-download-btn img {
    flex-basis: 38px;
    width: 38px;
    height: 38px;
  }

  .platform-banner-card .app-banner-btn small,
  .platform-banner-card .app-banner-btn strong,
  .app-download-btn small,
  .app-download-btn strong {
    font-size: 12px;
  }

  .promo-banner-image,
  .promo-banner-card.promo-img-right .promo-banner-image {
    object-position: right top;
  }

  .promo-banner-card.promo-copy-opposite .promo-banner-image {
    object-position: left top;
  }
}

@media (min-width: 1025px) {
  .promo-banner-card,
  .platform-banner-card,
  .brand-editorial-figure--wide {
    height: 400px;
    min-height: 400px;
    max-height: 400px;
  }

  .brand-editorial-figure--wide > img:first-child {
    height: 100%;
    aspect-ratio: auto;
    object-fit: cover;
    object-position: center top;
  }
}

@media (max-width: 1024px) {
  .promo-banner-copy,
  .promo-banner-card.promo-copy-opposite .promo-banner-copy {
    background: rgb(9 18 25 / 78%);
  }
}

.table-wrap,
.table-wrap table,
.faq-item,
.review-card {
  color: #fff;
  background: #10171d;
  border-color: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  box-shadow: none;
}

.table-wrap th,
.table-wrap td {
  color: inherit;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.08);
}

.table-wrap th {
  color: #fff;
  background: #22474f;
  font-weight: 700;
}

.table-wrap td {
  color: rgba(255, 255, 255, 0.76);
}

.faq-item summary {
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
}

/* Footer and cookie surfaces */
.footer {
  margin-top: 20px;
  padding: 20px var(--page-gutter) 40px;
  color: #fff;
  background: transparent;
  border: 0;
}

.footer-inner {
  display: block;
  width: 100%;
  max-width: var(--site-max-width);
  margin: 0 auto;
  padding: 34px 32px 32px;
  overflow: hidden;
  background: #10171d;
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 10px;
  box-shadow: 0 18px 44px rgba(9, 15, 20, 0.16);
}

.brand-footer-menu {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  column-gap: clamp(32px, 4vw, 72px);
  row-gap: 32px;
  min-height: 260px;
}

.brand-footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
}

.brand-footer-column h2 {
  margin: 0 0 20px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.brand-footer-column a {
  display: block;
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.25;
  text-decoration: none;
  transition: color 180ms ease, transform 180ms ease;
}

.brand-footer-column a:hover,
.brand-footer-column a:focus-visible {
  color: var(--accent);
  transform: translateX(2px);
}

.brand-footer-crypto {
  display: grid;
  grid-template-columns: 245px minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  min-height: 86px;
  margin-top: 30px;
  padding: 16px 20px;
  background: #18232c;
  border: 1px solid rgba(255, 255, 255, 0.025);
  border-radius: 8px;
}

.brand-footer-crypto-title {
  color: #94aeb4;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
}

.brand-footer-crypto-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 0;
}

.brand-footer-crypto-icon {
  display: block;
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.brand-footer-crypto-icon:first-child {
  width: 130px;
}

.brand-footer-buy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 18px;
  color: #fff;
  background: var(--accent);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 180ms ease, transform 180ms ease;
}

.brand-footer-buy:hover,
.brand-footer-buy:focus-visible {
  color: #fff;
  background: var(--accent-hover);
  transform: translateY(-1px);
}

.brand-footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 28px;
  text-align: center;
}

.brand-footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 32px;
}

.brand-footer-brand img {
  display: block;
  object-fit: contain;
}

.brand-footer-bottom p {
  margin: 48px 0 20px;
  color: rgba(148, 174, 180, 0.72);
  font-size: 12px;
  line-height: 1.4;
}

.brand-footer-notice {
  display: grid;
  margin: 48px 0 20px;
  gap: 6px;
}

.brand-footer-bottom .brand-footer-notice p {
  margin: 0;
}

.brand-footer-age {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #fff;
  background: #ff5a47;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}

.brand-footer-validator {
  display: block;
  width: 100px;
  height: 49px;
  margin-top: 14px;
}

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

@media (max-width: 1180px) {
  .brand-footer-menu {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 36px 44px;
  }

  .brand-footer-crypto {
    grid-template-columns: 190px minmax(0, 1fr) auto;
    gap: 16px;
  }

  .brand-footer-crypto-icons {
    gap: 8px;
  }
}

@media (max-width: 900px) {
  .brand-footer-menu {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 36px 48px;
    min-height: 0;
  }

  .brand-footer-crypto {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .brand-footer-crypto-icons {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
  }
}

@media (max-width: 620px) {
  .footer {
    padding: 12px 12px 28px;
  }

  .footer-inner {
    padding: 26px 20px 28px;
  }

  .brand-footer-menu {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .brand-footer-column h2 {
    margin-bottom: 14px;
    font-size: 16px;
  }

  .brand-footer-column a {
    margin-bottom: 12px;
  }

  .brand-footer-crypto {
    grid-template-columns: 1fr;
    margin-top: 24px;
    padding: 18px;
  }

  .brand-footer-crypto-icons {
    grid-column: 1;
    grid-row: auto;
  }

  .brand-footer-buy {
    width: 100%;
  }

  .brand-footer-bottom p {
    margin-top: 34px;
  }

  .brand-footer-notice {
    margin-top: 34px;
  }
}

.cookie {
  color: #fff;
  background: rgba(16, 23, 29, 0.92);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 -10px 32px rgba(9, 15, 20, 0.24);
}

.cookie button {
  min-height: 40px;
  padding-inline: 16px;
  color: #fff;
  background: var(--accent);
  border: 0;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
}

@media (max-width: 1180px) {
  :root {
    --page-gutter: 20px;
    --left-column: 220px;
  }

  .page-shell,
  .page-shell.state-left-collapsed,
  .page-shell.state-right-collapsed,
  .page-shell.state-left-collapsed.state-right-collapsed,
  .page-shell.flag-left-sidebar-collapsed,
  .page-shell.flag-right-sidebar-collapsed,
  .page-shell.flag-left-sidebar-collapsed.flag-right-sidebar-collapsed {
    gap: 20px;
  }

  .nav {
    gap: 20px;
  }

  .nav-links {
    gap: 16px;
  }

  .nav-links a {
    font-size: 13px;
  }

  .header-tools .tool-button {
    min-width: 68px;
    padding-inline: 10px;
    font-size: 11px;
  }

  .header-tools .tool-button--live-casino {
    min-width: 98px;
  }
}

@media (max-width: 960px) {
  :root {
    --header-height: 60px;
    --page-gutter: 16px;
  }

  .topbar,
  .nav {
    height: var(--header-height);
  }

  .brand {
    flex-basis: 84px;
  }

  .brand-logo {
    width: 80px;
  }

  .pin-sidebar {
    display: none;
  }

  .page-shell,
  .page-shell.state-left-collapsed,
  .page-shell.state-right-collapsed,
  .page-shell.state-left-collapsed.state-right-collapsed,
  .page-shell.flag-left-sidebar-collapsed,
  .page-shell.flag-right-sidebar-collapsed,
  .page-shell.flag-left-sidebar-collapsed.flag-right-sidebar-collapsed {
    grid-template-columns: minmax(0, 1fr);
    padding-top: 16px;
    gap: 0;
  }

  .hero {
    min-height: 340px;
    padding: 32px;
  }

  .hero-copy {
    width: min(620px, 72%);
  }
}

@media (max-width: 620px) {
  body {
    font-size: 14px;
  }

  .header-tools {
    gap: 6px;
  }

  .header-tools .tool-button,
  .header-tools .tool-button--live-casino,
  .header-tools .tool-button--slots {
    display: inline-flex;
    width: auto;
    min-width: 0;
    height: 34px;
    min-height: 34px;
    padding-inline: 9px;
    font-size: 10px;
  }

  .page-shell,
  .page-shell.state-left-collapsed,
  .page-shell.state-right-collapsed,
  .page-shell.state-left-collapsed.state-right-collapsed,
  .page-shell.flag-left-sidebar-collapsed,
  .page-shell.flag-right-sidebar-collapsed,
  .page-shell.flag-left-sidebar-collapsed.flag-right-sidebar-collapsed {
    padding: 12px 12px 36px;
  }

  .hero {
    align-items: flex-end;
    min-height: 380px;
    padding: 24px 20px;
  }

  .hero::after {
    background:
      linear-gradient(180deg, rgba(16, 23, 29, 0.08) 20%, rgba(16, 23, 29, 0.92) 78%),
      linear-gradient(90deg, rgba(16, 23, 29, 0.52), rgba(16, 23, 29, 0.08));
  }

  .hero-copy {
    width: 100%;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .hero h1 {
    font-size: clamp(26px, 8vw, 33px);
    line-height: 1.12;
  }

  .hero p {
    font-size: 14px;
    line-height: 1.5;
  }

  .hero-actions .pin-btn,
  .section-cta-link {
    width: 100%;
    min-height: 44px;
  }

  .pin-section,
  .content-section {
    padding: 16px;
  }

  .pin-section h2,
  .content-section h2,
  .reviews-section > h2 {
    font-size: 20px;
  }

  .pin-section p,
  .content-section p,
  .pin-section li,
  .content-section li {
    font-size: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nav-links a,
  .btn,
  .tool-button,
  .sports-quick-row,
  .sport-row,
  .pin-btn,
  .section-cta-link,
  .promo-banner-cta,
  .section-bonus-cta,
  .app-banner-btn {
    transition-duration: 0.01ms;
  }

  .header-tools .tool-button {
    animation: none;
  }
}

/* Editorial data tables */
.table-wrap,
.table-scroll {
  box-sizing: border-box;
  min-width: 0;
  width: 100%;
  max-width: 100%;
  margin-block: 18px 22px;
  overflow-x: auto;
  overflow-y: hidden;
  color: #eef8f6;
  background: #0d171d;
  border: 1px solid rgba(43, 198, 157, 0.28);
  border-radius: 8px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 14px 32px rgba(4, 12, 16, 0.22);
  overscroll-behavior-inline: contain;
  scrollbar-color: rgba(43, 198, 157, 0.72) #101a20;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}

.table-scroll {
  margin-block: 0;
}

.table-wrap table,
.table-scroll table {
  width: 100%;
  table-layout: auto;
  margin: 0;
  color: #eaf4f2;
  background: transparent;
  border: 0;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 13px;
  line-height: 1.45;
}

/* Keep each column readable; wide tables scroll inside their wrapper. */
.table-wrap th,
.table-wrap td,
.table-scroll th,
.table-scroll td {
  box-sizing: border-box;
  min-width: 160px;
  white-space: normal;
  word-break: normal;
  overflow-wrap: normal;
}

.table-wrap th:first-child,
.table-wrap td:first-child,
.table-scroll th:first-child,
.table-scroll td:first-child {
  min-width: 200px;
}

.table-wrap caption,
.table-scroll caption {
  padding: 0 0 12px;
  color: #f4fbf9;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  text-align: left;
}

.table-wrap thead,
.table-scroll thead {
  color: #f7fffd;
  background: transparent;
}

.table-wrap thead th,
.table-scroll thead th {
  padding: 14px 16px;
  color: #f7fffd;
  background:
    linear-gradient(180deg, rgba(43, 198, 157, 0.17), rgba(43, 198, 157, 0.08)),
    #183039;
  border: 0;
  border-bottom: 1px solid rgba(43, 198, 157, 0.42);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.015em;
  line-height: 1.35;
  text-align: left;
  vertical-align: middle;
}

.table-wrap thead th + th,
.table-scroll thead th + th {
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.table-wrap tbody td,
.table-scroll tbody td,
.table-wrap table > tr td,
.table-scroll table > tr td {
  padding: 13px 16px;
  color: rgba(234, 244, 242, 0.84);
  background: rgba(255, 255, 255, 0.012);
  border: 0;
  text-align: left;
  vertical-align: top;
  transition: background-color 160ms ease, color 160ms ease;
}

.table-wrap tbody tr + tr td,
.table-scroll tbody tr + tr td,
.table-wrap table > tr + tr td,
.table-scroll table > tr + tr td {
  border-top: 1px solid rgba(255, 255, 255, 0.065);
}

.table-wrap tbody tr:nth-child(even) td,
.table-scroll tbody tr:nth-child(even) td,
.table-wrap table > tr:nth-of-type(even) td,
.table-scroll table > tr:nth-of-type(even) td {
  background: rgba(43, 198, 157, 0.035);
}

.table-wrap tbody tr:hover td,
.table-scroll tbody tr:hover td,
.table-wrap table > tr:hover td,
.table-scroll table > tr:hover td {
  color: #f7fffd;
  background: rgba(43, 198, 157, 0.09);
}

.table-wrap th p,
.table-wrap td p,
.table-scroll th p,
.table-scroll td p {
  margin: 0;
  color: inherit;
}

.table-wrap th p + p,
.table-wrap td p + p,
.table-scroll th p + p,
.table-scroll td p + p {
  margin-top: 7px;
}

.table-wrap::-webkit-scrollbar,
.table-scroll::-webkit-scrollbar {
  height: 8px;
}

.table-wrap::-webkit-scrollbar-track,
.table-scroll::-webkit-scrollbar-track {
  background: #101a20;
}

.table-wrap::-webkit-scrollbar-thumb,
.table-scroll::-webkit-scrollbar-thumb {
  background: rgba(43, 198, 157, 0.72);
  border: 2px solid #101a20;
  border-radius: 999px;
}

@media (max-width: 760px) {
  .table-wrap,
  .table-scroll {
    margin-inline: 0;
    border-radius: 7px;
  }

  .table-wrap table,
  .table-scroll table {
    min-width: 100%;
    font-size: 12px;
  }

  .table-wrap thead th,
  .table-scroll thead th,
  .table-wrap tbody td,
  .table-scroll tbody td,
  .table-wrap table > tr td,
  .table-scroll table > tr td {
    padding: 11px 13px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .table-wrap tbody td,
  .table-scroll tbody td,
  .table-wrap table > tr td,
  .table-scroll table > tr td {
    transition: none;
  }
}

/* Preserve the approved UI copy casing exactly as authored. */
.hero-actions .pin-btn,
.contextual-section-actions .section-cta,
.promo-banner-card .promo-banner-cta,
.hero-rating,
.platform-banner-card .app-banner-btn small,
.platform-banner-card .app-banner-btn strong,
.app-download-btn small,
.app-download-btn strong {
  text-transform: none;
}

/* Fast, restrained content motion. */
.page-shell,
.page-shell.state-left-collapsed,
.page-shell.state-right-collapsed,
.page-shell.state-left-collapsed.state-right-collapsed,
.page-shell.flag-left-sidebar-collapsed,
.page-shell.flag-right-sidebar-collapsed,
.page-shell.flag-left-sidebar-collapsed.flag-right-sidebar-collapsed {
  padding-inline: 0;
}

html[data-vave-motion-ready="true"] .brand-scroll-reveal {
  opacity: 0;
  transform: translate3d(0, 9px, 0);
  transition:
    opacity 220ms cubic-bezier(0.23, 1, 0.32, 1),
    transform 260ms cubic-bezier(0.23, 1, 0.32, 1);
  transition-delay: var(--vave-reveal-delay, 0ms);
}

html[data-vave-motion-ready="true"] .brand-scroll-reveal.flag-vave-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

:where(
  .hero,
  .promo-banner-card,
  .platform-banner-card,
  .brand-editorial-figure,
  .brand-list-feature__media,
  .brand-slot-card__media
) {
  overflow: hidden;
}

:where(
  .hero > img.hero-img,
  .promo-banner-image,
  .platform-banner-image,
  .brand-editorial-figure > img:first-child,
  .brand-list-feature__media img,
  .brand-slot-card__media > img
) {
  transition: transform 280ms cubic-bezier(0.23, 1, 0.32, 1);
  transform-origin: center;
}

@media (hover: hover) and (pointer: fine) {
  .hero:has(> img.hero-img):hover > img.hero-img,
  .promo-banner-card:hover .promo-banner-image,
  .platform-banner-card:hover .platform-banner-image,
  .brand-editorial-figure:hover > img:first-child,
  .brand-list-feature__media:hover img,
  .brand-slot-card:hover .brand-slot-card__media > img {
    transform: scale(1.035);
  }

  .promo-banner-card:hover .promo-banner-image,
  .platform-banner-card:hover .platform-banner-image,
  .brand-list-feature__media:hover img {
    transform: scale(1.025);
  }
}

@media (prefers-reduced-motion: reduce) {
  html[data-vave-motion-ready] .brand-scroll-reveal,
  html[data-vave-motion-ready] .brand-scroll-reveal.flag-vave-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }

  :where(
    .hero > img.hero-img,
    .promo-banner-image,
    .platform-banner-image,
    .brand-editorial-figure > img:first-child,
    .brand-list-feature__media img,
    .brand-slot-card__media > img
  ) {
    transform: none !important;
    transition: none;
  }
}

/* Vave editorial art and structured content */
.article-content-flow {
  display: grid;
  gap: var(--vave-section-gap, 20px);
}

.pin-section,
.content-section {
  margin-bottom: 0;
}

.brand-imported-section > h2 {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-imported-section > h2::before {
  position: static;
  inset: auto;
  display: block;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  background: url("../img/vave/footer/logo.svg") center / contain no-repeat;
  content: "";
  filter: drop-shadow(0 0 8px rgba(43, 198, 157, 0.36));
}

.hero-media-cycle {
  position: absolute;
  inset: 0 0 0 auto;
  display: block;
  width: 50%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  border-radius: 0 8px 8px 0;
  filter: brightness(0.74) saturate(0.86) contrast(1.04);
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0,
    rgba(0, 0, 0, 0.05) 7%,
    rgba(0, 0, 0, 0.18) 14%,
    rgba(0, 0, 0, 0.46) 24%,
    rgba(0, 0, 0, 0.78) 34%,
    #000 42%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0,
    rgba(0, 0, 0, 0.05) 7%,
    rgba(0, 0, 0, 0.18) 14%,
    rgba(0, 0, 0, 0.46) 24%,
    rgba(0, 0, 0, 0.78) 34%,
    #000 42%
  );
}

.hero-cycle-media {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 64% top;
  backface-visibility: hidden;
  transition: transform 720ms cubic-bezier(0.32, 0.72, 0, 1);
  will-change: transform;
}

.hero-cycle-video {
  z-index: 1;
  transform: translateX(0);
}

.hero-cycle-still {
  z-index: 2;
  transform: translateX(100%);
}

.hero-cycle-media.hero-cycle-still {
  object-position: 100% top;
}

.hero-media-cycle.state-still .hero-cycle-video {
  transform: translateX(-100%);
}

.hero-cycle-still.state-active {
  transform: translateX(0);
}

.hero-cycle-still.state-past {
  transform: translateX(-100%);
}

.hero:has(> .hero-media-cycle) {
  background: #090714;
}

.hero:has(> .hero-media-cycle)::after {
  background: linear-gradient(
    90deg,
    rgba(8, 8, 19, 0.98) 0%,
    rgba(8, 8, 19, 0.95) 41%,
    rgba(8, 8, 19, 0.8) 49%,
    rgba(8, 8, 19, 0.58) 56%,
    rgba(8, 8, 19, 0.34) 65%,
    rgba(8, 8, 19, 0.12) 78%,
    rgba(8, 8, 19, 0) 91%
  );
}

.hero:has(> .hero-media-cycle) .hero-copy {
  width: min(560px, 48%);
}

@media (max-width: 960px) {
  .hero:has(> .hero-media-cycle) .hero-copy {
    width: min(560px, 90%);
    background: rgb(3 31 42 / 62%);
  }
}

@media (max-width: 760px) {
  .hero-media-cycle {
    right: -74px;
    width: calc(100% + 74px);
    opacity: 0.72;
    border-radius: 0;
  }

  .hero-cycle-media {
    object-position: 69% top;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-cycle-media {
    transition: none;
  }
}

.brand-imported-section .responsible-media {
  display: none !important;
}

.brand-editorial-figure--compact > img:first-child {
  aspect-ratio: 8 / 3;
  object-fit: cover;
  object-position: center top;
}

.brand-editorial-figure > .brand-media-brand,
.brand-list-feature__media > .brand-media-brand {
  position: absolute;
  z-index: 3;
  top: 12px;
  left: 12px;
  width: 72px;
  height: auto;
  padding: 6px 8px;
  object-fit: contain;
  background: rgba(7, 17, 23, 0.76);
  border: 1px solid rgba(43, 198, 157, 0.34);
  border-radius: 7px;
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.28);
}

.brand-list-feature--generated {
  min-height: 270px;
}

.responsible-media-logo {
  width: clamp(72px, 7vw, 96px);
  padding: 6px 8px;
}

.brand-list-feature__content > ol {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: vave-steps;
}

.brand-list-feature__content > ol > li {
  position: relative;
  margin: 0;
  padding: 11px 12px 11px 45px;
  background: rgba(3, 20, 27, 0.72);
  border: 1px solid rgba(43, 198, 157, 0.25);
  border-radius: 7px;
  counter-increment: vave-steps;
}

.brand-list-feature__content > ol > li::before {
  position: absolute;
  top: 10px;
  left: 11px;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  color: #06211a;
  background: #35d0aa;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 800;
  content: counter(vave-steps, decimal-leading-zero);
}

.brand-pros-cons-grid,
.brand-two-card-grid,
.brand-bonus-card-grid,
.brand-game-card-grid,
.brand-info-card-grid,
.brand-feature-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 18px 0 8px;
}

.brand-bonus-card-grid .brand-info-card:last-child,
.brand-game-card-grid .brand-info-card:last-child {
  grid-column: 1 / -1;
}

.brand-info-card {
  position: relative;
  min-width: 0;
  padding: 18px 18px 18px 72px;
  overflow: hidden;
  background:
    radial-gradient(circle at 0 0, rgba(43, 198, 157, 0.13), transparent 43%),
    #0c161d;
  border: 1px solid rgba(43, 198, 157, 0.22);
  border-radius: 10px;
  transition: border-color 180ms ease, transform 180ms ease, background-color 180ms ease;
}

.brand-info-card::before {
  display: none;
}

.brand-card-icon {
  position: absolute;
  top: 16px;
  left: 14px;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: #fff;
  background:
    radial-gradient(circle at 32% 24%, rgba(255, 255, 255, 0.46), transparent 22%),
    linear-gradient(145deg, #43d9b3, #197f9d 76%);
  border: 1px solid rgba(164, 255, 230, 0.52);
  border-radius: 13px;
  box-shadow: 0 9px 24px rgba(43, 198, 157, 0.24), inset 0 -7px 13px rgba(3, 38, 43, 0.28);
}

.brand-card-icon svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
  stroke: currentColor;
}

.brand-info-card:hover {
  background-color: #101d25;
  border-color: rgba(62, 217, 177, 0.48);
  transform: translateY(-2px);
}

.brand-info-card > h3 {
  margin: 0 0 8px;
  font-size: 17px;
}

.brand-info-card > h3::before {
  display: none;
}

.brand-info-card > p:last-child,
.brand-info-card > ul:last-child,
.brand-info-card > ol:last-child {
  margin-bottom: 0;
}

.brand-pros-cons-grid .brand-info-card:first-child {
  border-color: rgba(53, 208, 170, 0.34);
}

.brand-pros-cons-grid .brand-info-card:last-child {
  background:
    radial-gradient(circle at 0 0, rgba(255, 101, 101, 0.1), transparent 43%),
    #0c161d;
  border-color: rgba(255, 101, 101, 0.22);
}

.brand-pros-cons-grid {
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: clamp(14px, 2vw, 20px);
  align-items: stretch;
}

.brand-pros-cons-grid .brand-info-card {
  padding: clamp(20px, 2.4vw, 28px);
  background: #0a151c;
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.brand-pros-cons-grid .brand-info-card::after {
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--panel-accent), transparent 76%);
  content: "";
}

.brand-pros-cons-grid .brand-card-icon {
  top: 18px;
  right: 18px;
  left: auto;
  width: 48px;
  height: 48px;
  color: #071712;
  background: var(--panel-accent);
  border-color: color-mix(in srgb, var(--panel-accent) 70%, white);
  box-shadow: 0 12px 28px color-mix(in srgb, var(--panel-accent) 28%, transparent);
}

.brand-pros-cons-grid .brand-info-card > h3 {
  margin: 0 64px 20px 0;
  font-size: clamp(20px, 2vw, 25px);
  letter-spacing: -0.025em;
}

.brand-pros-cons-grid .brand-info-card > ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.brand-pros-cons-grid .brand-info-card > ul > li {
  position: relative;
  margin: 0;
  padding: 12px 13px 12px 42px;
  background: color-mix(in srgb, var(--panel-accent) 7%, rgba(3, 18, 24, 0.86));
  border: 1px solid color-mix(in srgb, var(--panel-accent) 24%, transparent);
  border-radius: 10px;
  line-height: 1.5;
}

.brand-pros-cons-grid .brand-info-card > ul > li::before {
  position: absolute;
  top: 12px;
  left: 12px;
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  color: #061712;
  background: var(--panel-accent);
  border-radius: 7px;
  font-size: 11px;
  font-weight: 900;
  content: var(--panel-symbol);
}

.brand-info-card--positive {
  --panel-accent: #35d0aa;
  --panel-symbol: "✓";
  border-color: rgba(53, 208, 170, 0.38) !important;
}

.brand-info-card--negative {
  --panel-accent: #ff7c72;
  --panel-symbol: "−";
  border-color: rgba(255, 124, 114, 0.34) !important;
}

.brand-app-access-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 20px 0 28px;
}

.brand-app-access-grid .brand-info-card {
  --access-accent: #35d0aa;
  min-height: 330px;
  padding: 84px 20px 22px;
  background:
    radial-gradient(circle at 16% 0, color-mix(in srgb, var(--access-accent) 18%, transparent), transparent 42%),
    linear-gradient(155deg, rgba(13, 28, 35, 0.98), rgba(7, 16, 22, 0.98));
  border-color: color-mix(in srgb, var(--access-accent) 36%, transparent);
  border-radius: 15px;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.brand-app-access-grid .brand-info-card:nth-child(2) {
  --access-accent: #50bde8;
}

.brand-app-access-grid .brand-info-card:nth-child(3) {
  --access-accent: #a987ff;
}

.brand-app-access-grid .brand-info-card:nth-child(4) {
  --access-accent: #ffc76b;
}

.brand-app-access-grid .brand-info-card::after {
  display: none;
  content: none;
}

.brand-app-access-grid .brand-card-icon {
  top: 18px;
  left: 18px;
  width: 48px;
  height: 48px;
  color: #071719;
  background: var(--access-accent);
  border-color: color-mix(in srgb, var(--access-accent) 66%, white);
  box-shadow: 0 10px 25px color-mix(in srgb, var(--access-accent) 25%, transparent);
}

.brand-app-access-grid .brand-info-card > h3 {
  min-height: 2.7em;
  margin: 0 0 14px;
  color: #f5fbfa;
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.brand-app-access-grid .brand-info-card > p {
  margin: 0;
  color: #b9c8ce;
  font-size: 14px;
  line-height: 1.65;
}

.brand-app-access-grid .brand-info-card:hover {
  border-color: color-mix(in srgb, var(--access-accent) 70%, transparent);
  transform: translateY(-4px);
}

.brand-limited-offers-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 20px);
  margin: 20px 0 8px;
  counter-reset: limited-offer;
}

.brand-limited-offers-grid .brand-info-card {
  --offer-accent: #35d0aa;
  min-height: 230px;
  padding: 76px clamp(20px, 2.2vw, 28px) 26px;
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--offer-accent) 11%, transparent), transparent 48%),
    radial-gradient(circle at 92% 8%, color-mix(in srgb, var(--offer-accent) 16%, transparent), transparent 36%),
    #0a151c;
  border-color: color-mix(in srgb, var(--offer-accent) 35%, transparent);
  border-radius: 16px;
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  counter-increment: limited-offer;
}

.brand-limited-offers-grid .brand-info-card:nth-child(2) {
  --offer-accent: #2bc69d;
}

.brand-limited-offers-grid .brand-info-card::after {
  position: absolute;
  top: 23px;
  right: 24px;
  color: color-mix(in srgb, var(--offer-accent) 78%, white);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.14em;
  content: counter(limited-offer, decimal-leading-zero);
}

.brand-limited-offers-grid .brand-card-icon {
  top: 20px;
  left: 24px;
  width: 42px;
  height: 42px;
  color: #07151a;
  background: var(--offer-accent);
  border-color: color-mix(in srgb, var(--offer-accent) 72%, white);
  box-shadow: 0 10px 25px color-mix(in srgb, var(--offer-accent) 24%, transparent);
}

.brand-limited-offers-grid .brand-info-card > h3 {
  margin: 0 0 12px;
  color: #f5fbfa;
  font-size: clamp(19px, 1.7vw, 23px);
  letter-spacing: -0.025em;
}

.brand-limited-offers-grid .brand-info-card > p {
  margin: 0;
  color: #bdcbd0;
  line-height: 1.7;
}

.brand-limited-offers-grid .brand-info-card:hover {
  border-color: color-mix(in srgb, var(--offer-accent) 70%, transparent);
  box-shadow: 0 24px 46px rgba(0, 0, 0, 0.26), 0 0 28px color-mix(in srgb, var(--offer-accent) 10%, transparent);
  transform: translateY(-4px);
}

@media (max-width: 1180px) {
  .brand-app-access-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .brand-app-access-grid .brand-info-card {
    min-height: 270px;
  }
}

@media (max-width: 760px) {
  .brand-limited-offers-grid {
    grid-template-columns: 1fr;
  }

  .brand-limited-offers-grid .brand-info-card {
    min-height: 0;
    padding: 72px 18px 22px;
  }

  .brand-app-access-grid {
    grid-template-columns: 1fr;
  }

  .brand-app-access-grid .brand-info-card {
    min-height: 0;
    padding: 80px 18px 20px;
  }

  .brand-app-access-grid .brand-info-card > h3 {
    min-height: 0;
  }
}

.brand-expert-card {
  background:
    linear-gradient(120deg, rgba(43, 198, 157, 0.09), transparent 50%),
    rgba(16, 23, 29, 0.92);
  border-color: rgba(43, 198, 157, 0.25);
}

.brand-expert-meta {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  margin: 0 0 18px;
  padding: 14px;
  background: rgba(3, 20, 27, 0.58);
  border: 1px solid rgba(43, 198, 157, 0.18);
  border-radius: 10px;
}

.brand-expert-avatar {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: #052018;
  background: linear-gradient(135deg, #45d8b4, #2a9fc2);
  border-radius: 50%;
  font-weight: 900;
}

.brand-expert-meta span:nth-child(2) {
  display: grid;
  gap: 2px;
}

.brand-expert-meta small {
  color: rgba(255, 255, 255, 0.56);
}

.brand-expert-meta b {
  color: #ffd260;
  font-size: 15px;
}

.faq-section > .faq-item {
  overflow: hidden;
  border: 1px solid rgba(43, 198, 157, 0.2);
}

.faq-section > .faq-item summary {
  position: relative;
  padding: 15px 48px 15px 16px;
  cursor: pointer;
}

.faq-section > .faq-item summary::after {
  position: absolute;
  top: 50%;
  right: 16px;
  color: var(--accent);
  font-size: 22px;
  line-height: 1;
  content: "+";
  transform: translateY(-50%);
}

.faq-section > .faq-item[open] summary::after {
  content: "−";
}

.faq-section > .faq-item > :not(summary) {
  margin-inline: 16px;
}

@media (max-width: 760px) {
  .brand-editorial-figure--compact > img:first-child {
    aspect-ratio: 16 / 9;
    object-position: 72% top;
  }

  .brand-list-feature--generated {
    min-height: 0;
  }

  .brand-list-feature--generated::before {
    background: rgba(7, 17, 23, 0.86);
  }

  .brand-pros-cons-grid,
  .brand-two-card-grid,
  .brand-bonus-card-grid,
  .brand-game-card-grid,
  .brand-info-card-grid,
  .brand-feature-card-grid {
    grid-template-columns: 1fr;
  }

  .brand-bonus-card-grid .brand-info-card:last-child,
  .brand-game-card-grid .brand-info-card:last-child {
    grid-column: auto;
  }

  .brand-info-card {
    padding: 16px 14px 16px 72px;
  }

  .brand-expert-meta {
    grid-template-columns: auto 1fr;
  }

  .brand-expert-meta b {
    grid-column: 1 / -1;
  }
}

/* Donor-style mobile header and navigation drawer. */
.cookie {
  position: fixed;
  z-index: 1190;
  right: 0;
  bottom: 0;
  left: 0;
  justify-content: center;
  width: 100%;
  max-width: none;
  min-height: 42px;
  padding: 6px 18px;
  gap: 12px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(18, 32, 42, 0.9);
  border: 0;
  border-top: 1px solid rgba(43, 198, 157, 0.28);
  border-left: 0;
  border-radius: 0;
  box-shadow: 0 -8px 24px rgba(2, 8, 12, 0.28);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.cookie.state-visible {
  display: flex;
}

.cookie .cookies-copy {
  flex: 0 1 auto;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 11px;
  line-height: 1.25;
  text-align: center;
}

.cookie .cookies-policy-link {
  color: #fff;
  text-decoration-color: rgba(255, 255, 255, 0.62);
  text-underline-offset: 2px;
}

.cookie button {
  flex: 0 0 auto;
  min-height: 30px;
  padding: 6px 13px;
  color: #fff;
  background: var(--accent);
  border: 1px solid rgba(100, 255, 214, 0.28);
  border-radius: 5px;
  box-shadow: none;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.cookie button:hover,
.cookie button:focus-visible {
  background: var(--accent-hover);
}

body:has(.cookie.state-visible) .floating-chat,
body:has(.cookie.state-visible) .scroll-top {
  bottom: 54px;
}

.brand-mobile-bonus,
.brand-mobile-wheel,
.brand-mobile-drawer-backdrop {
  display: none;
}

@keyframes vave-mobile-coin-spin {
  0%, 18% { transform: rotateY(0deg) scale(1); }
  42% { transform: rotateY(180deg) scale(1.1); }
  66%, 100% { transform: rotateY(360deg) scale(1); }
}

@keyframes vave-mobile-bonus-shine {
  0%, 55% { transform: translateX(-160%) skewX(-20deg); }
  100% { transform: translateX(330%) skewX(-20deg); }
}

@keyframes vave-side-wheel-idle {
  to { transform: rotate(360deg); }
}

@media (max-width: 900px) {
  :root {
    --header-height: 58px;
  }

  body.brand-mobile-drawer-open {
    overflow: hidden;
    touch-action: none;
  }

  body.brand-mobile-drawer-open .floating-chat,
  body.brand-mobile-drawer-open .scroll-top,
  body.brand-mobile-drawer-open .cookie {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
  }

  .cookie {
    min-height: 48px;
    padding: 7px 10px;
    gap: 9px;
  }

  .cookie .cookies-copy {
    font-size: 10px;
    text-align: left;
  }

  .cookie button {
    min-height: 32px;
    padding-inline: 12px;
  }

  body:has(.cookie.state-visible) .floating-chat,
  body:has(.cookie.state-visible) .scroll-top {
    bottom: 62px;
  }

  .topbar,
  .nav {
    height: var(--header-height);
  }

  .topbar {
    z-index: 1000;
    background: rgba(25, 39, 49, 0.98);
    border-bottom-color: rgba(43, 198, 157, 0.18);
    box-shadow: 0 8px 24px rgba(2, 8, 12, 0.32);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }

  .topbar::after {
    right: auto;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--accent);
    opacity: 0.9;
  }

  .nav {
    width: 100%;
    padding-inline: 12px 8px;
    gap: 8px;
  }

  .nav > .brand {
    flex: 0 0 auto;
    width: auto;
    margin-right: auto;
  }

  .nav > .brand .brand-logo {
    width: 76px;
    max-height: 28px;
  }

  .nav > .nav-links,
  .nav > .auth,
  .nav > .header-tools,
  .nav > .header-time,
  .nav > .language-switch {
    display: none;
  }

  .brand-mobile-bonus {
    position: relative;
    isolation: isolate;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 104px;
    min-height: 38px;
    padding: 5px 13px 5px 7px;
    gap: 7px;
    overflow: hidden;
    color: #fff;
    background: linear-gradient(100deg, #218f78 0%, #2bc69d 52%, #218f78 100%);
    border: 1px solid rgba(108, 255, 213, 0.58);
    border-radius: 8px;
    box-shadow: 0 5px 16px rgba(12, 176, 135, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.18);
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
  }

  .brand-mobile-bonus::after {
    position: absolute;
    z-index: -1;
    top: -12px;
    left: 0;
    width: 38px;
    height: 64px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.34), transparent);
    content: "";
    animation: vave-mobile-bonus-shine 3.6s ease-in-out infinite;
  }

  .brand-mobile-bonus:hover,
  .brand-mobile-bonus:focus-visible {
    color: #fff;
    background: linear-gradient(100deg, #27a48a, #36d7ad 52%, #27a48a);
  }

  .brand-mobile-bonus-coin {
    display: grid;
    width: 27px;
    height: 27px;
    place-items: center;
    color: #754b00;
    background: radial-gradient(circle at 34% 28%, #fff7a1 0 8%, #f7bf3f 28%, #d58212 70%, #9d5705 100%);
    border: 2px solid #ffe886;
    border-radius: 50%;
    box-shadow: 0 0 0 2px rgba(69, 42, 0, 0.22), 0 0 12px rgba(255, 216, 87, 0.42);
    perspective: 120px;
    animation: vave-mobile-coin-spin 3.2s ease-in-out infinite;
  }

  .brand-mobile-bonus-coin > span {
    font-size: 15px;
    font-weight: 900;
    line-height: 1;
  }

  .brand-mobile-wheel {
    position: relative;
    display: grid;
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    padding: 2px;
    overflow: hidden;
    place-items: center;
    background: rgba(18, 78, 82, 0.72);
    border: 1px solid rgba(82, 232, 201, 0.5);
    border-radius: 9px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 5px 14px rgba(0, 0, 0, 0.24);
    cursor: pointer;
  }

  .brand-mobile-wheel:hover,
  .brand-mobile-wheel:focus-visible {
    background: rgba(27, 116, 108, 0.88);
    border-color: rgba(108, 255, 213, 0.8);
  }

  .brand-mobile-wheel-art {
    position: relative;
    display: block;
    width: 38px;
    height: 38px;
    pointer-events: none;
  }

  .brand-mobile-wheel-art .brand-side-wheel-disc,
  .brand-mobile-wheel-art .brand-side-wheel-frame {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .mobile-burger {
    z-index: 3;
    display: grid;
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    padding: 11px 9px;
    place-content: center;
    gap: 5px;
    background: transparent;
    border: 0;
    border-radius: 8px;
  }

  .mobile-burger:hover,
  .mobile-burger:focus-visible {
    background: rgba(255, 255, 255, 0.06);
  }

  .mobile-burger span {
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 3px;
    transition: transform 180ms ease, opacity 160ms ease;
  }

  .mobile-menu {
    position: fixed;
    z-index: 1003;
    top: 0;
    right: auto;
    bottom: 0;
    left: 0;
    display: block;
    width: min(86vw, 338px);
    height: 100dvh;
    max-height: none;
    padding: 0;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    opacity: 1;
    visibility: hidden;
    pointer-events: none;
    background:
      radial-gradient(120% 50% at 0 0, rgba(37, 88, 94, 0.38), transparent 70%),
      #192832;
    border-right: 1px solid rgba(43, 198, 157, 0.45);
    border-radius: 0;
    box-shadow: 22px 0 52px rgba(0, 0, 0, 0.52);
    transform: translateX(-104%);
    transition: transform 260ms cubic-bezier(0.32, 0.72, 0, 1), visibility 260ms;
  }

  .mobile-menu-open .mobile-menu {
    max-height: none;
    padding: 0;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
  }

  .brand-mobile-drawer-backdrop {
    position: fixed;
    z-index: 1002;
    inset: 0;
    display: block;
    width: 100%;
    height: 100dvh;
    padding: 0;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    background: rgba(2, 8, 12, 0.68);
    border: 0;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    transition: opacity 200ms ease, visibility 200ms;
  }

  .mobile-menu-open .brand-mobile-drawer-backdrop {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }

  .brand-mobile-drawer-header {
    position: sticky;
    z-index: 5;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 64px;
    padding: 10px 12px 10px 16px;
    background: rgba(25, 40, 50, 0.94);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }

  .mobile-menu .brand-mobile-drawer-brand {
    display: flex;
    width: auto;
    min-height: 44px;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .mobile-menu .brand-mobile-drawer-brand .brand-logo {
    width: 88px;
    max-height: 30px;
  }

  .brand-mobile-drawer-close {
    position: relative;
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    color: #d8e5e8;
    background: transparent;
    border: 0;
    border-radius: 8px;
  }

  .brand-mobile-drawer-close:hover,
  .brand-mobile-drawer-close:focus-visible {
    color: #fff;
    background: rgba(255, 255, 255, 0.07);
  }

  .brand-mobile-drawer-close span,
  .brand-mobile-drawer-close span::after {
    display: block;
    width: 20px;
    height: 2px;
    background: currentColor;
    border-radius: 2px;
    content: "";
    transform: rotate(45deg);
  }

  .brand-mobile-drawer-close span::after {
    transform: rotate(90deg);
  }

  .brand-mobile-drawer-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) 52px;
    padding: 10px 14px 6px;
    gap: 8px;
  }

  .mobile-menu .brand-mobile-drawer-actions > a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    min-height: 40px;
    margin: 0;
    padding: 8px 10px;
    color: #fff;
    background: rgba(20, 53, 59, 0.84);
    border: 1px solid rgba(43, 198, 157, 0.7);
    border-radius: 7px;
    box-shadow: none;
    font-size: 11px;
    font-weight: 750;
    line-height: 1;
    text-decoration: none;
  }

  .mobile-menu .brand-mobile-drawer-actions > .ghost {
    color: #06241d;
    background: var(--accent);
  }

  .mobile-menu .brand-mobile-drawer-actions > .brand-mobile-language {
    gap: 4px;
    padding: 6px;
    color: #fff;
  }

  .mobile-menu .brand-mobile-language .language-flag-de {
    width: 22px;
    height: 22px;
  }

  .brand-mobile-primary {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin: 4px 14px 6px;
    padding: 4px;
    gap: 3px;
    background: rgba(8, 24, 31, 0.66);
    border: 1px solid rgba(43, 198, 157, 0.2);
    border-radius: 9px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
  }

  .mobile-menu .brand-mobile-primary-link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    min-height: 44px;
    padding: 8px 4px;
    color: #a9bdc3;
    background: transparent;
    border: 0;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 750;
    line-height: 1;
    text-align: center;
    text-decoration: none;
  }

  .mobile-menu .brand-mobile-primary-link:hover,
  .mobile-menu .brand-mobile-primary-link:focus-visible {
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
    outline: 2px solid rgba(43, 198, 157, 0.64);
    outline-offset: -2px;
  }

  .mobile-menu .brand-mobile-primary-link[aria-current="page"],
  .mobile-menu .brand-mobile-primary-link.state-active {
    color: #fff;
    background: linear-gradient(145deg, rgba(43, 198, 157, 0.28), rgba(24, 81, 75, 0.42));
    box-shadow: inset 0 0 0 1px rgba(82, 235, 193, 0.32), 0 4px 12px rgba(0, 0, 0, 0.14);
  }

  .mobile-menu .brand-mobile-primary-link[aria-current="page"]::after,
  .mobile-menu .brand-mobile-primary-link.state-active::after {
    position: absolute;
    right: 12px;
    bottom: 4px;
    left: 12px;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
    box-shadow: 0 0 8px rgba(43, 198, 157, 0.62);
    content: "";
  }

  .mobile-menu .brand-side-menu--mobile {
    display: flex;
    padding: 10px 14px 28px;
    background: transparent;
  }

  .mobile-menu .brand-side-app {
    display: flex;
    min-height: 72px;
    padding: 13px 78px 12px 13px;
    color: #fff;
    background: #22474f;
    border: 1px solid rgba(43, 198, 157, 0.24);
    border-radius: 6px;
    box-shadow: 0 3px 0 rgba(9, 15, 20, 0.28);
  }

  .mobile-menu .brand-side-app-media {
    width: 68px;
    height: 67px;
  }

  .mobile-menu .brand-side-wheel {
    display: flex;
    min-height: 52px;
    margin-top: 16px;
    padding: 0 14px 0 62px;
    color: #fff;
    background: linear-gradient(90deg, #12d4c3 0%, #4f91dc 100%);
    border: 0;
    border-radius: 7px;
    box-shadow: 0 6px 16px rgba(9, 15, 20, 0.16);
  }

  .mobile-menu .brand-side-wheel-disc {
    animation: vave-side-wheel-idle 10s linear infinite;
  }

  .mobile-menu .brand-side-nav-heading {
    min-height: 30px;
    margin: 24px 0 6px;
    color: #8fa7ae;
  }

  .mobile-menu .brand-side-links {
    display: grid;
    gap: 1px;
  }

  .mobile-menu .brand-side-links li {
    margin: 0;
  }

  .mobile-menu .brand-side-link {
    display: flex;
    min-height: 44px;
    margin: 0;
    padding: 9px 8px;
    gap: 12px;
    color: #f4f8f9;
    background: transparent;
    border: 0;
    border-radius: 7px;
    box-shadow: none;
    font-size: 14px;
    font-weight: 700;
  }

  .mobile-menu .brand-side-link:hover,
  .mobile-menu .brand-side-link:focus-visible {
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
  }

  .mobile-menu .brand-side-link--live {
    color: #ff4f65;
  }

  .mobile-menu .brand-side-link svg {
    flex: 0 0 20px;
    width: 20px;
    height: 20px;
  }

  .mobile-menu .brand-side-badge {
    margin-left: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .brand-mobile-bonus::after,
  .brand-mobile-bonus-coin,
  .mobile-menu .brand-side-wheel-disc {
    animation: none;
  }

  .mobile-menu,
  .brand-mobile-drawer-backdrop,
  .mobile-burger span {
    transition: none;
  }
}

/* Single active navigation underline */
.nav-links .state-active {
  border-bottom: 0;
  box-shadow: none;
}

.nav-links .state-active::after {
  height: 2px;
  background: var(--accent);
  box-shadow: none;
}

/* Flush desktop header frame */
@media (min-width: 901px) {
  .nav {
    padding-inline: 0;
  }
}

/* Unified button label casing and alignment */
.btn,
.tool-button,
.pin-btn,
.section-cta,
.section-cta-link,
.promo-banner-cta,
.section-bonus-cta,
.app-banner-btn,
.app-download-btn,
.brand-crypto-banner__cta,
.brand-wof-primary,
.coupon-copy,
#cookieOk {
  text-align: center;
  text-transform: capitalize;
}

.platform-banner-card .app-banner-btn,
.app-download-btn {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) 46px;
  align-items: center;
  justify-content: normal;
  gap: 12px;
  text-transform: none;
}

.platform-banner-card .app-banner-btn::after,
.app-download-btn::after {
  position: static;
  display: block;
  width: 46px;
  height: 1px;
  content: "";
}

.platform-banner-card .app-banner-btn img,
.app-download-btn img {
  width: 46px;
  height: 46px;
}

.platform-banner-card .app-banner-btn span,
.app-download-btn span {
  justify-items: center;
  text-align: center;
}

.platform-banner-card .app-banner-btn small,
.platform-banner-card .app-banner-btn strong,
.app-download-btn small,
.app-download-btn strong {
  width: 100%;
  text-align: center;
}

/* Mobile app CTAs stay on exactly two text rows */
@media (max-width: 760px) {
  .platform-banner-card .app-banner-btn,
  .app-download-btn {
    grid-template-columns: 30px minmax(0, 1fr);
    padding: 8px 10px;
    gap: 8px;
  }

  .platform-banner-card .app-banner-btn::after,
  .app-download-btn::after {
    display: none;
  }

  .platform-banner-card .app-banner-btn img,
  .app-download-btn img {
    width: 30px;
    height: 30px;
  }

  .platform-banner-card .app-banner-btn small,
  .platform-banner-card .app-banner-btn strong,
  .app-download-btn small,
  .app-download-btn strong {
    display: block;
    font-size: clamp(10px, 2.8vw, 12px);
    white-space: nowrap;
  }
}

/* App download actions sit above their divider */
.android-download,
.ios-section-download {
  padding-top: 0;
  padding-bottom: 18px;
  border-top: 0;
  border-bottom: 1px solid rgba(43, 198, 157, 0.24);
}

/* Tablet and mobile page shell inset */
@media (max-width: 960px) {
  .page-shell,
  .page-shell.state-left-collapsed,
  .page-shell.state-right-collapsed,
  .page-shell.state-left-collapsed.state-right-collapsed,
  .page-shell.flag-left-sidebar-collapsed,
  .page-shell.flag-right-sidebar-collapsed,
  .page-shell.flag-left-sidebar-collapsed.flag-right-sidebar-collapsed {
    padding: 10px;
  }
}

/* Collapsed article navigation below the hero */
@media (max-width: 960px) {
  .pin-side-nav.content-nav-mounted {
    display: block;
    order: 0;
    margin: 0;
    overflow: hidden;
    background: #151f27;
    border: 1px solid rgba(43, 198, 157, 0.24);
    border-radius: 8px;
  }

  .pin-side-nav.content-nav-mounted .pin-side-nav-toggle {
    min-height: 48px;
    padding-inline: 16px;
    color: #fff;
  }

  .pin-side-nav.content-nav-mounted .pin-side-links {
    max-height: min(52vh, 360px);
    padding: 4px 10px 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
  }
}

/* Unified primary-page tablet hero */
@media (max-width: 960px) {
  body:is(
    [data-page-key="home"],
    [data-page-key="casino"],
    [data-page-key="bonus"],
    [data-page-key="app"]
  ) .hero {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: clamp(340px, 50vw, 440px);
    padding: clamp(18px, 3.2vw, 32px);
    text-align: center;
  }

  body:is(
    [data-page-key="home"],
    [data-page-key="casino"],
    [data-page-key="bonus"],
    [data-page-key="app"]
  ) .hero-copy {
    box-sizing: border-box;
    display: flex;
    width: min(560px, 90%);
    max-width: 90%;
    margin: auto;
    padding: clamp(18px, 3vw, 26px);
    flex-direction: column;
    align-items: center;
    color: #fff;
    text-align: center;
    background: rgb(3 31 42 / 62%);
    border: 1px solid rgb(43 198 157 / 44%);
    border-radius: 12px;
    box-shadow: 0 18px 44px rgb(0 12 20 / 46%), inset 0 1px 0 rgb(255 255 255 / 9%);
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
  }

  body:is(
    [data-page-key="home"],
    [data-page-key="casino"],
    [data-page-key="bonus"],
    [data-page-key="app"]
  ) :is(.hero-rating, .hero-breadcrumbs) {
    justify-content: center;
    margin-inline: auto;
    text-align: center;
  }

  body:is(
    [data-page-key="home"],
    [data-page-key="casino"],
    [data-page-key="bonus"],
    [data-page-key="app"]
  ) .hero h1 {
    max-width: 24ch;
    margin-inline: auto;
    font-size: clamp(18px, 3.5vw, 30px);
    line-height: 1.12;
    text-align: center;
    text-wrap: balance;
  }

  body:is(
    [data-page-key="home"],
    [data-page-key="casino"],
    [data-page-key="bonus"],
    [data-page-key="app"]
  ) .hero p {
    max-width: 58ch;
    margin-inline: auto;
    font-size: clamp(11px, 1.8vw, 14px);
    line-height: 1.45;
    text-align: center;
  }

  body:is(
    [data-page-key="home"],
    [data-page-key="casino"],
    [data-page-key="bonus"],
    [data-page-key="app"]
  ) .hero-actions {
    display: flex;
    width: 100%;
    justify-content: center;
  }

  body:is(
    [data-page-key="home"],
    [data-page-key="casino"],
    [data-page-key="bonus"],
    [data-page-key="app"]
  ) .hero-actions .pin-btn {
    width: min(180px, 100%);
    min-width: 0;
  }
}

@media (max-width: 420px) {
  body:is(
    [data-page-key="home"],
    [data-page-key="casino"],
    [data-page-key="bonus"],
    [data-page-key="app"]
  ) .hero {
    min-height: 320px;
    padding: 14px;
  }

  body:is(
    [data-page-key="home"],
    [data-page-key="casino"],
    [data-page-key="bonus"],
    [data-page-key="app"]
  ) .hero-copy {
    padding: 16px 14px;
  }

  body:is(
    [data-page-key="home"],
    [data-page-key="casino"],
    [data-page-key="bonus"],
    [data-page-key="app"]
  ) .hero h1 {
    font-size: clamp(16px, 5.4vw, 22px);
  }
}
/* End unified primary-page tablet hero */

/* Centered tablet and mobile platform actions */
@media (max-width: 960px) {
  .platform-banner-card {
    grid-template-columns: repeat(2, minmax(0, 230px));
    grid-template-rows: minmax(150px, 1fr) auto;
    align-content: stretch;
    justify-content: center;
    justify-items: center;
    padding: 18px 12px 12px;
    column-gap: 12px;
    row-gap: 12px;
  }

  .platform-banner-card .app-banner-center {
    display: block;
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .platform-banner-card .app-banner-btn {
    grid-row: 2;
    justify-self: center;
    width: 100%;
    max-width: 230px;
    min-width: 0;
    margin: 0;
  }

  .platform-banner-card .app-banner-btn span {
    width: 100%;
    min-width: 0;
    justify-items: center;
    text-align: center;
  }

  .platform-banner-card .app-banner-btn small,
  .platform-banner-card .app-banner-btn strong {
    display: block;
    width: 100%;
    font-size: clamp(10px, 1.8vw, 12px);
    line-height: 1.05;
    text-align: center;
    white-space: nowrap;
  }

  .platform-banner-card .app-banner-android {
    grid-column: 1;
  }

  .platform-banner-card .app-banner-ios {
    grid-column: 2;
  }
}

@media (max-width: 600px) {
  .platform-banner-card {
    grid-template-columns: minmax(0, 240px);
    grid-template-rows: minmax(132px, 1fr) auto auto;
    min-height: 350px;
    height: 350px;
    max-height: none;
    padding: 14px 12px;
    row-gap: 9px;
  }

  .platform-banner-card .app-banner-center {
    grid-column: 1;
    grid-row: 1;
  }

  .platform-banner-card .app-banner-btn {
    grid-column: 1;
    width: min(100%, 240px);
    max-width: 240px;
    min-height: 58px;
  }

  .platform-banner-card .app-banner-btn small,
  .platform-banner-card .app-banner-btn strong {
    font-size: 11px;
    line-height: 1.15;
    white-space: normal;
  }

  .platform-banner-card .app-banner-android {
    grid-row: 2;
  }

  .platform-banner-card .app-banner-ios {
    grid-row: 3;
  }
}

/* Vave scroll-to-top control */
.scroll-top {
  color: #10251f;
  background: var(--accent);
  border: 1px solid rgb(97 221 188 / 62%);
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / 24%),
    0 7px 18px rgb(43 198 157 / 34%);
}

.scroll-top::before {
  color: #10251f;
}

.scroll-top:hover,
.scroll-top:focus-visible {
  color: #10251f;
  background: var(--accent-hover);
  border-color: rgb(217 255 245 / 72%);
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / 28%),
    0 9px 22px rgb(43 198 157 / 42%);
}

/* Center app-button icon and label */
.platform-banner-card .app-banner-btn,
.app-download-btn {
  grid-template-columns: auto auto;
  justify-content: center;
  justify-items: center;
  column-gap: 12px;
}

.platform-banner-card .app-banner-btn::after,
.app-download-btn::after {
  display: none;
  content: none;
}

.platform-banner-card .app-banner-btn span,
.app-download-btn span {
  width: auto;
  justify-items: center;
  text-align: center;
}

@media (max-width: 760px) {
  .platform-banner-card .app-banner-btn,
  .app-download-btn {
    grid-template-columns: 30px minmax(0, 1fr) 30px;
    justify-content: stretch;
    column-gap: 8px;
  }

  .platform-banner-card .app-banner-btn::after,
  .app-download-btn::after {
    display: block;
    width: 30px;
    height: 1px;
    content: "";
  }

  .platform-banner-card .app-banner-btn span,
  .app-download-btn span {
    width: 100%;
    min-width: 0;
  }
}

/* German Gold final cascade for components defined later in this stylesheet. */
button.brand-side-wheel {
  border: 1px solid rgba(240, 199, 94, 0.26) !important;
}

.pin-sidebar {
  background:
    radial-gradient(circle at 100% 0, rgba(240, 199, 94, 0.065), transparent 42%),
    rgba(53, 68, 78, 0.76);
  border-color: rgba(240, 199, 94, 0.17);
  box-shadow: inset 0 1px 0 rgba(240, 199, 94, 0.09);
}

.brand-side-app {
  background:
    radial-gradient(circle at 0 0, rgba(240, 199, 94, 0.08), transparent 46%),
    #22474f;
  border-color: rgba(240, 199, 94, 0.25);
}

.brand-side-wheel {
  border: 1px solid rgba(240, 199, 94, 0.26);
}

.brand-side-nav-heading,
.pin-side-nav-toggle {
  color: rgba(240, 199, 94, 0.72);
}

.pin-side-nav {
  border-top-color: rgba(240, 199, 94, 0.18);
}

@media (max-width: 900px) {
  .mobile-menu {
    background:
      radial-gradient(120% 50% at 0 0, rgba(240, 199, 94, 0.08), transparent 70%),
      #192832;
    border-right-color: rgba(240, 199, 94, 0.38);
  }

  .brand-mobile-drawer-header {
    border-bottom-color: rgba(240, 199, 94, 0.14);
  }

  .brand-mobile-primary {
    border-color: rgba(240, 199, 94, 0.18);
  }

  .mobile-menu .brand-mobile-primary-link[aria-current="page"]::after,
  .mobile-menu .brand-mobile-primary-link.state-active::after {
    background: var(--locale-gold);
    box-shadow: 0 0 8px rgba(240, 199, 94, 0.34);
  }

  .mobile-menu .brand-side-app {
    background:
      radial-gradient(circle at 0 0, rgba(240, 199, 94, 0.08), transparent 46%),
      #22474f;
    border-color: rgba(240, 199, 94, 0.24);
  }

  .mobile-menu .brand-side-wheel {
    border-color: rgba(240, 199, 94, 0.24);
  }

  .mobile-menu .brand-side-nav-heading {
    color: rgba(240, 199, 94, 0.68);
  }
}
.nav-links .state-active::after {
  height: 3px;
  background: var(--locale-gold);
  box-shadow: none;
}

.brand-editorial-figure,
.brand-list-feature {
  border-color: rgba(240, 199, 94, 0.22);
  box-shadow:
    inset 0 2px 0 rgba(240, 199, 94, 0.1),
    0 16px 34px rgba(3, 10, 14, 0.24);
}

.brand-info-card,
.brand-pros-cons-grid .brand-info-card {
  border-color: rgba(240, 199, 94, 0.2);
}

.brand-info-card:hover,
.brand-pros-cons-grid .brand-info-card:hover {
  border-color: rgba(240, 199, 94, 0.46);
}

/* Keep the explicit + separator while allowing long localized phrases to wrap. */
.promo-banner-title {
  width: 100%;
  max-width: 100%;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.promo-banner-title-line {
  display: block;
  max-width: 100%;
  white-space: normal;
}

.promo-banner-title--long {
  max-width: none;
  font-size: clamp(20px, 1.75vw, 25px);
}

@media (max-width: 600px) {
  .promo-banner-title--long {
    font-size: clamp(13px, 3.8vw, 15px);
    line-height: 1.12;
    letter-spacing: -0.01em;
  }
}

.table-wrap,
.table-scroll {
  border-color: rgba(240, 199, 94, 0.3);
  scrollbar-color: rgba(240, 199, 94, 0.65) #101a20;
}

.table-wrap thead th,
.table-scroll thead th {
  background:
    linear-gradient(100deg, rgba(240, 199, 94, 0.15), rgba(240, 199, 94, 0.06)),
    #182a31;
  border-bottom-color: rgba(240, 199, 94, 0.5);
}

.table-wrap tbody tr:nth-child(even) td,
.table-scroll tbody tr:nth-child(even) td,
.table-wrap table > tr:nth-of-type(even) td,
.table-scroll table > tr:nth-of-type(even) td {
  background: rgba(240, 199, 94, 0.025);
}

.table-wrap tbody tr:hover td,
.table-scroll tbody tr:hover td,
.table-wrap table > tr:hover td,
.table-scroll table > tr:hover td {
  background: rgba(240, 199, 94, 0.075);
}

.table-wrap::-webkit-scrollbar-thumb,
.table-scroll::-webkit-scrollbar-thumb {
  background: rgba(240, 199, 94, 0.68);
}

.footer-inner {
  border-top: 1px solid rgba(240, 199, 94, 0.2);
  box-shadow:
    inset 0 2px 0 rgba(240, 199, 94, 0.1),
    0 -18px 46px rgba(0, 0, 0, 0.08);
}

/* Final header and mobile drawer color lock: one solid gold accent. */
:root {
  --locale-gold: #f4c84f;
}

.topbar {
  border-bottom-color: transparent;
}

.topbar::after {
  right: 0;
  bottom: 0;
  left: 0;
  width: auto;
  height: 2px;
  background: var(--locale-gold);
  box-shadow: none;
  opacity: 0.82;
}

.nav-links .state-active {
  color: #f8d977;
  border-color: transparent;
}

.nav-links .state-active::after {
  height: 3px;
  background: var(--locale-gold);
  box-shadow: none;
}

@media (max-width: 900px) {
  .topbar {
    background: rgba(24, 42, 49, 0.98);
    border-bottom-color: transparent;
    box-shadow: 0 10px 28px rgba(2, 10, 13, 0.34);
  }

  .topbar::after {
    right: 0;
    bottom: 0;
    left: 0;
    width: auto;
    height: 2px;
    background: var(--locale-gold);
    opacity: 0.86;
  }

  .mobile-burger {
    background: rgba(244, 200, 79, 0.07);
    border: 1px solid rgba(244, 200, 79, 0.34);
  }

  .mobile-burger span {
    background: #f8d977;
  }

  .mobile-menu {
    background:
      radial-gradient(circle at 15% 0, rgba(72, 137, 137, 0.2), transparent 34%),
      linear-gradient(180deg, #203841 0%, #172b33 42%, #101e25 100%);
    border-right-color: rgba(244, 200, 79, 0.58);
    box-shadow: 24px 0 54px rgba(0, 0, 0, 0.46);
  }

  .brand-mobile-drawer-header {
    background: rgba(28, 49, 57, 0.97);
    border-bottom-color: rgba(244, 200, 79, 0.3);
  }

  .brand-mobile-drawer-close {
    color: #f8d977;
    background: rgba(244, 200, 79, 0.07);
    border: 1px solid rgba(244, 200, 79, 0.26);
  }

  .mobile-menu .brand-mobile-drawer-actions > a {
    background: rgba(27, 64, 69, 0.94);
    border-color: rgba(244, 200, 79, 0.38);
  }

  .mobile-menu .brand-mobile-drawer-actions > .ghost {
    color: #172026;
    background: var(--locale-gold);
    border-color: var(--locale-gold);
  }

  .brand-mobile-primary {
    background: rgba(8, 25, 31, 0.78);
    border-color: rgba(244, 200, 79, 0.34);
  }

  .mobile-menu .brand-mobile-primary-link {
    color: #c7d9dd;
  }

  .mobile-menu .brand-mobile-primary-link[aria-current="page"],
  .mobile-menu .brand-mobile-primary-link.state-active {
    color: #fff8df;
    background: rgba(244, 200, 79, 0.16);
    box-shadow: inset 0 0 0 1px rgba(244, 200, 79, 0.4);
  }

  .mobile-menu .brand-mobile-primary-link[aria-current="page"]::after,
  .mobile-menu .brand-mobile-primary-link.state-active::after {
    height: 3px;
    background: var(--locale-gold);
    box-shadow: none;
  }

  .mobile-menu .brand-side-app {
    background:
      radial-gradient(circle at 0 0, rgba(244, 200, 79, 0.12), transparent 46%),
      #28515a;
    border-color: rgba(244, 200, 79, 0.4);
  }

  .mobile-menu .brand-side-wheel {
    color: #fff8df;
    background: linear-gradient(135deg, #28565b, #173740);
    border: 1px solid rgba(244, 200, 79, 0.48);
  }

  .mobile-menu .brand-side-nav-heading {
    color: rgba(248, 217, 119, 0.9);
  }

  .mobile-menu .brand-side-link:hover,
  .mobile-menu .brand-side-link:focus-visible {
    background: rgba(244, 200, 79, 0.09);
  }

  .mobile-menu .brand-side-link--live {
    color: #f4f8f9;
  }

  .mobile-menu .brand-side-link svg {
    color: var(--locale-gold);
  }
}
