:root {
  --bg: #080e16;
  --bg-deep: #050912;
  --surface: #151925;
  --surface-2: #1d2230;
  --surface-3: #292d3a;
  --line: rgba(255, 255, 255, .09);
  --line-strong: rgba(255, 255, 255, .16);
  --text: #f7f8fb;
  --muted: #9da4b5;
  --muted-2: #70798d;
  --accent: #10d2c0;
  --accent-soft: rgba(16, 210, 192, .13);
  --accent-dark: #08a99d;
  --pink: #ff2cb4;
  --pink-soft: rgba(255, 44, 180, .14);
  --violet: #7757ff;
  --yellow: #ffcf4c;
  --danger: #ff5277;
  --sidebar: 278px;
  --header: 78px;
  --content: 1210px;
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow: 0 24px 70px rgba(0, 0, 0, .38);
  --font: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    radial-gradient(circle at 75% 8%, rgba(62, 37, 116, .18), transparent 26rem),
    var(--bg);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.sidebar-open {
  overflow: hidden;
}

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

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

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

button {
  color: inherit;
  font: inherit;
}

svg {
  width: 1.25em;
  height: 1.25em;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  color: #041312;
  background: var(--accent);
  border-radius: 8px;
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform .2s ease;
}

.skip-link:focus {
  transform: none;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 20px;
  border: 1px solid transparent;
  border-radius: 11px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  transition: transform .18s ease, color .18s ease, border-color .18s ease, background-color .18s ease, box-shadow .18s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #031614;
  background: linear-gradient(135deg, #18dfcb, var(--accent));
  box-shadow: 0 10px 30px rgba(16, 210, 192, .17);
}

.button-primary:hover {
  background: #39e3d3;
  box-shadow: 0 12px 34px rgba(16, 210, 192, .3);
}

.button-ghost {
  color: var(--text);
  background: rgba(255, 255, 255, .025);
  border-color: #444b61;
}

.button-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.button-large {
  min-height: 54px;
  padding-inline: 28px;
  font-size: 16px;
}

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  height: var(--header);
  align-items: center;
  background: rgba(35, 38, 50, .96);
  border-bottom: 1px solid rgba(255, 255, 255, .035);
  box-shadow: 0 8px 30px rgba(0, 0, 0, .14);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  background: rgba(24, 27, 37, .98);
  box-shadow: 0 10px 35px rgba(0, 0, 0, .35);
}

.brand {
  display: flex;
  width: var(--sidebar);
  height: 100%;
  flex: 0 0 var(--sidebar);
  align-items: center;
  justify-content: center;
  border-right: 1px solid rgba(255, 255, 255, .045);
}

.brand img {
  width: 148px;
  height: auto;
  image-rendering: auto;
}

.top-nav {
  display: flex;
  height: 100%;
  align-items: center;
  gap: 8px;
  margin-inline: auto;
}

.top-nav a {
  position: relative;
  display: flex;
  height: 100%;
  align-items: center;
  gap: 9px;
  padding: 0 28px;
  color: #f8f8f5;
  font-size: 17px;
  font-weight: 760;
}

.top-nav a::after {
  position: absolute;
  right: 28px;
  bottom: 0;
  left: 28px;
  height: 3px;
  background: var(--accent);
  border-radius: 3px 3px 0 0;
  content: "";
  opacity: 0;
  transform: scaleX(.45);
  transition: .2s ease;
}

.top-nav a:hover {
  color: var(--accent);
}

.top-nav a:hover::after {
  opacity: 1;
  transform: none;
}

.top-nav svg {
  color: var(--accent);
}

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

.header-actions .button {
  min-width: 122px;
  min-height: 50px;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: var(--accent);
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  cursor: pointer;
}

.menu-toggle svg {
  width: 25px;
  height: 25px;
}

.menu-toggle .icon-close {
  display: none;
}

.site-sidebar {
  position: fixed;
  z-index: 900;
  top: var(--header);
  bottom: 0;
  left: 0;
  width: var(--sidebar);
  background: #1a1d26;
  border-right: 1px solid rgba(255, 255, 255, .045);
}

.sidebar-scroll {
  height: 100%;
  padding: 18px 14px 28px;
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #3a3e4b transparent;
}

.sidebar-balance {
  position: relative;
  padding: 18px 16px 16px;
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 0, rgba(255, 44, 180, .22), transparent 50%),
    linear-gradient(145deg, #252a38, #191c25);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 14px;
}

.sidebar-balance::after {
  position: absolute;
  top: -34px;
  right: -34px;
  width: 90px;
  height: 90px;
  background: var(--accent);
  border-radius: 50%;
  content: "";
  filter: blur(45px);
  opacity: .15;
}

.eyebrow {
  display: block;
  margin-bottom: 7px;
  color: #b5bac9;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .13em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow.accent {
  color: var(--accent);
}

.eyebrow.pink {
  color: var(--pink);
}

.sidebar-balance > strong {
  display: block;
  font-size: 19px;
  letter-spacing: -.02em;
  line-height: 1.25;
}

.sidebar-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
  margin-top: 15px;
}

.sidebar-buttons .button {
  min-width: 0;
  min-height: 39px;
  padding: 8px;
  font-size: 13px;
}

.quick-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
  margin-top: 12px;
}

.quick-grid a {
  display: flex;
  min-height: 60px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px;
  background: var(--surface-3);
  border: 1px solid transparent;
  border-radius: 11px;
  font-size: 13px;
  font-weight: 750;
  transition: .18s ease;
}

.quick-grid a:hover {
  color: var(--accent);
  border-color: rgba(16, 210, 192, .35);
  background: #303441;
}

.quick-grid svg {
  width: 19px;
  color: var(--accent);
}

.sidebar-tabs {
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin: 16px 4px 14px;
}

.sidebar-tabs a {
  padding: 5px 10px;
  color: #e8eaf0;
  font-size: 13px;
  font-weight: 800;
}

.sidebar-tabs a:nth-child(2) {
  position: relative;
}

.sidebar-tabs a:nth-child(2)::after {
  position: absolute;
  top: -8px;
  right: -12px;
  padding: 0 5px;
  color: white;
  background: var(--pink);
  border-radius: 8px;
  content: "VIP";
  font-size: 8px;
}

