@font-face {
  font-family: "national-casino";
  src: url("assets/fonts/national-casino.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #21072b;
  --bg-deep: #14031d;
  --bg-soft: #2d1038;
  --panel: #351540;
  --panel-light: #482052;
  --purple: #67227c;
  --gold: #ffd400;
  --gold-soft: #f4b923;
  --green: #5df231;
  --green-deep: #22c93d;
  --white: #fff9ff;
  --text: #e9ddec;
  --muted: #bba9c0;
  --line: rgba(255, 212, 0, .28);
  --danger: #ff6c81;
  --shadow: 0 24px 70px rgba(8, 0, 12, .36);
  --radius: 24px;
  --radius-small: 14px;
  --content: 1180px;
  --header-height: 76px;
  --sidebar-width: 260px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 90% 8%, rgba(114, 31, 139, .24), transparent 27rem),
    radial-gradient(circle at 5% 25%, rgba(71, 208, 50, .06), transparent 25rem),
    var(--bg);
  font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
  line-height: 1.65;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  color: #111;
  background: var(--green);
  border-radius: 8px;
  transform: translateY(-160%);
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  min-height: var(--header-height);
  background: #2b1234;
  border-bottom: 1px solid rgba(255, 255, 255, .045);
  box-shadow: 0 8px 24px rgba(12, 2, 16, .18);
}

.header-inner {
  width: min(calc(100% - 36px), 1440px);
  min-height: var(--header-height);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 34px;
}

.brand {
  min-width: 168px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
}

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

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 17px;
  flex: 1;
}

.desktop-nav a {
  position: relative;
  padding: 8px 2px;
  color: #eee0ef;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  transition: color .2s ease, text-shadow .2s ease;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 50%;
  bottom: 2px;
  left: 50%;
  height: 2px;
  background: var(--gold);
  box-shadow: 0 0 9px rgba(255, 212, 0, .6);
  transition: right .22s ease, left .22s ease;
}

.desktop-nav a:hover {
  color: var(--gold);
  text-shadow: 0 0 13px rgba(255, 212, 0, .34);
}

.desktop-nav a:hover::after {
  right: 2px;
  left: 2px;
}

.desktop-nav-separator {
  position: relative;
  width: 16px;
  height: 12px;
  flex: 0 0 16px;
  display: block;
}

.desktop-nav-separator::before,
.desktop-nav-separator::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 4px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
  transform: translateY(-50%);
}

.desktop-nav-separator::before {
  left: 0;
}

.desktop-nav-separator::after {
  right: 0;
  transform: translateY(-50%) rotate(180deg);
}

.desktop-nav-separator i {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 7px;
  height: 7px;
  border: 1px solid var(--gold);
  box-sizing: border-box;
  transform: translate(-50%, -50%) rotate(45deg);
}

.desktop-nav-separator i::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 1px;
  height: 1px;
  background: var(--gold);
  box-shadow: 0 0 3px rgba(253, 205, 10, .85);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.button {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 48px;
  padding: 12px 24px;
  border: 1px solid transparent;
  border-radius: 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #15100c;
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .18);
  transition: transform .18s ease, filter .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.button::before {
  content: "";
  position: absolute;
  z-index: 1;
  pointer-events: none;
  top: -40%;
  bottom: -40%;
  left: -60%;
  width: 38%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .58), transparent);
  transform: skewX(-22deg);
  transition: left .45s ease;
}

.button:hover {
  transform: translateY(-1px);
  filter: brightness(1.09) saturate(1.08);
}

.button:hover::before {
  left: 125%;
}

.button:active {
  transform: translateY(1px) scale(.985);
}

.button-primary {
  background: linear-gradient(180deg, #a8ff35 0%, var(--green) 44%, var(--green-deep) 100%);
  border-color: rgba(186, 255, 104, .8);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .5), 0 5px 15px rgba(30, 220, 59, .25);
  text-shadow: 0 1px 0 rgba(255, 255, 255, .45);
}

.button-primary:hover {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .65), 0 0 18px rgba(74, 244, 48, .48), 0 9px 20px rgba(0, 0, 0, .25);
}

.button-outline {
  color: var(--gold);
  background: rgba(34, 8, 44, .68);
  border-color: var(--gold);
}

.button-outline:hover {
  color: #fff075;
  border-color: #ffe65c;
  box-shadow: inset 0 0 14px rgba(255, 212, 0, .08), 0 0 14px rgba(255, 212, 0, .28);
}

.button-small {
  min-height: 42px;
  padding: 9px 20px;
  font-size: 14px;
}

.menu-toggle {
  width: 46px;
  height: 44px;
  padding: 10px;
  display: none;
  place-content: center;
  gap: 5px;
  color: var(--white);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 9px;
}

.menu-toggle span:not(.sr-only) {
  width: 23px;
  height: 2px;
  display: block;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}

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

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

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

.mobile-nav {
  position: fixed;
  inset: var(--header-height) 0 0;
  padding: 30px 24px;
  background: rgba(23, 3, 32, .98);
  overflow-y: auto;
}

.mobile-nav > a {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  padding: 18px 5px;
  display: block;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  border-radius: 8px;
  font-size: 20px;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  transition: color .2s ease, background-color .2s ease, border-color .2s ease, text-shadow .2s ease;
}

.mobile-nav > a:hover,
.mobile-nav > a:focus-visible {
  color: var(--gold);
  background: rgba(255, 212, 0, .08);
  border-color: rgba(255, 212, 0, .28);
  text-shadow: 0 0 12px rgba(255, 212, 0, .35);
}

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

.mobile-nav-actions {
  width: 100%;
  max-width: 520px;
  margin: 26px auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.mobile-nav-actions .button {
  width: min(100%, 280px);
  margin: 0 auto;
  justify-content: center;
}

.casino-sidebar {
  display: none;
}

.desktop-layout {
  min-width: 0;
}

.sidebar-promos {
  display: grid;
  gap: 9px;
  padding-left: 4px;
  margin-right: -5px;
}

.sidebar-promo {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  height: 52px;
  padding: 0 12px 0 0;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  align-items: center;
  gap: 5px;
  color: #170622;
  background: linear-gradient(180deg, #58d743 0%, #49d442 48%, #3dcc40 100%);
  border: 1px solid rgba(126, 247, 101, .5);
  border-radius: 5px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .3), 0 7px 18px rgba(0, 0, 0, .2);
  font-size: 13px;
  font-weight: 1000;
  line-height: 1.15;
  text-decoration: none;
  transition: filter .18s ease, transform .18s ease, box-shadow .18s ease;
}

.sidebar-promo::after {
  content: "";
  position: absolute;
  z-index: 1;
  pointer-events: none;
  top: -55%;
  bottom: -55%;
  left: -55%;
  width: 34%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .52), transparent);
  transform: skewX(-20deg);
  transition: left .42s ease;
}

.sidebar-promo:hover {
  filter: brightness(1.1) saturate(1.08);
  transform: translateY(-1px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .4), 0 0 15px rgba(42, 223, 65, .42);
}

.sidebar-promo:hover::after {
  left: 125%;
}

.sidebar-promo:active {
  transform: translateY(1px) scale(.99);
}

.sidebar-promo:hover .sidebar-wheel-disc {
  animation-duration: 1.25s;
  filter: brightness(1.08) drop-shadow(0 2px 4px rgba(49, 6, 57, .5));
}

.sidebar-promo:hover .sidebar-mission-art {
  transform: translateY(-2px) scale(1.04);
}

.sidebar-wheel-art {
  position: relative;
  width: 58px;
  height: 52px;
  display: block;
  align-self: stretch;
}

.sidebar-wheel-art img {
  position: absolute;
  left: 50%;
  top: 50%;
  max-width: none;
}

.sidebar-wheel-disc {
  width: 44px;
  height: 44px;
  animation: sidebar-wheel-spin 3.2s linear infinite;
  filter: drop-shadow(0 2px 3px rgba(49, 6, 57, .42));
}