.side-nav {
  display: grid;
  gap: 6px;
}

.side-nav a {
  display: grid;
  min-height: 48px;
  grid-template-columns: 24px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 10px 13px;
  color: #f0f1f4;
  background: var(--surface-3);
  border: 1px solid transparent;
  border-radius: 11px;
  font-size: 14px;
  font-weight: 700;
  transition: .18s ease;
}

.side-nav a:hover,
.side-nav a.active {
  color: var(--accent);
  background: #303440;
  border-color: rgba(16, 210, 192, .2);
}

.side-nav svg {
  color: #aeb5c6;
}

.side-nav a:hover svg,
.side-nav a.active svg {
  color: var(--accent);
}

.side-nav b {
  padding: 2px 7px;
  color: white;
  background: var(--pink);
  border-radius: 10px;
  font-size: 9px;
  text-transform: uppercase;
}

.language-button {
  display: flex;
  width: 100%;
  min-height: 48px;
  align-items: center;
  gap: 9px;
  margin-top: 10px;
  padding: 10px 13px;
  color: #f0f1f4;
  background: var(--surface-3);
  border: 1px solid transparent;
  border-radius: 11px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
}

.language-button svg {
  width: 16px;
  margin-left: auto;
}

.sidebar-safe {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 18px 4px 0;
  color: var(--muted-2);
  font-size: 11px;
  line-height: 1.4;
}

.sidebar-safe span {
  display: grid;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  place-items: center;
  color: white;
  border: 1px solid #535969;
  border-radius: 50%;
  font-weight: 900;
}

.sidebar-backdrop {
  position: fixed;
  z-index: 850;
  inset: var(--header) 0 0;
  display: none;
  background: rgba(0, 0, 0, .66);
  backdrop-filter: blur(3px);
}

.site-main {
  min-height: 100vh;
  margin-left: var(--sidebar);
  padding-top: var(--header);
  overflow: hidden;
}

.casino-lobby {
  padding: 20px 22px 8px;
}

.hero-grid {
  display: grid;
  max-width: 1500px;
  grid-template-columns: minmax(0, 1.62fr) minmax(300px, .78fr);
  gap: 14px;
  margin: 0 auto;
}

.hero-card,
.visual-banner {
  position: relative;
  display: block;
  overflow: hidden;
  background: #151925;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--radius);
  box-shadow: 0 14px 50px rgba(0, 0, 0, .22);
}

.hero-card-main {
  min-height: 434px;
}

.hero-card-main > img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.01);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 8, 17, .98) 0, rgba(10, 8, 23, .88) 38%, rgba(9, 7, 21, .22) 72%),
    linear-gradient(0deg, rgba(4, 7, 15, .4), transparent 65%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  width: min(590px, 74%);
  min-height: 434px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 48px clamp(28px, 4.4vw, 64px);
}

.promo-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 11px;
  color: #aef8ee;
  background: rgba(16, 210, 192, .12);
  border: 1px solid rgba(16, 210, 192, .28);
  border-radius: 50px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .13em;
}

.promo-pill i {
  width: 7px;
  height: 7px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(16, 210, 192, .12);
}

.hero-copy h1 {
  max-width: 570px;
  margin: 15px 0 0;
  font-size: clamp(42px, 4.2vw, 67px);
  font-weight: 900;
  letter-spacing: -.055em;
  line-height: .98;
}

.hero-copy h1 span {
  display: block;
  color: var(--accent);
}

.hero-offer {
  margin: 16px 0 0;
  color: #f7f8fb;
  font-size: clamp(20px, 2.2vw, 30px);
  font-weight: 600;
  letter-spacing: -.025em;
  line-height: 1.2;
}

.hero-offer strong:first-child {
  color: var(--pink);
}

.hero-offer strong:last-child {
  color: var(--accent);
}

.hero-sub {
  max-width: 520px;
  margin: 12px 0 0;
  color: #c1c5d0;
  font-size: 14px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 23px;
}

.text-link {
  color: #dae0e7;
  border-bottom: 1px solid #717989;
  font-size: 13px;
  font-weight: 750;
}

.text-link:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.hero-dots {
  position: absolute;
  z-index: 3;
  bottom: 17px;
  left: 50%;
  display: flex;
  gap: 7px;
  transform: translateX(-50%);
}

.hero-dots span {
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, .35);
  border-radius: 50%;
}

.hero-dots .active {
  width: 24px;
  background: var(--accent);
  border-radius: 5px;
}

.hero-side {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
}

.visual-banner {
  min-height: 210px;
}

.visual-banner > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

.visual-banner:hover > img {
  transform: scale(1.035);
}

.welcome-banner img {
  object-fit: contain;
  object-position: left center;
  background: #030213;
}

.sports-banner::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 7, 18, .94), rgba(10, 6, 22, .15) 80%);
  content: "";
}

.visual-banner-copy {
  position: absolute;
  z-index: 2;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 24px;
}

.visual-banner-copy b {
  max-width: 240px;
  font-size: 20px;
  line-height: 1.15;
}

.visual-banner-copy small {
  margin-top: 6px;
  color: #c2c7d1;
}

.visual-banner-copy em {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--accent);
  font-size: 13px;
  font-style: normal;
  font-weight: 900;
}

.story-rail {
  display: flex;
  max-width: 1500px;
  align-items: flex-start;
  gap: 28px;
  margin: 18px auto 8px;
  padding: 2px 4px 12px;
  overflow-x: auto;
  scrollbar-width: none;
}

.story-rail::-webkit-scrollbar {
  display: none;
}

.story-rail a {
  display: flex;
  min-width: 78px;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  color: #d8dbe3;
  font-size: 12px;
  font-weight: 750;
  white-space: nowrap;
}

.story-rail a > span {
  display: block;
  width: 72px;
  height: 72px;
  padding: 2px;
  background: linear-gradient(135deg, var(--pink), var(--violet), var(--accent));
  border-radius: 50%;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .32);
  transition: transform .2s ease;
}

.story-rail a:hover > span {
  transform: translateY(-4px) scale(1.04);
}

.story-rail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 3px solid var(--bg);
  border-radius: 50%;
}

.lobby-section {
  max-width: 1544px;
  margin: 0 auto;
  padding: 25px 22px 34px;
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 34px;
  margin-bottom: 25px;
}

.section-heading h2,
.account-copy h2,
.login-strip h2,
.app-copy h2,
.tournament-copy h2,
.license-section h2,
.support-copy h2,
.final-cta h2 {
  margin: 0;
  font-size: clamp(30px, 3.2vw, 44px);
  font-weight: 900;
  letter-spacing: -.045em;
  line-height: 1.08;
}

.section-heading p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.lobby-heading {
  align-items: center;
  margin-bottom: 17px;
}

.lobby-heading h2 {
  font-size: clamp(25px, 2.2vw, 34px);
}

.game-filters {
  display: flex;
  gap: 6px;
  padding: 5px;
  background: #141925;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.game-filters button {
  min-width: 65px;
  padding: 7px 13px;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
}

.game-filters button:hover,
.game-filters button.active {
  color: #031614;
  background: var(--accent);
}

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

.game-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  padding-bottom: 11px;
  overflow: hidden;
  background: #171c28;
  border: 1px solid rgba(255, 255, 255, .055);
  border-radius: 12px;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.game-card:hover {
  border-color: rgba(16, 210, 192, .38);
  box-shadow: 0 15px 35px rgba(0, 0, 0, .3);
  transform: translateY(-5px);
}

.game-card[hidden] {
  display: none;
}

.game-card > img {
  width: 100%;
  aspect-ratio: 263 / 156;
  grid-column: 1 / -1;
  object-fit: cover;
  background: #202532;
}

.game-card > strong {
  padding: 10px 0 0 12px;
  overflow: hidden;
  font-size: 13px;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.game-card > small {
  grid-column: 1 / -1;
  padding: 3px 12px 0;
  color: var(--muted-2);
  font-size: 10px;
}

.game-overlay {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  display: grid;
  aspect-ratio: 263 / 156;
  place-items: center;
  background: rgba(4, 7, 13, .54);
  opacity: 0;
  transition: opacity .2s ease;
}

.game-card:hover .game-overlay {
  opacity: 1;
}

.game-overlay i {
  display: grid;
  width: 48px;
  height: 48px;
  padding-left: 3px;
  place-items: center;
  color: #071511;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 9px rgba(16, 210, 192, .14);
  font-size: 16px;
  font-style: normal;
}

.game-badge {
  position: absolute;
  z-index: 3;
  top: 8px;
  left: 8px;
  padding: 3px 7px;
  color: white;
  border-radius: 6px;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .06em;
}

.game-badge.hot {
  background: var(--pink);
}

.game-badge.new {
  color: #10150a;
  background: var(--yellow);
}

.game-badge.live {
  background: #ed3159;
}

.load-more {
  display: flex;
  min-height: 45px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-top: 14px;
  color: var(--accent);
  background: rgba(16, 210, 192, .025);
  border: 1px solid rgba(16, 210, 192, .26);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 800;
  transition: background-color .18s ease;
}

.load-more:hover {
  background: rgba(16, 210, 192, .1);
}

.trust-strip {
  display: grid;
  max-width: 1500px;
  grid-template-columns: repeat(5, 1fr);
  margin: 4px auto 0;
  background: linear-gradient(90deg, #171b27, #222030, #171b27);
  border-block: 1px solid var(--line);
}

.trust-strip div {
  position: relative;
  display: flex;
  min-height: 88px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px;
}

.trust-strip div:not(:last-child)::after {
  position: absolute;
  top: 22px;
  right: 0;
  bottom: 22px;
  width: 1px;
  background: var(--line);
  content: "";
}

.trust-strip strong {
  color: var(--accent);
  font-size: 22px;
  line-height: 1;
}

.trust-strip span {
  margin-top: 7px;
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
}

.content-shell {
  max-width: var(--content);
  margin: 0 auto;
  padding: 58px 30px 90px;
}

.content-shell > section {
  margin-top: 100px;
}

.content-shell > .intro-grid {
  margin-top: 28px;
}

.breadcrumbs {
  display: flex;
  gap: 9px;
  color: var(--muted-2);
  font-size: 12px;
}

.breadcrumbs a:hover {
  color: var(--accent);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(260px, .75fr);
  align-items: start;
  gap: 62px;
}

.article-copy h2 {
  max-width: 750px;
  margin: 0;
  font-size: clamp(36px, 4.1vw, 56px);
  font-weight: 900;
  letter-spacing: -.055em;
  line-height: 1.04;
}

.article-copy p {
  color: #aeb4c1;
}

.article-copy .lead {
  margin-top: 25px;
  color: #d7dae1;
  font-size: 19px;
  line-height: 1.7;
}

.article-copy strong {
  color: white;
}

.toc-card {
  position: sticky;
  top: calc(var(--header) + 22px);
  padding: 23px;
  background:
    radial-gradient(circle at 100% 0, rgba(16, 210, 192, .1), transparent 45%),
    #171c28;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.toc-card > span {
  color: var(--accent);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.toc-card ol {
  margin: 15px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: toc;
}

.toc-card li {
  border-top: 1px solid var(--line);
  counter-increment: toc;
}

.toc-card a {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 10px 0;
  color: #d7dae2;
  font-size: 13px;
  font-weight: 650;
}

.toc-card a::before {
  color: var(--muted-2);
  content: "0" counter(toc);
  font-size: 10px;
  font-weight: 900;
}

.toc-card a:hover {
  color: var(--accent);
  padding-left: 4px;
}

.facts-bento {
  display: grid;
  grid-template-columns: 1.18fr 1fr 1fr;
  gap: 12px;
}

.fact-card {
  min-height: 225px;
  padding: 24px;
  background: #171c28;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.fact-card-featured {
  display: flex;
  grid-row: span 2;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 105% 10%, rgba(255, 44, 180, .4), transparent 38%),
    radial-gradient(circle at 30% 110%, rgba(16, 210, 192, .22), transparent 43%),
    linear-gradient(145deg, #25203a, #151925);
}

.fact-card-featured > span {
  color: #b8bdc8;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.fact-card-featured > strong {
  margin-top: 12px;
  font-size: clamp(29px, 3.7vw, 45px);
  letter-spacing: -.055em;
  line-height: 1.05;
}

.fact-card-featured > strong i {
  color: var(--accent);
  font-style: normal;
}

.fact-card-featured > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
}

dl.fact-card {
  margin: 0;
}

dl.fact-card > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

dl.fact-card > div:last-child {
  border: 0;
}

.fact-card dt {
  color: var(--muted);
  font-size: 12px;
}

.fact-card dd {
  margin: 0;
  text-align: right;
  font-size: 13px;
  font-weight: 800;
}

.fact-card-operator {
  display: flex;
  grid-column: 2 / -1;
  min-height: 150px;
  align-items: center;
  gap: 20px;
  background: linear-gradient(110deg, #172128, #191b29);
}

.fact-card-operator > svg {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  padding: 10px;
  color: var(--accent);
  background: var(--accent-soft);
  border-radius: 13px;
}

.fact-card-operator span,
.fact-card-operator small {
  display: block;
  color: var(--muted);
  font-size: 11px;
}

.fact-card-operator strong {
  display: block;
  margin: 2px 0 4px;
  font-size: 15px;
  line-height: 1.35;
}

.fine-print {
  margin: 13px 0 0;
  color: var(--muted-2);
  font-size: 11px;
  line-height: 1.55;
}

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

.bonus-card {
  position: relative;
  display: flex;
  min-height: 270px;
  flex-direction: column;
  justify-content: space-between;
  padding: 25px;
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 0, rgba(119, 87, 255, .15), transparent 42%),
    #191d29;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.bonus-card-welcome {
  min-height: 380px;
  grid-column: 1 / -1;
  justify-content: center;
  padding: clamp(28px, 5vw, 65px);
}

.bonus-card-welcome > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.bonus-card-welcome::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 7, 15, .98), rgba(10, 7, 20, .88) 46%, rgba(8, 5, 18, .12));
  content: "";
}