.sidebar-wheel-frame {
  z-index: 2;
  width: 50px;
  height: 50px;
  transform: translate(-50%, -49%);
  filter: drop-shadow(0 2px 3px rgba(55, 14, 40, .5));
}

.sidebar-mission-art {
  width: 49px;
  height: 49px;
  object-fit: contain;
  transition: transform .2s ease;
}

@keyframes sidebar-wheel-spin {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.sidebar-menu {
  margin: 16px 6px 0 9px;
  background: #3c2944;
  border-radius: 5px;
  box-shadow: 0 10px 28px rgba(5, 0, 9, .24);
}

.sidebar-menu a {
  position: relative;
  min-height: 58px;
  padding: 8px 14px;
  display: grid;
  grid-template-columns: 33px minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
  color: #e6dce8;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.15;
  text-decoration: none;
  transition: color .18s ease, background .18s ease, padding-left .18s ease;
}

.sidebar-menu a:hover,
.sidebar-menu a.active {
  color: #fff;
  padding-left: 17px;
  background: linear-gradient(90deg, rgba(255, 255, 255, .1), rgba(255, 255, 255, .025));
}

.sidebar-menu a::before {
  content: "";
  position: absolute;
  top: 13px;
  bottom: 13px;
  left: 0;
  width: 2px;
  background: var(--gold);
  box-shadow: 0 0 8px rgba(255, 212, 0, .65);
  opacity: 0;
  transform: scaleY(.35);
  transition: opacity .18s ease, transform .18s ease;
}

.sidebar-menu a:hover::before,
.sidebar-menu a.active::before {
  opacity: 1;
  transform: scaleY(1);
}

.sidebar-nav-icon {
  width: 32px;
  height: 32px;
  display: grid;
  place-content: center;
  color: #fffaf3;
  filter: drop-shadow(.7px 0 rgba(255, 149, 236, .78)) drop-shadow(-.7px 0 rgba(141, 211, 255, .48));
  transition: color .18s ease, filter .18s ease, transform .18s ease;
}

.sidebar-nav-icon.font-icon {
  font-family: "national-casino", sans-serif;
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  font-variant: normal;
  line-height: 1;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.nc-puzzle::before {
  content: "\e910";
}

.nc-dealer::before {
  content: "\e91f";
}

.nc-horn::before {
  content: "\e919";
}

.nc-tournament::before {
  content: "\e90b";
}

.nc-wreath::before {
  content: "\e907";
}

.nc-vip::before {
  content: "\e909";
}

.nc-support::before {
  content: "\e90c";
}

.sidebar-nav-icon svg {
  width: 31px;
  height: 31px;
  display: block;
  fill: currentColor;
}

.sidebar-nav-icon img {
  width: 31px;
  height: 31px;
  display: block;
  object-fit: contain;
}

.sidebar-nav-icon--sport svg {
  width: 28px;
  height: 28px;
}

.sidebar-nav-icon--live svg {
  width: 31px;
  height: 24px;
}

.sidebar-menu a:hover .sidebar-nav-icon {
  color: #fff;
  filter: drop-shadow(0 0 5px rgba(255, 116, 225, .62));
  transform: scale(1.06);
}

.sidebar-chevron {
  width: 17px;
  height: 16px;
  display: grid;
  place-items: center;
  color: #e7dce9;
}

.sidebar-chevron svg {
  width: 12px;
  height: 12px;
  display: block;
  fill: currentColor;
}

.sidebar-badge {
  min-width: 24px;
  padding: 2px 5px;
  color: #1b0824;
  background: linear-gradient(180deg, #85ff5a, #27d940);
  border-radius: 6px;
  box-shadow: 0 2px 7px rgba(0, 0, 0, .3);
  font-size: 12px;
  text-align: center;
  transition: filter .18s ease, transform .18s ease;
}

.sidebar-menu a:hover .sidebar-badge {
  filter: brightness(1.12);
  transform: scale(1.06);
}

.sidebar-page-nav {
  padding: 0 16px;
}

.sidebar-page-nav h2 {
  margin: 14px 0 7px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
}

.sidebar-page-nav nav {
  display: grid;
  gap: 1px;
}

.sidebar-page-nav a {
  min-height: 60px;
  padding: 6px 3px;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  color: inherit;
  border-radius: 5px;
  text-decoration: none;
  transition: background .18s ease, transform .18s ease;
}

.sidebar-page-nav a:hover,
.sidebar-page-nav a.active {
  background: rgba(255, 255, 255, .055);
}

.sidebar-page-nav a:hover {
  transform: translateX(3px);
}

.page-nav-thumb {
  position: relative;
  width: 48px;
  height: 48px;
  overflow: hidden;
  display: grid;
  place-content: center;
  color: #fff;
  border-radius: 4px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .14), 0 4px 10px rgba(0, 0, 0, .2);
  font-size: 14px;
  font-weight: 1000;
}

.page-nav-thumb::before {
  content: "";
  position: absolute;
  width: 34px;
  height: 34px;
  right: -8px;
  bottom: -10px;
  border: 6px solid rgba(255, 255, 255, .1);
  border-radius: 50%;
}

.theme-violet {
  background: radial-gradient(circle at 30% 20%, #e09cff, transparent 30%), linear-gradient(135deg, #8b2db0, #2b0a42);
}

.theme-blue {
  background: radial-gradient(circle at 30% 20%, #69efff, transparent 30%), linear-gradient(135deg, #0587aa, #142052);
}

.theme-green {
  background: radial-gradient(circle at 30% 20%, #a7ff78, transparent 30%), linear-gradient(135deg, #26a94e, #103b32);
}

.theme-red {
  background: radial-gradient(circle at 30% 20%, #ff9a7e, transparent 30%), linear-gradient(135deg, #d63b55, #4e0b32);
}

.theme-gold {
  color: #24112b;
  background: radial-gradient(circle at 30% 20%, #fff5a4, transparent 30%), linear-gradient(135deg, #ffc429, #d0671e);
}

.sidebar-page-nav strong,
.sidebar-page-nav small {
  display: block;
}

.sidebar-page-nav strong {
  overflow: hidden;
  color: #f5edf7;
  font-size: 12px;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sidebar-page-nav small {
  margin-top: 2px;
  overflow: hidden;
  color: var(--gold);
  font-size: 11px;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sidebar-page-nav a.active strong {
  color: var(--gold);
}

.text-link {
  position: relative;
  transition: color .18s ease, text-shadow .18s ease;
}

.text-link::after {
  content: "";
  position: absolute;
  right: 100%;
  bottom: -3px;
  left: 0;
  height: 2px;
  background: var(--gold);
  box-shadow: 0 0 8px rgba(255, 212, 0, .45);
  transition: right .22s ease;
}

.text-link:hover {
  color: #fff16a;
  text-shadow: 0 0 12px rgba(255, 212, 0, .35);
}

.text-link:hover::after {
  right: 0;
}

.hero {
  position: relative;
  min-height: 552px;
  overflow: hidden;
  isolation: isolate;
}

.hero-image {
  position: absolute;
  z-index: -3;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(23, 2, 31, .8) 0%, rgba(29, 5, 39, .55) 39%, rgba(30, 4, 42, .04) 70%),
    linear-gradient(0deg, var(--bg) 0%, transparent 24%);
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.hero-content {
  width: min(calc(100% - 44px), var(--content));
  min-height: 552px;
  margin: 0 auto;
  padding: 100px 0 90px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.eyebrow,
.section-kicker {
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.7px;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
}

.eyebrow span {
  width: 32px;
  height: 2px;
  background: var(--gold);
  box-shadow: 38px 0 0 rgba(255, 212, 0, .35);
}

.hero-rating {
  padding: 9px 13px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  background: rgba(31, 7, 40, .58);
  border: 1px solid rgba(255, 212, 0, .35);
  border-radius: 9px;
  box-shadow: 0 10px 26px rgba(5, 0, 9, .25);
  -webkit-backdrop-filter: blur(9px);
  backdrop-filter: blur(9px);
  font-size: 12px;
}

.hero-rating-stars {
  color: var(--gold);
  letter-spacing: 2px;
  text-shadow: 0 0 9px rgba(255, 212, 0, .4);
}

.hero-rating strong {
  color: var(--gold);
  font-size: 15px;
}

.hero-rating > span:last-child {
  color: #e7d8e8;
  font-weight: 800;
}

.hero h1 {
  width: min(100%, 720px);
  max-width: 720px;
  margin: 18px 0 18px;
  color: var(--white);
  font-size: clamp(46px, 5vw, 76px);
  font-weight: 1000;
  letter-spacing: -3px;
  line-height: .97;
  text-shadow: 0 12px 30px rgba(0, 0, 0, .42);
}

.hero h1 mark {
  color: var(--gold);
  background: none;
}

.hero-lead {
  width: min(100%, 650px);
  max-width: 650px;
  margin: 0 0 28px;
  color: #f0e5f1;
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.45;
}

.hero-offer {
  max-width: 630px;
  margin-bottom: 28px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--white);
  background: linear-gradient(90deg, rgba(93, 25, 111, .9), rgba(45, 12, 58, .66));
  border: 1px solid rgba(255, 212, 0, .54);
  border-left: 5px solid var(--gold);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-offer strong {
  color: var(--gold);
  font-size: 23px;
  white-space: nowrap;
}

.hero-offer span {
  color: #e7d8e8;
  font-size: 14px;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.text-link {
  color: var(--gold);
  font-weight: 900;
  text-underline-offset: 5px;
}

.responsible-note {
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.responsible-note strong {
  margin-right: 8px;
  color: var(--white);
  font-size: 17px;
}

.page-shell {
  width: min(calc(100% - 40px), 1060px);
  margin: 0 auto;
  padding: 72px 0 110px;
  display: block;
}

.article {
  min-width: 0;
}

.content-section {
  margin-bottom: 78px;
}

.content-section > :first-child {
  margin-top: 0;
}

.content-section h2,
.visual-copy h2 {
  margin: 8px 0 22px;
  color: var(--white);
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -1.5px;
}

.content-section h2::after {
  content: "";
  width: 84px;
  height: 4px;
  margin-top: 16px;
  display: block;
  background: linear-gradient(90deg, var(--gold), transparent);
  border-radius: 4px;
}

.content-section h3 {
  color: var(--white);
  line-height: 1.25;
}

.content-section p {
  color: var(--text);
  font-size: 16px;
}

.content-section:nth-of-type(3n) h2::after {
  background: linear-gradient(90deg, var(--green), var(--gold), transparent);
}

.editorial-disclosure,
.legal-notice {
  margin: 24px 0 30px;
  padding: 18px 20px;
  color: #f1e8f3;
  background: linear-gradient(135deg, rgba(93, 242, 49, .09), rgba(255, 212, 0, .06));
  border: 1px solid rgba(93, 242, 49, .28);
  border-left: 4px solid var(--green);
  border-radius: 12px;
  font-size: 14px;
}

.editorial-disclosure strong,
.legal-notice strong {
  color: var(--green);
}

.feature-list {
  margin: 20px 0 28px;
  padding: 0;
  display: grid;
  gap: 10px;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding: 13px 16px 13px 44px;
  color: var(--text);
  background: rgba(255, 255, 255, .035);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 10px;
}

.feature-list li::before {
  content: "✓";
  position: absolute;
  top: 13px;
  left: 16px;
  color: var(--green);
  font-weight: 1000;
}

.content-section .lead {
  color: #fff6ff;
  font-size: 19px;
  line-height: 1.65;
}

.trust-strip {
  margin: 34px 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: linear-gradient(135deg, rgba(91, 27, 108, .78), rgba(41, 11, 52, .88));
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.trust-strip div {
  padding: 24px 16px;
  text-align: center;
}

.trust-strip div + div {
  border-left: 1px solid rgba(255, 255, 255, .1);
}

.trust-strip strong {
  display: block;
  color: var(--gold);
  font-size: 31px;
  line-height: 1;
}

.trust-strip span {
  margin-top: 7px;
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.facts-card,
.split-panel,
.platform-card,
.welcome-package,
.support-card,
.rating-section,
.author-card {
  background: linear-gradient(145deg, rgba(61, 20, 73, .94), rgba(37, 10, 48, .94));
  border: 1px solid rgba(255, 212, 0, .18);
  box-shadow: var(--shadow);
}

.facts-card {
  padding: 30px;
  border-radius: var(--radius);
}

.facts-card h3 {
  margin: 0 0 18px;
  font-size: 24px;
}

.facts-list {
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 34px;
}

.facts-list div {
  padding: 13px 0;
  display: grid;
  grid-template-columns: 145px 1fr;
  gap: 16px;
  border-top: 1px solid rgba(255, 255, 255, .09);
}

.facts-list dt {
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
}

.facts-list dd {
  margin: 0;
  color: var(--text);
  font-size: 13px;
}

.pros-cons {
  margin-top: 26px;
  display: grid;
  grid-template-columns: 1.35fr .8fr;
  gap: 22px;
  align-items: stretch;
}

.pros-cons section {
  padding: 22px;
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 18px 38px rgba(8, 0, 13, .2);
}

.pros {
  background:
    radial-gradient(circle at 0 0, rgba(93, 242, 49, .13), transparent 13rem),
    linear-gradient(145deg, rgba(45, 88, 45, .23), rgba(41, 13, 52, .9));
  border: 1px solid rgba(93, 242, 49, .26);
}

.cons {
  background:
    radial-gradient(circle at 0 0, rgba(255, 108, 129, .13), transparent 11rem),
    linear-gradient(145deg, rgba(115, 41, 61, .23), rgba(41, 13, 52, .9));
  border: 1px solid rgba(255, 108, 129, .23);
}

.pros-cons-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 17px;
}

.pros-cons-heading > img {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  display: block;
}

.docx-content .pros-cons h3 {
  margin: 0;
  font-size: 25px;
  line-height: 1.1;
}

.pros-cons ul {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 9px;
  list-style: none;
}

.pros-cons li {
  margin: 0;
  padding: 11px 12px;
  display: grid;
  grid-template-columns: 27px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  color: var(--text);
  background: rgba(255, 255, 255, .035);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 11px;
  font-size: 14px;
  line-height: 1.45;
  transition: background .18s ease, border-color .18s ease, transform .18s ease;
}

.pros-cons li > img {
  width: 27px;
  height: 27px;
  display: block;
}

.pros-cons li > span {
  padding-top: 3px;
}

.pros li:hover {
  background: rgba(93, 242, 49, .075);
  border-color: rgba(93, 242, 49, .2);
  transform: translateX(2px);
}

.cons li:hover {
  background: rgba(255, 108, 129, .075);
  border-color: rgba(255, 108, 129, .2);
  transform: translateX(2px);
}

.step-grid {
  margin: 30px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.step-card {
  position: relative;
  min-height: 230px;
  padding: 28px 22px;
  background: linear-gradient(155deg, var(--panel-light), var(--panel));
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 18px;
  overflow: hidden;
}

.step-card::after {
  content: "";
  position: absolute;
  right: -30px;
  bottom: -40px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(255, 212, 0, .16), transparent 66%);
}

.step-number {
  position: absolute;
  top: 10px;
  right: 16px;
  color: rgba(255, 255, 255, .12);
  font-size: 50px;
  font-weight: 1000;
}

.step-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-content: center;
  color: #1a0e08;
  background: var(--gold);
  border-radius: 13px;
  font-size: 22px;
  font-weight: 900;
  transform: rotate(-4deg);
}

.step-card h3 {
  margin: 22px 0 8px;
}

.step-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.step-card .step-icon + p {
  margin-top: 20px;
}

.split-panel {
  margin-top: 28px;
  padding: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  border-radius: var(--radius);
}

.split-panel h3 {
  margin-top: 0;
  font-size: 24px;
}

.number-list {
  margin: 0;
  padding: 0;
  counter-reset: steps;
  list-style: none;
}

.number-list li {
  position: relative;
  padding: 9px 0 9px 38px;
  counter-increment: steps;
  color: var(--text);
}

.number-list li::before {
  content: counter(steps);
  position: absolute;
  top: 8px;
  left: 0;
  width: 25px;
  height: 25px;
  display: grid;
  place-content: center;
  color: #1d1021;
  background: var(--gold);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 900;
}

.kyc-box {
  padding: 25px;
  background: rgba(21, 4, 28, .58);
  border: 1px solid rgba(93, 242, 49, .2);
  border-radius: 16px;
}

.mini-label {
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.kyc-box p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.visual-section {
  position: relative;
  min-height: 450px;
  margin: 0 0 78px;
  border: 1px solid rgba(255, 212, 0, .23);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  isolation: isolate;
}

.visual-section > img {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visual-section::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, rgba(27, 4, 36, .08) 20%, rgba(28, 5, 38, .84) 58%, rgba(22, 3, 30, .98) 100%);
}

.vip-section::after {
  background: linear-gradient(90deg, rgba(22, 3, 30, .98) 0%, rgba(28, 5, 38, .82) 47%, rgba(27, 4, 36, .08) 80%);
}

.visual-copy {
  width: 50%;
  min-height: 450px;
  padding: 56px 46px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.visual-copy-right {
  margin-left: auto;
}

.visual-copy h2 {
  margin-bottom: 16px;
}

.visual-copy p {
  color: var(--text);
}

.visual-copy .button {
  align-self: flex-start;
  margin-top: 16px;
}

.feature-pills {
  margin: 10px 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  list-style: none;
}

.feature-pills li {
  padding: 7px 11px;
  color: var(--white);
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.platform-grid {
  margin: 28px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.platform-card {
  padding: 28px;
  border-radius: 18px;
}

.platform-head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.platform-head > span {
  width: 38px;
  height: 38px;
  display: grid;
  place-content: center;
  color: #201024;
  background: var(--gold);
  border-radius: 10px;
}

.platform-head h3 {
  margin: 0;
}

.platform-card ol {
  padding-left: 20px;
}

.platform-card li {
  margin: 8px 0;
  color: var(--text);
}

.warning-box,
.editorial-note {
  padding: 18px 20px;
  color: #f4eaf5;
  background: rgba(255, 187, 0, .08);
  border: 1px solid rgba(255, 212, 0, .28);
  border-left: 4px solid var(--gold);
  border-radius: 10px;
  font-size: 14px;
}

.welcome-package {
  margin: 30px 0;
  padding: 30px;
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 30px;
  border-radius: var(--radius);
}

.welcome-intro h3 {
  margin: 7px 0 12px;
  font-size: 27px;
}

.welcome-intro p {
  color: var(--muted);
  font-size: 14px;
}

.deposit-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.deposit-timeline div {
  min-height: 155px;
  padding: 17px 13px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(180deg, rgba(105, 36, 124, .9), rgba(42, 12, 53, .9));
  border: 1px solid rgba(255, 212, 0, .22);
  border-radius: 13px;
  text-align: center;
}

.deposit-timeline span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.deposit-timeline strong {
  margin: 5px 0;
  color: var(--gold);
  font-size: 30px;
  line-height: 1;
}

.deposit-timeline small {
  color: var(--text);
  font-size: 10px;
}

.promo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 17px;
}

.tips-grid {
  margin: 26px 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  list-style: none;
}

.tip-card {
  margin: 0;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  background:
    radial-gradient(circle at 0 0, rgba(255, 212, 0, .07), transparent 12rem),
    linear-gradient(145deg, rgba(72, 32, 82, .7), rgba(40, 12, 50, .82));
  border: 1px solid rgba(255, 212, 0, .16);
  border-left: 3px solid var(--gold);
  border-radius: 13px;
  color: var(--text);
  font-size: 15px;
  line-height: 1.4;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.tip-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 212, 0, .4);
  background:
    radial-gradient(circle at 0 0, rgba(255, 212, 0, .12), transparent 12rem),
    linear-gradient(145deg, rgba(84, 38, 96, .78), rgba(46, 14, 58, .88));
}

.tip-icon {
  flex: 0 0 50px;
  width: 50px;
  height: 50px;
  display: block;
  filter: drop-shadow(0 5px 12px rgba(255, 212, 0, .28));
}

.card-coin {
  width: 54px;
  height: 54px;
  margin-bottom: 16px;
  display: block;
  filter: drop-shadow(0 5px 12px rgba(255, 212, 0, .28));
}

.step-card .card-coin + p {
  margin-top: 0;
}

.promo-card {
  position: relative;
  min-height: 245px;
  padding: 25px;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 212, 0, .13), transparent 9rem),
    linear-gradient(145deg, var(--panel-light), var(--panel));
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 18px;
  overflow: hidden;
}

.promo-card::after {
  content: "";
  position: absolute;
  right: -25px;
  bottom: -30px;
  width: 110px;
  height: 110px;
  border: 18px solid rgba(255, 212, 0, .05);
  border-radius: 50%;
}

.promo-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 20px;
  display: grid;
  place-content: center;
  color: #1c1020;
  background: linear-gradient(145deg, #fff176, var(--gold-soft));
  border-radius: 50%;
  font-size: 15px;
  font-weight: 1000;
  box-shadow: 0 0 30px rgba(255, 212, 0, .18);
}

.promo-card h3 {
  margin: 6px 0 10px;
  color: var(--white);
  font-size: 21px;
}

.promo-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

#app-requirements-and-compatible-devices .promo-card {
  min-height: 158px;
}

#app-requirements-and-compatible-devices .promo-card p {
  color: var(--text);
  font-size: 16px;
  line-height: 1.5;
}

.vip-stat {
  margin: 12px 0;
  padding: 15px;
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 212, 0, .09);
  border: 1px solid rgba(255, 212, 0, .25);
  border-radius: 10px;
}

.vip-stat strong {
  color: var(--gold);
  font-size: 22px;
}

.vip-stat span {
  color: var(--text);
  font-size: 13px;
}

.small-copy {
  color: var(--muted) !important;
  font-size: 12px !important;
}

.table-wrap {
  margin: 28px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(150deg, rgba(58, 20, 70, .96), rgba(30, 8, 40, .98));
  border: 1px solid rgba(255, 212, 0, .3);
  border-radius: 16px;
  box-shadow: var(--shadow);
}

table {
  width: 100%;
  min-width: 0;
  table-layout: fixed;
  border-collapse: collapse;
  background: transparent;
}

th,
td {
  padding: 14px 18px;
  border-right: 1px solid rgba(255, 255, 255, .07);
  border-bottom: 1px solid rgba(255, 255, 255, .07);
  text-align: left;
  vertical-align: middle;
}

th:last-child,
td:last-child {
  border-right: 0;
}

tbody tr:last-child th,
tbody tr:last-child td {
  border-bottom: 0;
}

thead th {
  color: #2a1330;
  background: linear-gradient(135deg, #ffe45e, var(--gold-soft));
  border-right-color: rgba(42, 19, 48, .16);
  border-bottom: 0;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .6px;
  text-transform: uppercase;
}

tbody th {
  color: var(--white);
  background: rgba(255, 212, 0, .05);
  font-size: 13px;
  font-weight: 800;
}

tbody td {
  color: var(--text);
  font-size: 13px;
}

tbody tr {
  transition: background .18s ease;
}

tbody tr:nth-child(even) {
  background: rgba(255, 255, 255, .032);
}

tbody tr:hover {
  background: rgba(124, 231, 71, .06);
}

.game-category-grid {
  margin: 28px 0 38px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.game-category-grid article {
  padding: 22px 17px;
  background: linear-gradient(145deg, rgba(72, 30, 82, .95), rgba(40, 12, 50, .95));
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 16px;
  text-align: center;
}

.game-category-grid article > span {
  width: 48px;
  height: 48px;
  margin: 0 auto 14px;
  display: grid;
  place-content: center;
  color: #211124;
  background: var(--gold);
  border-radius: 13px;
  font-size: 20px;
  font-weight: 900;
}

.game-category-grid h3 {
  margin: 0 0 8px;
  font-size: 17px;
}

.game-category-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.subheading {
  margin-top: 38px;
  font-size: 26px;
}

.accordion-list {
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.accordion-list details {
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.accordion-list summary {
  padding: 18px 42px 18px 0;
  position: relative;
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 18px;
  color: var(--white);
  cursor: pointer;
  list-style: none;
}

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

.accordion-list summary::before,
.accordion-list summary::after,
.faq-list summary::before,
.faq-list summary::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 50%;
  display: block;
  background: var(--gold);
  border-radius: 4px;
  box-shadow: 0 0 7px rgba(255, 212, 0, .38);
  transform: translateY(-50%);
  transform-origin: center;
  transition: transform .24s ease, opacity .18s ease, box-shadow .24s ease;
}

.accordion-list summary::before,
.faq-list summary::before {
  width: 14px;
  height: 2px;
}

.accordion-list summary::after,
.faq-list summary::after {
  width: 2px;
  height: 14px;
}

.accordion-list summary::before {
  right: 5px;
}

.accordion-list summary::after {
  right: 11px;
}

.accordion-list details[open] summary::before,
.faq-list details[open] summary::before {
  box-shadow: 0 0 11px rgba(255, 212, 0, .68);
  transform: translateY(-50%) rotate(180deg);
}

.accordion-list details[open] summary::after,
.faq-list details[open] summary::after {
  opacity: 0;
  transform: translateY(-50%) rotate(90deg) scaleY(0);
}

.accordion-list summary span {
  color: var(--gold);
  font-weight: 900;
}

.accordion-list summary b {
  color: var(--text);
  font-size: 14px;
}

.accordion-list details p {
  max-width: 720px;
  margin: -2px 0 20px 168px;
  color: var(--muted);
  font-size: 14px;
}

.editorial-note {
  margin-top: 26px;
  display: flex;
  gap: 18px;
}

.editorial-note > span {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  display: grid;
  place-content: center;
  color: #201024;
  background: var(--gold);
  border-radius: 50%;
  font-size: 22px;
  font-weight: 1000;
}

.editorial-note p {
  margin: 5px 0 0;
  color: var(--text);
  font-size: 13px;
}

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

.payment-grid article {
  padding: 22px 16px;
  background: rgba(60, 22, 71, .8);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 14px;
}

.payment-grid article > span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 1000;
  letter-spacing: 1px;
}

.payment-grid h3 {
  margin: 8px 0 3px;
  font-size: 18px;
}

.payment-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.support-card {
  margin-top: 28px;
  padding: 25px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-radius: 16px;
}

.support-card h3 {
  margin: 5px 0;
}

.support-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.support-email {
  padding: 11px 15px;
  color: #201024;
  background: var(--gold);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 900;
}

.faq-list {
  margin-top: 28px;
  display: grid;
  gap: 12px;
}

.faq-list details {
  background: rgba(55, 20, 65, .78);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 13px;
  transition: background .24s ease, border-color .24s ease, box-shadow .24s ease;
}

.faq-list details[open] {
  background: rgba(66, 24, 77, .9);
  border-color: rgba(255, 212, 0, .2);
  box-shadow: 0 12px 28px rgba(8, 0, 12, .2);
}

.faq-list summary {
  position: relative;
  padding: 19px 54px 19px 21px;
  color: var(--white);
  cursor: pointer;
  font-size: 16px;
  font-weight: 900;
  list-style: none;
}

.faq-list summary::before {
  right: 20px;
}

.faq-list summary::after {
  right: 26px;
}

.faq-list details > div {
  padding: 0 21px 18px;
}

.faq-list details[open] > div {
  animation: faq-content-reveal .24s ease both;
}

@keyframes faq-content-reveal {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.faq-list p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.review-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 17px;
}

.review-grid blockquote {
  margin: 0;
  padding: 25px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 0%, rgba(255, 212, 0, .12), transparent 7rem),
    linear-gradient(145deg, var(--panel-light), var(--panel));
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 18px;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.review-grid blockquote::after {
  content: "”";
  position: absolute;
  right: 16px;
  bottom: -34px;
  color: rgba(255, 212, 0, .09);
  font-size: 108px;
  font-weight: 1000;
  line-height: 1;
  pointer-events: none;
}

.review-grid blockquote:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 212, 0, .24);
  box-shadow: 0 16px 34px rgba(8, 0, 13, .22);
}

.review-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 17px;
}

.review-avatar {
  width: 62px;
  height: 62px;
  flex: 0 0 62px;
  display: block;
  object-fit: cover;
  object-position: center;
  border: 2px solid var(--gold);
  border-radius: 50%;
  background: #24102d;
  box-shadow:
    0 0 0 4px rgba(255, 212, 0, .1),
    0 8px 20px rgba(8, 0, 13, .34);
}

.review-author {
  min-width: 0;
}

.stars {
  color: var(--gold);
  letter-spacing: 2px;
}

.review-card-head .stars {
  margin-bottom: 6px;
  display: block;
  font-size: 13px;
  line-height: 1;
}

.review-grid blockquote p {
  margin: 0;
  min-height: 160px;
  color: #f2e8f3;
  font-size: 14px;
  font-style: italic;
}

.review-grid footer {
  color: var(--gold);
  font-weight: 900;
  line-height: 1.2;
}

.review-disclaimer {
  color: var(--muted) !important;
  font-size: 12px !important;
}

.rating-section {
  padding: 34px;
  border-radius: var(--radius);
}

.rating-summary {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 35px;
  align-items: center;
}

.rating-score {
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle, rgba(255, 212, 0, .18), rgba(92, 30, 109, .52));
  border: 2px solid var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 45px rgba(255, 212, 0, .12);
}

.rating-score span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.rating-score strong {
  color: var(--gold);
  font-size: 62px;
  line-height: 1;
}

.rating-score small {
  color: var(--white);
}

.rating-copy h2 {
  margin-top: 8px;
}

.rating-bars {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 32px;
}

.rating-bars span {
  margin-bottom: 7px;
  display: flex;
  justify-content: space-between;
  color: var(--text);
  font-size: 13px;
}

.rating-bars b {
  color: var(--gold);
}

.rating-bars i {
  position: relative;
  height: 8px;
  display: block;
  background: rgba(255, 255, 255, .08);
  border-radius: 10px;
  overflow: hidden;
}

.rating-bars i::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--score);
  background: linear-gradient(90deg, var(--gold-soft), var(--green));
  border-radius: inherit;
}

.score-100 {
  --score: 100%;
}

.score-90 {
  --score: 90%;
}

.score-80 {
  --score: 80%;
}

.conclusion-section {
  margin-bottom: 0;
}

.author-card {
  margin-top: 30px;
  padding: 20px;
  display: grid;
  grid-template-columns: 58px 190px 1fr;
  gap: 16px;
  align-items: center;
  border-radius: 16px;
}

.author-avatar {
  width: 58px;
  height: 58px;
  display: grid;
  place-content: center;
  color: #1b0c20;
  background: linear-gradient(145deg, var(--gold), var(--green));
  border-radius: 50%;
  font-weight: 1000;
}

.author-card strong,
.author-card span {
  display: block;
}

.author-card strong {
  color: var(--white);
}

.author-card span {
  color: var(--gold);
  font-size: 12px;
}

.author-card p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.site-footer {
  color: var(--muted);
  background:
    linear-gradient(180deg, rgba(22, 3, 30, .8), rgba(10, 1, 14, .98)),
    var(--bg-deep);
  border-top: 1px solid rgba(255, 212, 0, .2);
}

.footer-main,
.responsible-footer,
.footer-bottom {
  width: min(calc(100% - 40px), var(--content));
  margin: 0 auto;
}

.footer-main {
  padding: 55px 0 36px;
  display: grid;
  grid-template-columns: 180px 1fr auto;
  gap: 30px;
  align-items: center;
}

.footer-brand {
  justify-self: start;
}

.footer-brand img {
  width: 128px;
}

.footer-main p {
  max-width: 520px;
  margin: 0;
  font-size: 13px;
}

.footer-main nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-main nav a {
  color: var(--text);
  font-size: 13px;
}

.responsible-footer {
  padding: 25px 0;
  display: flex;
  align-items: center;
  gap: 18px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.responsible-footer strong {
  width: 55px;
  height: 55px;
  flex: 0 0 auto;
  display: grid;
  place-content: center;
  color: var(--white);
  border: 2px solid var(--gold);
  border-radius: 50%;
  font-size: 18px;
}

.responsible-footer p {
  margin: 0;
  font-size: 12px;
}

.footer-bottom {
  padding: 22px 0 28px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 11px;
}

.footer-bottom a {
  color: var(--gold);
}

@media (min-width: 1181px) {
  .has-sidebar .site-header .brand {
    min-width: var(--sidebar-width);
    flex: 0 0 var(--sidebar-width);
    justify-content: center;
  }

  .desktop-layout {
    width: min(calc(100% - 36px), 1440px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: var(--sidebar-width) minmax(0, 1fr);
    align-items: start;
  }

  .casino-sidebar {
    position: sticky;
    z-index: 90;
    top: var(--header-height);
    width: var(--sidebar-width);
    max-height: calc(100vh - var(--header-height));
    padding: 12px 14px 28px;
    display: block;
    background: #2b1234;
    border-right: 1px solid rgba(255, 255, 255, .05);
    box-shadow: 14px 0 30px rgba(10, 0, 15, .18);
    overflow-y: auto;
    scrollbar-width: none;
  }

  .casino-sidebar::-webkit-scrollbar {
    display: none;
  }

  main {
    min-width: 0;
  }

  .hero-content {
    width: min(calc(100% - 64px), 1110px);
  }

  .page-shell {
    width: min(calc(100% - 70px), 1060px);
  }
}

@media (max-width: 1120px) {
  .facts-list {
    grid-template-columns: 1fr;
  }

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

  .visual-copy {
    width: 58%;
  }
}

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

  .header-inner {
    min-height: var(--header-height);
  }

  .brand {
    min-width: 120px;
  }

  .brand img {
    width: 105px;
  }

  .desktop-nav,
  .header-actions .button {
    display: none;
  }

  .header-actions {
    margin-left: auto;
  }

  .menu-toggle {
    display: grid;
  }

  .hero,
  .hero-content {
    min-height: 512px;
  }

  .hero-image {
    object-position: 63% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(23, 2, 31, .91) 0%, rgba(29, 5, 39, .7) 58%, rgba(30, 4, 42, .22) 100%),
      linear-gradient(0deg, var(--bg) 0%, transparent 26%);
  }

  .hero-content {
    padding-top: 75px;
  }

  .page-shell {
    display: block;
  }

  .visual-section,
  .visual-copy {
    min-height: 500px;
  }

  .visual-copy {
    width: 62%;
  }

  .visual-section::after {
    background: linear-gradient(90deg, rgba(27, 4, 36, .18), rgba(22, 3, 30, .96) 58%);
  }

  .vip-section::after {
    background: linear-gradient(90deg, rgba(22, 3, 30, .96) 0%, rgba(27, 4, 36, .25) 78%);
  }

  .welcome-package {
    grid-template-columns: 1fr;
  }

  .game-category-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .footer-main nav {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  .header-inner,
  .hero-content,
  .page-shell,
  .footer-main,
  .responsible-footer,
  .footer-bottom {
    width: min(calc(100% - 28px), var(--content));
  }

  .hero,
  .hero-content {
    min-height: 528px;
  }

  .hero-image {
    object-position: 78% center;
  }

  .hero-content {
    text-shadow: 0 2px 14px rgba(10, 0, 16, .85);
  }

  .hero h1 {
    font-size: 52px;
    letter-spacing: -2.5px;
  }

  .hero-lead {
    font-size: 17px;
  }

  .hero-offer {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .hero-offer strong {
    white-space: normal;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 15px;
  }

  .content-section {
    margin-bottom: 60px;
  }

  .content-section h2,
  .visual-copy h2 {
    font-size: 35px;
  }

  .editorial-rating-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .trust-strip {
    grid-template-columns: 1fr 1fr;
  }

  .trust-strip div:nth-child(3) {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, .1);
  }

  .trust-strip div:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, .1);
  }

  .facts-card,
  .split-panel,
  .rating-section {
    padding: 22px 18px;
  }

  .facts-list div {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .pros-cons,
  .step-grid,
  .split-panel,
  .platform-grid,
  .promo-grid,
  .tips-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .visual-section {
    min-height: 650px;
  }

  .visual-section > img {
    object-position: 35% center;
  }

  .visual-section::after,
  .vip-section::after {
    background: linear-gradient(0deg, rgba(22, 3, 30, .98) 0%, rgba(27, 4, 36, .85) 56%, rgba(27, 4, 36, .16) 100%);
  }

  .visual-copy {
    width: 100%;
    min-height: 650px;
    padding: 300px 22px 34px;
    justify-content: flex-end;
  }

  .visual-copy-right {
    margin: 0;
  }

  .deposit-timeline {
    grid-template-columns: 1fr 1fr;
  }

  .game-category-grid,
  .payment-grid {
    grid-template-columns: 1fr 1fr;
  }

  .accordion-list summary {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .accordion-list details p {
    margin-left: 0;
  }

  .support-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .support-email {
    max-width: 100%;
  }

  .table-wrap {
    overflow-x: auto;
  }

  table {
    min-width: 680px;
    table-layout: auto;
  }

  .rating-summary,
  .rating-bars {
    grid-template-columns: 1fr;
  }

  .rating-score {
    width: 170px;
    margin: 0 auto;
  }

  .author-card {
    grid-template-columns: 58px 1fr;
  }

  .author-card p {
    grid-column: 1 / -1;
  }

  .review-grid blockquote p {
    min-height: auto;
  }

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

  .footer-main nav {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 450px) {
  .button {
    align-self: center;
    justify-self: center;
    margin-right: auto;
    margin-left: auto;
  }

  .hero-actions,
  .hero-app-actions,
  .app-buttons {
    width: 100%;
    align-items: center;
    justify-content: center;
  }

  .visual-copy {
    align-items: center;
  }

  .visual-copy .button {
    align-self: center;
  }

  .bonus-banner .button {
    justify-self: center;
  }

  .hero h1 {
    font-size: 44px;
  }

  .trust-strip,
  .deposit-timeline,
  .game-category-grid,
  .payment-grid {
    grid-template-columns: 1fr;
  }

  .trust-strip div + div,
  .trust-strip div:nth-child(3) {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, .1);
  }
}

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

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

.breadcrumbs {
  margin: 0 0 34px;
  color: var(--muted);
  font-size: 13px;
}

.breadcrumbs a {
  color: var(--gold);
  text-underline-offset: 4px;
}

.docx-content h3 {
  margin: 34px 0 14px;
  font-size: clamp(22px, 2.5vw, 29px);
}

.docx-content ul,
.legal-shell ul {
  margin: 24px 0 30px;
  padding: 13px 16px 13px 20px;
  position: relative;
  overflow: hidden;
  list-style: none;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 212, 0, .09), transparent 13rem),
    linear-gradient(135deg, rgba(69, 27, 81, .72), rgba(41, 11, 52, .72));
  border: 1px solid rgba(255, 212, 0, .17);
  border-left: 3px solid var(--gold);
  border-radius: 14px;
  box-shadow: 0 14px 34px rgba(8, 0, 12, .2);
}

.docx-content li {
  margin: 9px 0;
  color: var(--text);
}

.docx-content ul > li,
.legal-shell ul > li {
  position: relative;
  margin: 0;
  padding: 11px 14px 11px 32px;
  border-radius: 9px;
  line-height: 1.55;
  transition: color .18s ease, background .18s ease, transform .18s ease;
}

.docx-content ul > li + li,
.legal-shell ul > li + li {
  border-top: 1px solid rgba(255, 255, 255, .075);
}

.docx-content ul > li::before,
.legal-shell ul > li::before {
  content: "";
  position: absolute;
  top: 19px;
  left: 10px;
  width: 8px;
  height: 8px;
  background: linear-gradient(135deg, #fff176, var(--gold));
  border: 1px solid rgba(255, 255, 255, .48);
  box-shadow: 0 0 9px rgba(255, 212, 0, .45);
  transform: rotate(45deg);
}

.docx-content ul > li:hover,
.legal-shell ul > li:hover {
  color: var(--white);
  background: rgba(255, 255, 255, .045);
  transform: translateX(3px);
}

.docx-content .pros-cons ul {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 9px;
  overflow: visible;
  background: none;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.docx-content .pros-cons ul > li {
  padding: 11px 12px;
}

.docx-content .pros-cons ul > li + li {
  border-top: 0;
}

.docx-content .pros-cons ul > li::before {
  content: none;
}

.docx-content .pros-cons ul > li:hover {
  transform: translateX(2px);
}

.docx-content .pros-cons li {
  padding-left: 12px;
}

.docx-content .pros-cons li::before {
  content: none;
}

.section-image {
  position: relative;
  width: 100%;
  height: 400px;
  max-height: 400px;
  margin: 32px 0;
  overflow: hidden;
  background: var(--panel);
  border: 1px solid rgba(255, 212, 0, .3);
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.section-image::after {
  content: "";
  position: absolute;
  pointer-events: none;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 60%, rgba(24, 3, 32, .38)),
    linear-gradient(90deg, rgba(255, 212, 0, .05), transparent 28%);
}

.section-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .45s ease, filter .45s ease;
}

.section-image:hover img {
  filter: brightness(1.05) saturate(1.05);
  transform: scale(1.018);
}

.overview-table-wrap {
  background: linear-gradient(145deg, rgba(58, 20, 70, .96), rgba(31, 8, 41, .98));
}

.overview-table th {
  width: 33%;
}

.overview-table td {
  color: #f3e9f4;
  font-size: 14px;
  line-height: 1.55;
}

.bonus-banner {
  --banner-image: url("assets/images/banners/main-welcome.webp");
  position: relative;
  max-height: 450px;
  min-height: 370px;
  margin: 38px 0;
  padding: 34px;
  display: grid;
  grid-template-columns: minmax(0, 560px);
  align-content: center;
  justify-content: end;
  gap: 28px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(29, 5, 39, 0) 0%, rgba(29, 5, 39, .12) 40%, rgba(29, 5, 39, .72) 72%, rgba(21, 3, 29, .88) 100%),
    var(--banner-image) center / cover no-repeat;
  border: 1px solid rgba(255, 212, 0, .4);
  border-radius: 18px;
  box-shadow: var(--shadow);
  isolation: isolate;
}

.bonus-banner,
.bonus-banner-copy {
  min-width: 0;
  max-width: 100%;
}

.bonus-banner-welcome {
  --banner-image: url("assets/images/banners/main-welcome.webp");
}

.bonus-banner-reload {
  --banner-image: url("assets/images/banners/bonus-reload.webp");
  border-color: rgba(93, 242, 49, .35);
}

.bonus-banner-wheel {
  --banner-image: url("assets/images/banners/main-wheel.webp");
}

.bonus-banner-crypto {
  --banner-image: url("assets/images/banners/main-crypto.webp");
  border-color: rgba(93, 242, 49, .35);
}

.bonus-banner-copy {
  padding: 22px;
  background: rgba(26, 5, 35, .52);
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 16px;
  box-shadow: 0 16px 38px rgba(7, 0, 11, .3);
  -webkit-backdrop-filter: blur(12px) saturate(1.15);
  backdrop-filter: blur(12px) saturate(1.15);
}

.bonus-banner .bonus-banner-kicker {
  margin: 0 0 9px;
  color: var(--white);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: .55px;
  line-height: 1.2;
  text-transform: uppercase;
}

.bonus-banner h3 {
  max-width: 520px;
  margin: 0 0 10px;
  color: var(--gold);
  font-size: clamp(30px, 3.2vw, 43px);
  font-weight: 950;
  letter-spacing: -1px;
  line-height: 1.02;
  text-transform: uppercase;
  text-shadow: 0 4px 20px rgba(0, 0, 0, .3);
}

.bonus-banner p {
  margin: 0;
  color: #f2e8f3;
  font-size: 14px;
}

.bonus-banner .bonus-banner-extra {
  color: var(--gold);
  font-size: clamp(21px, 2.3vw, 29px);
  font-weight: 950;
  letter-spacing: -.45px;
  line-height: 1.08;
  text-transform: uppercase;
}

.bonus-banner .bonus-banner-note {
  margin-top: 10px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .35px;
  text-transform: uppercase;
}

.bonus-banner .button {
  margin-top: 20px;
  min-width: 170px;
  justify-self: start;
  text-transform: uppercase;
}

.app-download-banner {
  height: 370px;
  min-height: 360px;
  max-height: 450px;
  margin: 38px 0;
  padding: 36px 38px 36px 48%;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: linear-gradient(100deg, rgba(32, 5, 42, 0) 22%, rgba(32, 5, 42, .68) 56%, rgba(33, 7, 43, .88) 100%);
  border: 1px solid rgba(255, 212, 0, .34);
  border-radius: 20px;
  box-shadow: var(--shadow);
  isolation: isolate;
}

.app-download-banner > img {
  position: absolute;
  z-index: -1;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.app-download-content {
  width: 100%;
  padding: 22px;
  background: rgba(26, 5, 35, .5);
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 16px;
  box-shadow: 0 16px 38px rgba(7, 0, 11, .28);
  -webkit-backdrop-filter: blur(12px) saturate(1.15);
  backdrop-filter: blur(12px) saturate(1.15);
}

.app-download-content h3 {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: 20px;
  line-height: 1.2;
}

.app-download-banner p {
  margin: 0 0 16px;
  color: #fff6ff;
  font-size: 13px;
  line-height: 1.55;
}

.app-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.app-buttons .button {
  gap: 9px;
}

.app-buttons svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  fill: currentColor;
}

.author-line {
  margin-top: 26px;
  color: var(--gold) !important;
  font-weight: 900;
}

.scroll-top {
  position: fixed;
  z-index: 120;
  right: 22px;
  bottom: 22px;
  width: 48px;
  height: 48px;
  place-items: center;
  color: #1b0824;
  background: linear-gradient(180deg, #a8ff35, var(--green-deep));
  border: 1px solid rgba(186, 255, 104, .8);
  border-radius: 50%;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .38), 0 0 16px rgba(74, 244, 48, .3);
  cursor: pointer;
  font-size: 24px;
  font-weight: 900;
  transition: opacity .2s ease, transform .2s ease, filter .2s ease;
}

.scroll-top:not([hidden]) {
  display: grid;
}

.scroll-top:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
}

.simple-main {
  min-height: 65vh;
}

.page-hero .hero-content {
  padding-top: 70px;
  padding-bottom: 70px;
}

.page-hero h1 {
  max-width: 820px;
  font-size: clamp(40px, 5.2vw, 76px);
  letter-spacing: -3px;
  line-height: .98;
}

.page-hero .hero-lead {
  margin-bottom: 28px;
}

.hero-app-actions {
  flex-wrap: wrap;
  gap: 14px;
}

.hero-app-actions .button {
  gap: 10px;
}

.hero-app-actions svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  fill: currentColor;
}

.hero-breadcrumbs {
  margin: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
  color: rgba(255, 249, 255, .76);
  font-size: 14px;
  font-weight: 800;
}

.hero-breadcrumbs a {
  color: var(--gold);
  text-decoration-color: rgba(255, 212, 0, .45);
  text-underline-offset: 4px;
  transition: color .18s ease, text-shadow .18s ease;
}

.hero-breadcrumbs a:hover {
  color: #fff16a;
  text-shadow: 0 0 12px rgba(255, 212, 0, .4);
}

.hero-breadcrumbs span[aria-hidden="true"] {
  color: rgba(255, 212, 0, .6);
}

.simple-shell {
  width: min(calc(100% - 40px), 1060px);
  margin: 0 auto;
  padding: 68px 0 100px;
}

.legal-shell {
  width: min(calc(100% - 40px), 900px);
}

.legal-shell h1 {
  margin: 0 0 16px;
  color: var(--white);
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1.05;
}

.legal-shell h2 {
  margin: 40px 0 14px;
  color: var(--white);
  font-size: 27px;
}

.legal-shell h3 {
  margin: 28px 0 10px;
  color: var(--white);
}

.legal-shell p,
.legal-shell li {
  color: var(--text);
}

.legal-shell a {
  color: var(--gold);
}

.legal-shell section {
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.legal-shell ul {
  padding-left: 22px;
}

.legal-shell li + li {
  margin-top: 9px;
}

.player-review {
  position: relative;
  margin: 18px 0;
  padding: 22px 24px 22px 54px;
  background: linear-gradient(135deg, rgba(68, 25, 80, .9), rgba(34, 10, 44, .94));
  border: 1px solid rgba(255, 212, 0, .2);
  border-radius: 14px;
  box-shadow: 0 14px 34px rgba(8, 0, 12, .2);
}

.player-review::before {
  content: "“";
  position: absolute;
  top: 9px;
  left: 18px;
  color: var(--gold);
  font-size: 52px;
  font-weight: 1000;
  line-height: 1;
}

.player-review p {
  margin: 0;
}

.review-disclaimer {
  padding: 14px 16px;
  color: var(--muted) !important;
  background: rgba(255, 255, 255, .035);
  border-radius: 9px;
  font-size: 13px !important;
}

.editorial-rating-card {
  margin: 28px 0 0;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  color: var(--white);
  background: linear-gradient(135deg, rgba(93, 242, 49, .12), rgba(255, 212, 0, .12));
  border: 1px solid rgba(255, 212, 0, .36);
  border-radius: 16px;
}

.editorial-rating-card span {
  font-weight: 800;
}

.editorial-rating-card strong {
  flex: 0 0 auto;
  color: var(--gold);
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1;
}

.last-updated {
  margin: 0 0 34px;
  color: var(--muted);
  font-size: 13px;
}

.not-found {
  min-height: calc(100vh - var(--header-height));
  display: grid;
  place-items: center;
  text-align: center;
}

.not-found strong {
  display: block;
  color: var(--gold);
  font-size: clamp(90px, 20vw, 190px);
  line-height: .9;
}

.not-found h1 {
  margin: 16px 0;
  color: var(--white);
  font-size: clamp(36px, 6vw, 62px);
}

.not-found p {
  max-width: 600px;
  margin: 0 auto 28px;
}

@media (max-width: 900px) {
  .app-download-banner {
    padding-left: 40%;
  }
}

@media (max-width: 680px) {
  .section-image {
    width: 100%;
    height: auto;
    max-height: 400px;
    aspect-ratio: 16 / 9;
    margin: 25px 0;
    border-radius: 15px;
  }

  .overview-table-wrap {
    overflow-x: visible;
  }

  .overview-table {
    min-width: 0;
    table-layout: fixed;
  }

  .overview-table tbody,
  .overview-table tr,
  .overview-table th,
  .overview-table td {
    display: block;
    width: 100%;
  }

  .overview-table th {
    padding: 10px 16px;
    color: var(--gold);
    background: rgba(255, 212, 0, .1);
    border-right: 0;
    border-bottom: 0;
    font-size: 11px;
    letter-spacing: .5px;
    text-transform: uppercase;
  }

  .overview-table td {
    padding: 13px 16px;
    border-right: 0;
  }

  .bonus-banner {
    grid-template-columns: 1fr;
    height: 450px;
    min-height: 0;
    max-height: 450px;
    padding: 165px 18px 18px;
    align-content: end;
    gap: 14px;
    background:
      linear-gradient(rgba(21, 3, 29, .1), rgba(21, 3, 29, .1)),
      var(--banner-image) 16% center / cover no-repeat;
  }

  .bonus-banner .button {
    width: 100%;
    min-width: 0;
    justify-self: stretch;
  }

  .bonus-banner h3 {
    font-size: clamp(27px, 8vw, 36px);
  }

  .bonus-banner .bonus-banner-extra {
    font-size: clamp(19px, 6vw, 25px);
  }

  .app-download-banner {
    height: 450px;
    min-height: 0;
    max-height: 450px;
    padding: 150px 18px 18px;
    align-items: flex-end;
    background: rgba(21, 3, 29, .1);
  }

  .app-download-banner > img {
    object-position: 16% center;
  }

  .app-download-content {
    padding: 18px;
  }

  .app-buttons {
    flex-direction: column;
  }

  .scroll-top {
    right: 14px;
    bottom: 14px;
  }
}

/* =========================================================
   CANADA SATELLITE THEME — Canadian red accents.
   Scoped to content blocks only. Header / footer / sidebar
   remain identical to the base site (do not override them).
   ========================================================= */
:root {
  --accent: #d52b1e;
  --accent-soft: #e5544a;
  --accent-deep: #a81e14;
}

/* Section heading underline -> Greek blue/white/gold */
.content-section h2::after,
.visual-copy h2::after {
  background: linear-gradient(90deg, var(--accent), #fff, var(--gold), transparent);
  width: 96px;
  height: 4px;
}
.content-section:nth-of-type(3n) h2::after {
  background: linear-gradient(90deg, var(--gold), var(--accent), transparent);
}

/* Table: Greek-flag-style top strip + blue hover */
.table-wrap {
  border-color: rgba(213, 43, 30, .3);
}
.table-wrap::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), #fff 45%, var(--gold), transparent);
  opacity: .9;
  z-index: 2;
}
tbody tr:nth-child(even) { background: rgba(213, 43, 30, .05); }
tbody tr:hover { background: rgba(213, 43, 30, .1); }
.overview-table tr:hover th,
.overview-table tr:hover td { background: rgba(213, 43, 30, .1); }

/* Section images: blue frame + blue glow on hover */
.section-image {
  border-color: rgba(213, 43, 30, .32);
}
.section-image:hover img {
  filter: brightness(1.05) saturate(1.08);
}

/* Tip / KYC / editorial: Greek blue accent instead of green */
.tip-card { border-left-color: var(--accent); border-color: rgba(213, 43, 30, .18); }
.tip-card:hover { border-color: rgba(213, 43, 30, .42); }
.kyc-box { border-color: rgba(213, 43, 30, .28); }
.editorial-disclosure,
.legal-notice {
  background: linear-gradient(135deg, rgba(213, 43, 30, .12), rgba(255, 212, 0, .06));
  border-color: rgba(213, 43, 30, .3);
  border-left-color: var(--accent);
}

/* Hero rating stars keep gold; add a thin blue ring under hero rating pill */
.hero-rating { border: 1px solid rgba(213, 43, 30, .4); }

/* Promo / step cards: subtle blue top hairline to differentiate from base */
.promo-card::before,
.step-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: .7;
}
.promo-card, .step-card { position: relative; }

/* Rating bars fill -> blue→gold for Greek look */
.rating-bars i::before {
  background: linear-gradient(90deg, var(--accent), var(--gold));
}

/* Player-review left accent (fallback markup) -> blue */
.review-grid blockquote { border-top: 2px solid rgba(213, 43, 30, .35); }

/* Author-card avatar: restore centering (overridden by .author-card span) + Greek blue tint */
.author-card .author-avatar {
  display: grid;
  place-content: center;
  color: #1b0c20;
  font-size: 20px;
  letter-spacing: .5px;
  background: linear-gradient(145deg, var(--gold), var(--accent));
}

/* Bigger body text inside info boxes (kyc-box) on desktop */
@media (min-width: 921px) {
  .kyc-box p {
    font-size: 16px;
    line-height: 1.65;
  }
}

/* Pros/Cons equal-width columns (desktop only; mobile keeps the stacked layout) */
@media (min-width: 681px) {
  .pros-cons {
    grid-template-columns: 1fr 1fr;
  }
}