.bonus-card > div {
  position: relative;
  z-index: 2;
}

.bonus-card-welcome > div {
  max-width: 540px;
}

.bonus-label {
  display: block;
  margin-bottom: 7px;
  color: var(--accent);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .14em;
}

.bonus-card h3 {
  margin: 0;
  font-size: 22px;
  letter-spacing: -.03em;
  line-height: 1.15;
}

.bonus-card-welcome h3 {
  font-size: clamp(32px, 4.5vw, 54px);
}

.bonus-card > div > strong {
  display: block;
  margin-top: 7px;
  color: var(--accent);
  font-size: 17px;
}

.bonus-card-welcome > div > strong {
  color: var(--pink);
  font-size: clamp(22px, 2.5vw, 31px);
}

.bonus-card p {
  margin: 10px 0 18px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.bonus-card .button {
  align-self: stretch;
  font-size: 13px;
}

.bonus-card-welcome .button {
  align-self: flex-start;
}

.bonus-icon {
  display: grid;
  width: 55px;
  height: 55px;
  margin-bottom: 24px;
  place-items: center;
  color: var(--pink);
  background: var(--pink-soft);
  border: 1px solid rgba(255, 44, 180, .22);
  border-radius: 16px;
  font-size: 19px;
  font-weight: 900;
}

.terms-note {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 12px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, .025);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.terms-note svg {
  width: 27px;
  height: 27px;
  flex: 0 0 27px;
  color: var(--accent);
}

.terms-note p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.terms-note strong {
  color: white;
}

.account-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: stretch;
  overflow: hidden;
  background: #171c28;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.account-visual {
  position: relative;
  min-height: 580px;
  overflow: hidden;
}

.account-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
}

.account-visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7, 9, 18, .65), transparent 50%);
  content: "";
}

.account-visual span {
  position: absolute;
  z-index: 2;
  bottom: 28px;
  left: 28px;
  padding: 7px 12px;
  background: rgba(9, 12, 21, .8);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 50px;
  font-size: 11px;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

.account-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(30px, 5vw, 66px);
}

.account-copy > p {
  margin: 17px 0 10px;
  color: var(--muted);
  font-size: 14px;
}

.step-list {
  width: 100%;
  margin: 10px 0 26px;
  padding: 0;
  list-style: none;
}

.step-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
}

.step-list li > b {
  display: grid;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  place-items: center;
  color: #061614;
  background: var(--accent);
  border-radius: 9px;
  font-size: 12px;
}

.step-list span,
.step-list strong,
.step-list small {
  display: block;
}

.step-list strong {
  font-size: 13px;
}

.step-list small {
  color: var(--muted);
  font-size: 11px;
}

.login-strip {
  display: grid;
  min-height: 175px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 25px;
  padding: 28px 34px;
  background:
    radial-gradient(circle at 82% 0, rgba(16, 210, 192, .12), transparent 34%),
    #191e2a;
  border: 1px solid rgba(16, 210, 192, .16);
  border-radius: var(--radius);
}

.login-icon {
  display: grid;
  width: 66px;
  height: 66px;
  place-items: center;
  color: var(--accent);
  background: var(--accent-soft);
  border: 1px solid rgba(16, 210, 192, .18);
  border-radius: 18px;
}

.login-icon svg {
  width: 31px;
  height: 31px;
}

.login-strip h2 {
  font-size: 27px;
}

.login-strip p {
  max-width: 720px;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.payment-rail {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}

.payment-rail > div {
  display: grid;
  min-height: 78px;
  place-items: center;
  overflow: hidden;
  background: #1d2230;
  border: 1px solid var(--line);
  border-radius: 10px;
}

.payment-rail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.payment-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.75fr) minmax(270px, .7fr);
  gap: 12px;
}

.table-wrap {
  overflow: hidden;
  background: #171c28;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
}

caption {
  padding: 17px 19px;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .12em;
  text-align: left;
  text-transform: uppercase;
}

th,
td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

th {
  color: #aab1bf;
  background: rgba(255, 255, 255, .025);
  font-size: 10px;
  letter-spacing: .05em;
  text-transform: uppercase;
}

td:first-child {
  color: white;
  font-weight: 750;
}

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

.method-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 8px;
  background: var(--accent);
  border-radius: 50%;
}

.method-dot.wallet {
  background: var(--pink);
}

.method-dot.bank {
  background: #5a8dff;
}

.method-dot.crypto {
  background: #ffae35;
}

.payout-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 27px;
  background:
    radial-gradient(circle at 100% 0, rgba(16, 210, 192, .2), transparent 45%),
    #182027;
  border: 1px solid rgba(16, 210, 192, .17);
  border-radius: var(--radius);
}

.payout-icon {
  display: grid;
  width: 47px;
  height: 47px;
  place-items: center;
  color: var(--accent);
  background: var(--accent-soft);
  border-radius: 12px;
}

.payout-card > small {
  margin-top: 18px;
  color: var(--accent);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .12em;
}

.payout-card > strong {
  margin-top: 5px;
  font-size: 19px;
  letter-spacing: -.025em;
  line-height: 1.3;
}

.payout-card p {
  margin: 9px 0 18px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}

.payout-card .button {
  width: 100%;
  font-size: 12px;
}

.flow-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-top: 20px;
  padding: 20px 22px;
  background: rgba(255, 255, 255, .022);
  border: 1px solid var(--line);
  border-radius: 13px;
}

.flow-row > div {
  display: flex;
  align-items: center;
  gap: 11px;
}

.flow-row > div > b {
  color: var(--accent);
  font-size: 11px;
  letter-spacing: .08em;
}

.flow-row span,
.flow-row strong,
.flow-row small {
  display: block;
}

.flow-row strong {
  font-size: 12px;
}

.flow-row small {
  color: var(--muted-2);
  font-size: 10px;
}

.flow-row > i {
  width: min(70px, 6vw);
  height: 1px;
  background: linear-gradient(90deg, var(--line-strong), var(--accent));
}

.app-section {
  position: relative;
  display: flex;
  min-height: 615px;
  align-items: center;
  padding: clamp(35px, 6vw, 75px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.app-section > img,
.app-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.app-section > img {
  object-fit: cover;
  object-position: center;
}

.app-overlay {
  background: linear-gradient(90deg, rgba(4, 7, 15, .98) 0, rgba(5, 8, 17, .92) 38%, rgba(4, 7, 15, .2) 72%);
}

.app-copy {
  position: relative;
  z-index: 2;
  max-width: 550px;
}

.app-copy p {
  color: #b9bfca;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 24px 0 30px;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #e2e5eb;
  font-size: 13px;
}

.check-list svg {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  padding: 3px;
  color: #061714;
  background: var(--accent);
  border-radius: 50%;
}

.app-actions {
  display: flex;
  align-items: center;
  gap: 19px;
}

.app-actions span,
.app-actions b,
.app-actions small {
  display: block;
}

.app-actions b {
  font-size: 11px;
}

.app-actions small {
  color: var(--muted);
  font-size: 10px;
}

.vip-hero {
  position: relative;
  overflow: hidden;
  background: #171c28;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.vip-hero img {
  width: 100%;
  height: auto;
}

.vip-hero .button {
  position: absolute;
  top: 36.1%;
  left: 2.45%;
  width: 24.25%;
  min-height: 0;
  height: 6.4%;
  padding: 0 8px;
  border-radius: 6px;
  font-size: clamp(9px, 1.1vw, 14px);
}

.level-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin-top: 12px;
}

.level-card {
  position: relative;
  display: flex;
  min-height: 205px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 18px 12px;
  overflow: hidden;
  text-align: center;
  background: #171b27;
  border: 1px solid var(--line);
  border-radius: 13px;
}

.level-card::before {
  position: absolute;
  top: 0;
  right: 25%;
  left: 25%;
  height: 2px;
  background: #4d5364;
  content: "";
}

.level-card.active::before,
.level-card.legend::before {
  background: var(--accent);
  box-shadow: 0 0 20px var(--accent);
}

.level-card > span {
  color: var(--muted-2);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .1em;
}

.level-card > i {
  display: grid;
  width: 55px;
  height: 55px;
  margin: 13px 0;
  place-items: center;
  color: var(--accent);
  background: var(--accent-soft);
  border-radius: 50%;
  font-size: 24px;
  font-style: normal;
}

.level-card.legend > i {
  color: var(--pink);
  background: var(--pink-soft);
}

.level-card > strong {
  font-size: 15px;
}

.level-card > small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.4;
}

.tournament-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, .86fr);
  align-items: center;
  gap: clamp(35px, 7vw, 85px);
  padding: clamp(35px, 6vw, 72px);
  background:
    radial-gradient(circle at 8% 100%, rgba(255, 44, 180, .18), transparent 39%),
    radial-gradient(circle at 100% 0, rgba(16, 210, 192, .11), transparent 38%),
    #171a27;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.tournament-copy p {
  margin: 18px 0 0;
  color: var(--muted);
}

.mission-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 22px 0 28px;
}

.mission-pills span {
  padding: 6px 10px;
  color: #d4d7df;
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--line);
  border-radius: 40px;
  font-size: 10px;
  font-weight: 750;
}

.leaderboard-card {
  padding: 15px;
  background: rgba(7, 10, 19, .78);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 18px;
  box-shadow: 0 25px 55px rgba(0, 0, 0, .33);
  transform: rotate(1.2deg);
}

.leaderboard-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 7px 15px;
}

.leaderboard-head span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--pink);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .09em;
}

.leaderboard-head small {
  color: var(--accent);
  font-size: 9px;
}

.leaderboard-card ol {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.leaderboard-card li {
  display: grid;
  grid-template-columns: 25px 35px 1fr auto;
  align-items: center;
  gap: 9px;
  padding: 10px 11px;
  background: #1d2230;
  border: 1px solid transparent;
  border-radius: 10px;
}

.leaderboard-card li.you {
  margin-top: 6px;
  border-color: rgba(16, 210, 192, .42);
  background: rgba(16, 210, 192, .08);
}

.leaderboard-card li > b {
  color: var(--muted-2);
  text-align: center;
  font-size: 11px;
}

.avatar {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  color: #031614;
  background: var(--accent);
  border-radius: 9px;
  font-size: 11px;
  font-weight: 900;
}

.avatar.pink-a {
  background: #ff73c8;
}

.avatar.teal-a {
  background: #55e0ce;
}

.avatar.blue-a {
  background: #6da0ff;
}

.leaderboard-card li span strong,
.leaderboard-card li span small {
  display: block;
}

.leaderboard-card li span strong {
  font-size: 11px;
}

.leaderboard-card li span small {
  color: var(--muted-2);
  font-size: 8px;
}

.leaderboard-card li em {
  color: var(--accent);
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
}

.kyc-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.kyc-timeline::before {
  position: absolute;
  z-index: 0;
  top: 34px;
  right: 10%;
  left: 10%;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), var(--pink));
  content: "";
  opacity: .5;
}

.kyc-timeline article {
  position: relative;
  z-index: 1;
  min-height: 235px;
  padding: 24px 20px;
  background: #171c28;
  border: 1px solid var(--line);
  border-radius: 15px;
}

.kyc-timeline article > span {
  display: inline-grid;
  height: 25px;
  place-items: center;
  padding: 0 9px;
  color: #061614;
  background: var(--accent);
  border-radius: 30px;
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
}

.kyc-timeline article:nth-child(3) > span,
.kyc-timeline article:nth-child(4) > span {
  color: white;
  background: var(--pink);
}

.kyc-timeline b {
  display: block;
  margin-top: 48px;
  font-size: 17px;
}

.kyc-timeline p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}

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

.security-grid article {
  padding: 24px;
  background: rgba(255, 255, 255, .022);
  border: 1px solid var(--line);
  border-radius: 13px;
}

.security-grid svg {
  width: 28px;
  height: 28px;
  color: var(--accent);
}

.security-grid h3 {
  margin: 12px 0 0;
  font-size: 15px;
}

.security-grid p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}

.license-section {
  display: grid;
  grid-template-columns: 225px 1fr;
  align-items: center;
  gap: clamp(30px, 6vw, 70px);
  padding: clamp(30px, 5vw, 58px);
  background: linear-gradient(135deg, #1c2230, #161a25);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.license-badge {
  display: grid;
  width: 205px;
  height: 205px;
  place-items: center;
  background: radial-gradient(circle, rgba(16, 210, 192, .15), transparent 65%);
  border: 1px solid rgba(16, 210, 192, .15);
  border-radius: 50%;
}

.license-badge img {
  width: 137px;
  height: 137px;
  object-fit: contain;
}

.license-section > div:last-child > p {
  color: var(--muted);
}

.license-section strong {
  color: white;
}

.responsible-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
  padding-top: 21px;
  border-top: 1px solid var(--line);
}

.responsible-row > span {
  display: grid;
  width: 53px;
  height: 53px;
  flex: 0 0 53px;
  place-items: center;
  border: 2px solid white;
  border-radius: 50%;
  font-size: 16px;
  font-weight: 900;
}

.responsible-row p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.support-section {
  position: relative;
  display: flex;
  min-height: 565px;
  align-items: center;
  justify-content: flex-end;
  padding: clamp(35px, 6vw, 70px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

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

.support-section::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 7, 14, .08) 20%, rgba(6, 8, 16, .75) 55%, rgba(5, 7, 14, .98));
  content: "";
}

.support-copy {
  position: relative;
  z-index: 2;
  max-width: 505px;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .11em;
}

.status i {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(16, 210, 192, .12);
}

.support-copy h2 {
  margin-top: 10px;
}

.support-copy > p {
  color: #b7bdc8;
}

.support-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 22px 0;
}

.support-options > div {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px;
  background: rgba(20, 25, 36, .78);
  border: 1px solid var(--line-strong);
  border-radius: 11px;
  backdrop-filter: blur(8px);
}

.support-options svg,
.mail-symbol {
  width: 26px;
  height: 26px;
  color: var(--accent);
}

.mail-symbol {
  display: grid;
  flex: 0 0 26px;
  place-items: center;
  font-size: 20px;
  font-weight: 900;
}

.support-options span,
.support-options strong,
.support-options small {
  display: block;
}

.support-options strong {
  font-size: 11px;
}

.support-options small {
  color: var(--muted);
  font-size: 9px;
}

.faq-section .section-heading {
  align-items: center;
}

.faq-list {
  border-top: 1px solid var(--line-strong);
}

.faq-item {
  border-bottom: 1px solid var(--line-strong);
}

.faq-item h3 {
  margin: 0;
}

.faq-item button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 4px;
  color: #eef0f4;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
  font-size: 16px;
  font-weight: 800;
}

.faq-item button:hover {
  color: var(--accent);
}

.faq-item button i {
  position: relative;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
}

.faq-item button i::before,
.faq-item button i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 1px;
  background: currentColor;
  content: "";
  transform: translate(-50%, -50%);
}

.faq-item button i::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform .2s ease;
}

.faq-item.open button i::after {
  transform: translate(-50%, -50%) rotate(0);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .25s ease;
}

.faq-answer > p {
  min-height: 0;
  margin: 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.open .faq-answer > p {
  padding: 0 50px 22px 4px;
}

.final-cta {
  display: flex;
  min-height: 255px;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  padding: clamp(35px, 6vw, 68px);
  overflow: hidden;
  background:
    radial-gradient(circle at 0 100%, rgba(16, 210, 192, .24), transparent 34%),
    radial-gradient(circle at 100% 0, rgba(255, 44, 180, .28), transparent 38%),
    linear-gradient(125deg, #292142, #171c2a);
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: var(--radius-lg);
}

.final-cta h2 {
  font-size: clamp(34px, 4vw, 51px);
}

.final-cta p {
  max-width: 650px;
  margin: 10px 0 0;
  color: #bfc4ce;
}

.site-footer {
  margin-left: var(--sidebar);
  padding: 52px max(28px, calc((100vw - var(--sidebar) - var(--content)) / 2 + 30px)) 25px;
  background: #10141e;
  border-top: 1px solid var(--line);
}

.footer-top {
  display: grid;
  max-width: calc(var(--content) - 60px);
  grid-template-columns: 1.2fr repeat(3, .65fr) 1.4fr;
  gap: 35px;
  margin: 0 auto;
}

.footer-top > a img {
  width: 165px;
  height: auto;
}

.footer-top > div:not(.footer-play) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
}

.footer-top strong {
  margin-bottom: 6px;
  font-size: 13px;
}

.footer-top a {
  color: var(--muted);
  font-size: 11px;
}

.footer-top a:hover {
  color: var(--accent);
}

.footer-play {
  display: flex;
  align-items: flex-start;
  gap: 13px;
}

.footer-play > span {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  place-items: center;
  border: 2px solid white;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 900;
}

.footer-play p {
  margin: 0;
  color: var(--muted-2);
  font-size: 10px;
  line-height: 1.55;
}

.footer-bottom {
  display: flex;
  max-width: calc(var(--content) - 60px);
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  margin: 35px auto 0;
  padding-top: 20px;
  color: var(--muted-2);
  border-top: 1px solid var(--line);
  font-size: 9px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  color: var(--accent);
  font-weight: 800;
}

.mobile-cta {
  display: none;
}

.back-to-top {
  position: fixed;
  z-index: 700;
  right: 22px;
  bottom: 22px;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--accent);
  background: #242938;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .3);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: .2s ease;
}

.back-to-top svg {
  transform: rotate(180deg);
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

@media (min-width: 1680px) {
  :root {
    --sidebar: 300px;
  }

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

@media (max-width: 1240px) {
  :root {
    --sidebar: 255px;
  }

  .top-nav a {
    padding-inline: 17px;
  }

  .header-actions .button {
    min-width: 104px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.5fr) minmax(280px, .72fr);
  }

  .hero-copy {
    width: 82%;
  }

  .facts-bento {
    grid-template-columns: 1fr 1fr;
  }

  .fact-card-featured {
    grid-row: span 2;
  }

  .fact-card-operator {
    grid-column: 2;
  }
}

@media (max-width: 1024px) {
  :root {
    --header: 70px;
  }

  .brand {
    width: 200px;
    flex-basis: 200px;
    justify-content: flex-start;
    padding-left: 22px;
    border: 0;
  }

  .brand img {
    width: 132px;
  }

  .top-nav {
    margin-left: auto;
  }

  .top-nav a {
    padding-inline: 14px;
    font-size: 14px;
  }

  .header-actions .button {
    min-height: 44px;
  }

  .menu-toggle {
    display: flex;
  }

  .site-sidebar {
    z-index: 920;
    width: 286px;
    box-shadow: 25px 0 60px rgba(0, 0, 0, .42);
    transform: translateX(-105%);
    transition: transform .25s ease;
  }

  .sidebar-open .site-sidebar {
    transform: none;
  }

  .sidebar-open .sidebar-backdrop {
    display: block;
  }

  .sidebar-open .menu-toggle .icon-open {
    display: none;
  }

  .sidebar-open .menu-toggle .icon-close {
    display: block;
  }

  .site-main,
  .site-footer {
    margin-left: 0;
  }

  .content-shell {
    padding-inline: 34px;
  }

  .footer-top,
  .footer-bottom {
    max-width: 100%;
  }
}

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

  .hero-card-main {
    min-height: 480px;
  }

  .hero-copy {
    min-height: 480px;
  }

  .hero-side {
    display: grid;
    grid-template-columns: repeat(2, minmax(360px, 1fr));
    grid-template-rows: 230px;
    padding-bottom: 5px;
    overflow-x: auto;
    scrollbar-width: thin;
  }

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

  .intro-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .toc-card {
    position: static;
  }

  .account-section {
    grid-template-columns: 1fr;
  }

  .account-visual {
    min-height: 430px;
  }

  .payment-rail {
    grid-template-columns: repeat(4, 1fr);
  }

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

  .payout-card {
    min-height: 270px;
  }

  .level-track {
    grid-template-columns: repeat(5, minmax(180px, 1fr));
    padding-bottom: 6px;
    overflow-x: auto;
  }

  .tournament-section {
    grid-template-columns: 1fr;
  }

  .leaderboard-card {
    transform: rotate(.5deg);
  }

  .kyc-timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .kyc-timeline::before {
    display: none;
  }

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

  .footer-top {
    grid-template-columns: 1.3fr repeat(3, .7fr);
  }

  .footer-play {
    grid-column: 1 / -1;
    max-width: 440px;
  }
}

@media (max-width: 740px) {
  :root {
    --header: 64px;
  }

  body {
    padding-bottom: 70px;
  }

  .site-header {
    height: var(--header);
  }

  .brand {
    width: auto;
    flex: 1 1 auto;
    padding-left: 15px;
  }

  .brand img {
    width: 112px;
  }

  .top-nav {
    display: none;
  }

  .header-actions {
    gap: 7px;
    padding-right: 10px;
  }

  .header-actions .button {
    min-width: 0;
    min-height: 40px;
    padding-inline: 13px;
    font-size: 12px;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
  }

  .casino-lobby {
    padding: 10px 10px 2px;
  }

  .hero-card-main {
    min-height: 480px;
    border-radius: 14px;
  }

  .hero-card-main > img {
    object-position: 64% center;
  }

  .hero-shade {
    background: linear-gradient(0deg, rgba(5, 7, 15, .99) 0, rgba(8, 7, 18, .75) 62%, rgba(8, 5, 18, .2));
  }

  .hero-copy {
    width: 100%;
    min-height: 480px;
    justify-content: flex-end;
    padding: 28px 22px 42px;
  }

  .hero-copy h1 {
    font-size: clamp(39px, 12.2vw, 54px);
  }

  .hero-offer {
    font-size: 21px;
  }

  .hero-sub {
    font-size: 12px;
  }

  .hero-actions {
    width: 100%;
    gap: 13px;
  }

  .hero-actions .button {
    min-width: 0;
    flex: 1;
    padding-inline: 15px;
    font-size: 13px;
  }

  .text-link {
    font-size: 11px;
  }

  .hero-side {
    grid-template-columns: repeat(2, 82vw);
    grid-template-rows: 210px;
    gap: 9px;
  }

  .visual-banner {
    min-height: 210px;
    border-radius: 13px;
  }

  .story-rail {
    gap: 18px;
    margin-top: 13px;
  }

  .story-rail a > span {
    width: 63px;
    height: 63px;
  }

  .lobby-section {
    padding: 22px 10px 28px;
  }

  .section-heading,
  .lobby-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 13px;
  }

  .section-heading h2,
  .account-copy h2,
  .app-copy h2,
  .tournament-copy h2,
  .license-section h2,
  .support-copy h2,
  .final-cta h2 {
    font-size: 32px;
  }

  .game-filters {
    width: 100%;
    overflow-x: auto;
  }

  .game-filters button {
    flex: 1 0 auto;
  }

  .game-grid {
    display: flex;
    gap: 9px;
    padding-bottom: 7px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .game-grid::-webkit-scrollbar {
    display: none;
  }

  .game-card {
    width: min(72vw, 270px);
    flex: 0 0 min(72vw, 270px);
    scroll-snap-align: start;
  }

  .trust-strip {
    display: flex;
    margin-inline: 10px;
    overflow-x: auto;
    border: 1px solid var(--line);
    border-radius: 12px;
    scrollbar-width: none;
  }

  .trust-strip::-webkit-scrollbar {
    display: none;
  }

  .trust-strip div {
    min-width: 145px;
  }

  .content-shell {
    padding: 46px 15px 65px;
  }

  .content-shell > section {
    margin-top: 74px;
  }

  .content-shell > .intro-grid {
    margin-top: 23px;
  }

  .article-copy h2 {
    font-size: 39px;
  }

  .article-copy .lead {
    font-size: 17px;
  }

  .facts-bento {
    grid-template-columns: 1fr;
  }

  .fact-card-featured {
    min-height: 300px;
    grid-row: auto;
  }

  .fact-card-operator {
    grid-column: auto;
  }

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

  .bonus-card-welcome {
    min-height: 480px;
    grid-column: auto;
    justify-content: flex-end;
    padding: 25px;
  }

  .bonus-card-welcome > img {
    object-position: 68% center;
  }

  .bonus-card-welcome::after {
    background: linear-gradient(0deg, rgba(6, 7, 15, .99), rgba(8, 6, 17, .42) 78%);
  }

  .bonus-card-welcome h3 {
    font-size: 37px;
  }

  .terms-note {
    align-items: flex-start;
  }

  .account-visual {
    min-height: 350px;
  }

  .account-copy {
    padding: 30px 21px;
  }

  .account-copy .button {
    width: 100%;
  }

  .login-strip {
    grid-template-columns: auto 1fr;
    gap: 16px;
    padding: 23px 20px;
  }

  .login-strip h2 {
    font-size: 24px;
  }

  .login-strip > .button {
    grid-column: 1 / -1;
    width: 100%;
  }

  .login-icon {
    width: 50px;
    height: 50px;
  }

  .payment-rail {
    display: flex;
    padding-bottom: 4px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .payment-rail > div {
    width: 116px;
    min-width: 116px;
  }

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

  table {
    min-width: 650px;
  }

  .flow-row {
    align-items: stretch;
    flex-direction: column;
  }

  .flow-row > i {
    width: 1px;
    height: 20px;
    margin-left: 15px;
    background: linear-gradient(var(--line-strong), var(--accent));
  }

  .app-section {
    min-height: 660px;
    align-items: flex-end;
    padding: 28px 22px;
  }

  .app-section > img {
    object-position: 63% center;
  }

  .app-overlay {
    background: linear-gradient(0deg, rgba(4, 7, 15, .99) 0, rgba(5, 8, 17, .92) 52%, rgba(4, 7, 15, .15));
  }

  .app-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
  }

  .app-actions .button {
    width: 100%;
  }

  .vip-hero {
    border-radius: 14px;
  }

  .vip-hero img {
    width: 170%;
    max-width: none;
    transform: translateX(-1%);
  }

  .vip-hero .button {
    top: 36.1%;
    left: 3.9%;
    width: 41.1%;
    height: 6.4%;
    font-size: 9px;
  }

  .level-track {
    grid-template-columns: repeat(5, 170px);
  }

  .tournament-section {
    padding: 31px 20px;
  }

  .leaderboard-card {
    padding: 10px;
    transform: none;
  }

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

  .kyc-timeline article {
    min-height: auto;
  }

  .kyc-timeline b {
    margin-top: 24px;
  }

  .license-section {
    grid-template-columns: 1fr;
    padding: 30px 22px;
  }

  .license-badge {
    width: 155px;
    height: 155px;
  }

  .license-badge img {
    width: 110px;
    height: 110px;
  }

  .support-section {
    min-height: 660px;
    align-items: flex-end;
    padding: 28px 22px;
  }

  .support-section > img {
    object-position: 34% center;
  }

  .support-section::after {
    background: linear-gradient(0deg, rgba(5, 7, 14, .99), rgba(6, 8, 16, .85) 48%, rgba(5, 7, 14, .06));
  }

  .support-options {
    grid-template-columns: 1fr;
  }

  .support-copy .button {
    width: 100%;
  }

  .faq-item button {
    padding-block: 19px;
    font-size: 14px;
  }

  .faq-item.open .faq-answer > p {
    padding-right: 5px;
  }

  .final-cta {
    align-items: flex-start;
    flex-direction: column;
    padding: 35px 23px;
  }

  .final-cta .button {
    width: 100%;
  }

  .site-footer {
    padding: 45px 20px 25px;
  }

  .footer-top {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 20px;
  }

  .footer-top > a,
  .footer-play {
    grid-column: 1 / -1;
  }

  .footer-top > div:nth-of-type(3) {
    grid-column: 1 / -1;
  }

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

  .mobile-cta {
    position: fixed;
    z-index: 1100;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    height: 70px;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 9px 12px 9px 16px;
    background: rgba(27, 30, 40, .98);
    border-top: 1px solid var(--line-strong);
    box-shadow: 0 -12px 30px rgba(0, 0, 0, .28);
    backdrop-filter: blur(14px);
  }

  .mobile-cta span,
  .mobile-cta small,
  .mobile-cta strong {
    display: block;
  }

  .mobile-cta small {
    color: var(--muted);
    font-size: 9px;
  }

  .mobile-cta strong {
    font-size: 12px;
  }

  .mobile-cta > b {
    display: grid;
    min-width: 114px;
    height: 45px;
    place-items: center;
    color: #031614;
    background: var(--accent);
    border-radius: 10px;
    font-size: 12px;
  }

  .back-to-top {
    right: 13px;
    bottom: 83px;
  }
}

@media (max-width: 480px) {
  .header-login {
    display: none;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .text-link {
    align-self: flex-start;
  }

  .article-copy h2 {
    font-size: 35px;
  }

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

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

  .login-strip > .button {
    grid-column: auto;
  }

  .leaderboard-card li {
    grid-template-columns: 22px 31px 1fr auto;
    gap: 6px;
    padding-inline: 7px;
  }

  .avatar {
    width: 29px;
    height: 29px;
  }

  .responsible-row {
    align-items: flex-start;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}
