:root {
  --bg: #0d0d0f;
  --rail: #121214;
  --panel: #1a1a1d;
  --panel-2: #222226;
  --line: rgba(255, 255, 255, 0.08);
  --gold: #ffdc00;
  --gold-2: #ffe44d;
  --ink: #161308;
  --text: #f4f4f6;
  --muted: #9b9ba3;
  --quiet: #6f6f78;
  --hot: #ff4d2e;
  --new: #22c55e;
  --jack: #7c3aed;
  --live: #e11d48;
  --radius: 8px;
  --rail-w: 232px;
  --mast: 64px;
  --font: "Segoe UI", system-ui, -apple-system, Roboto, Helvetica, Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

html,
body {
  margin: 0;
  padding: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--gold);
  text-decoration: none;
}

a:hover {
  color: #fff;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  z-index: 10000;
  background: var(--gold);
  color: var(--ink);
  padding: 8px 12px;
  border-radius: var(--radius);
  font-weight: 800;
}

.skip-link:focus {
  left: 8px;
}

.app {
  min-height: 100vh;
}

.rail {
  display: none;
  position: fixed;
  inset: 0 auto 0 0;
  width: min(86vw, 260px);
  z-index: 80;
  background: #373737;
  border-right: 1px solid var(--line);
  overflow-x: hidden;
  overflow-y: auto;
  padding: 14px 12px 20px;
}

.menu-check {
  position: fixed;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  margin: 0;
  padding: 0;
  opacity: 0;
  pointer-events: none;
}

.menu-check:checked ~ .app .rail {
  display: flex;
  flex-direction: column;
}

.rail-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  margin: 4px 8px 18px;
}

.rail-brand img {
  width: auto;
  height: 32px;
  max-width: 100%;
}

.menu-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  text-decoration: none;
  cursor: pointer;
}

.rail-nav {
  display: grid;
  gap: 2px;
}

.rail-nav,
.rail-actions,
.rail-lang,
.rail-cash[role="button"][aria-label="goldenstararialabel"] {
  min-width: 0;
}

.rail-link,
.rail [role="button"][aria-label="goldenstararialabel"] {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-width: 0;
  min-height: 40px;
  padding: 8px 10px;
  border-radius: 8px;
  background: transparent;
  color: var(--text);
  font-weight: 600;
  justify-content: flex-start;
  text-align: left;
  overflow-wrap: anywhere;
}

.rail-nav img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  flex: 0 0 auto;
  filter: grayscale(1) brightness(1.45);
}

.rail-actions img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  flex: 0 0 auto;
}

.rail-link:hover,
.rail-link.is-on,
.rail [role="button"][aria-label="goldenstararialabel"]:hover {
  background: var(--panel);
  color: #fff;
  text-decoration: none;
}

.rail-actions {
  display: grid;
  gap: 8px;
  margin: 14px 0;
}

.rail-actions .rail-vip[role="button"][aria-label="goldenstararialabel"],
.rail-actions .rail-app[role="button"][aria-label="goldenstararialabel"] {
  justify-content: flex-start;
  gap: 10px;
  min-height: 44px;
  padding: 0 14px;
  font-weight: 800;
  color: #fff;
  border: 0;
  box-shadow: none;
}

.rail-actions .rail-vip[role="button"][aria-label="goldenstararialabel"] {
  background: linear-gradient(90deg, #f83363 0%, #ff4d8a 38%, #ffd54f 100%);
}

.rail-actions .rail-app[role="button"][aria-label="goldenstararialabel"] {
  background: linear-gradient(90deg, #9b18a0 0%, #c2187a 42%, #ffd54f 100%);
}

.rail-actions .rail-vip[role="button"][aria-label="goldenstararialabel"]:hover,
.rail-actions .rail-app[role="button"][aria-label="goldenstararialabel"]:hover {
  color: #fff;
  filter: brightness(1.06);
}

.rail-actions .rail-vip[role="button"][aria-label="goldenstararialabel"]:hover {
  background: linear-gradient(90deg, #f83363 0%, #ff4d8a 38%, #ffd54f 100%);
}

.rail-actions .rail-app[role="button"][aria-label="goldenstararialabel"]:hover {
  background: linear-gradient(90deg, #9b18a0 0%, #c2187a 42%, #ffd54f 100%);
}

.rail-vip img,
.rail-app img {
  width: 24px;
  height: 24px;
  background: transparent;
  border: 0;
  box-shadow: none;
  border-radius: 4px;
}

.rail-chat[role="button"][aria-label="goldenstararialabel"] {
  justify-content: center;
  background: var(--panel-2);
  color: #fff;
}

.rail-lang {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: auto 8px 12px;
  color: var(--muted);
  font-size: 0.9rem;
}

.rail-cash[role="button"][aria-label="goldenstararialabel"] {
  display: block;
  padding: 0;
  min-height: 0;
  background: transparent;
  overflow: hidden;
  border-radius: 10px;
}

.rail-cash img {
  width: 100%;
  height: auto;
  max-width: 100%;
}

.stage {
  min-width: 0;
}

.mast-wrap {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: var(--mast);
  padding: 8px 12px;
  background: #0d0d0f;
  border-bottom: 1px solid var(--line);
}

.mast {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  min-height: 0;
  padding: 0;
  background: transparent;
  border: 0;
}

.menu-open {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: #fff;
  text-decoration: none;
  flex: 0 0 auto;
  cursor: pointer;
}

.burger,
.burger::before,
.burger::after {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}

.burger {
  position: relative;
}

.burger::before,
.burger::after {
  content: "";
  position: absolute;
  left: 0;
}

.burger::before {
  top: -6px;
}

.burger::after {
  top: 6px;
}

.brand-mobile {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  min-width: 110px;
  margin-right: 8px;
  z-index: 2;
}

.brand-mobile img {
  display: block;
  height: 32px;
  width: auto;
  max-width: none;
  min-width: 110px;
}

.mode-switch {
  display: none;
  align-items: center;
  gap: 6px;
}

.mode {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--panel);
  color: var(--text);
  font-weight: 700;
}

.mode.is-on {
  background: var(--panel-2);
  box-shadow: inset 0 0 0 1px var(--gold);
  color: var(--gold);
}

.mode img {
  width: 18px;
  height: 18px;
}

.mode-switch [role="button"][aria-label="goldenstararialabel"] {
  background: var(--panel);
  color: var(--text);
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  gap: 8px;
}

.mode-switch [role="button"][aria-label="goldenstararialabel"]:hover {
  background: var(--panel-2);
  color: var(--gold);
}

.mast-dock {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.mast-search {
  order: -1;
}

.mast-search [role="button"][aria-label="goldenstararialabel"] {
  width: 42px;
  min-height: 42px;
  padding: 0;
  background: var(--panel);
  border-radius: 8px;
}

.mast-search img {
  width: 18px;
  height: 18px;
}

.mast-login[role="button"][aria-label="goldenstararialabel"] {
  background: transparent;
  color: #fff;
  border: 1px solid var(--gold);
}

.mast-login[role="button"][aria-label="goldenstararialabel"]:hover {
  background: rgba(255, 220, 0, 0.08);
  color: #fff;
}

.mast-reg[role="button"][aria-label="goldenstararialabel"] {
  background: var(--gold);
  color: var(--ink);
}

.jack-info[role="button"][aria-label="goldenstararialabel"] {
  width: 22px;
  min-height: 22px;
  padding: 0;
  margin-left: 8px;
  background: transparent;
  color: #8a8a94;
  border-radius: 50%;
}

.jack-info[role="button"][aria-label="goldenstararialabel"]:hover {
  background: transparent;
  color: #fff;
}

.jack-more[role="button"][aria-label="goldenstararialabel"] {
  justify-self: end;
  margin-left: 0;
  min-height: 34px;
  padding: 0 14px;
  background: transparent;
  color: #fff;
  border: 1px solid var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.jack-more[role="button"][aria-label="goldenstararialabel"]:hover {
  background: rgba(255, 220, 0, 0.08);
  color: #fff;
}

.page {
  padding: 0 0 48px;
}

.page-pad {
  width: min(1240px, calc(100% - 20px));
  margin: 0 auto;
}

.jackpot {
  display: grid;
  grid-template-columns: auto auto auto auto auto minmax(0, 1fr);
  align-items: center;
  gap: 0;
  padding: 8px 16px;
  background: #0c0c0c;
  border-bottom: 1px solid var(--line);
}

.jackpot-brand {
  display: flex;
  align-items: center;
  padding-right: 16px;
}

.jackpot-brand img {
  height: 36px;
  width: auto;
  min-width: 72px;
}

.jack-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.jack-copy {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.jack-label {
  font-size: 0.66rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.jack-val {
  font-size: 1.02rem;
  font-weight: 800;
  color: #fff;
  white-space: nowrap;
  line-height: 1.2;
}

.jack-prime .jack-label {
  color: var(--gold);
}

.jack-mid .jack-label {
  color: #c4a0ff;
}

.jack-mini .jack-label {
  color: #ff6b9d;
}

.jack-item img {
  width: 22px;
  height: 22px;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  background: #160e24;
}

.hero-visual {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 6, 14, 0.55) 0%, rgba(8, 6, 14, 0.2) 100%);
  pointer-events: none;
}

.reg-card {
  position: relative;
  z-index: 1;
  width: min(620px, calc(100% - 24px));
  margin: 28px auto 24px;
  padding: 22px 18px 20px;
  border-radius: 12px;
  background: rgba(8, 8, 12, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.reg-logo {
  width: 120px;
  height: auto;
  min-width: 96px;
  margin: 0 auto 10px;
}

.reg-kicker {
  margin: 0 0 4px;
  text-align: center;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.reg-card h1 {
  margin: 0 0 6px;
  text-align: center;
  font-size: clamp(1.05rem, 2.4vw, 1.2rem);
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.reg-bonus {
  margin: 0;
  text-align: center;
  font-weight: 800;
  font-size: clamp(1.35rem, 3.2vw, 1.85rem);
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.reg-spins {
  margin: 0 0 16px;
  text-align: center;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reg-grid {
  display: grid;
  gap: 8px;
}

.reg-field {
  width: 100%;
  min-height: 44px;
  padding: 0 12px;
  border: 0;
  border-radius: 8px;
  background: #2a2a30;
  color: var(--text);
  font: inherit;
  cursor: pointer;
}

.reg-field::placeholder {
  color: #8d8d96;
}

.reg-check {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  cursor: pointer;
}

.reg-check input {
  margin-top: 3px;
  accent-color: var(--gold);
}

.reg-submit[role="button"][aria-label="goldenstararialabel"] {
  width: 100%;
  margin-top: 12px;
  min-height: 48px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.reg-link[role="button"][aria-label="goldenstararialabel"] {
  display: inline;
  width: auto;
  min-height: 0;
  margin: 0;
  padding: 0;
  background: transparent;
  color: var(--gold);
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
}

.reg-link[role="button"][aria-label="goldenstararialabel"]:hover {
  background: transparent;
  color: #fff;
}

.reg-alt {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 14px 0 8px;
  color: var(--muted);
  font-size: 0.82rem;
}

.reg-alt::before,
.reg-alt::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}

.reg-google-wrap {
  display: flex;
  justify-content: center;
  margin: 4px 0 0;
}

.reg-google[role="button"][aria-label="goldenstararialabel"] {
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  min-height: 0;
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  border-radius: 0;
}

.reg-google[role="button"][aria-label="goldenstararialabel"]:hover {
  background: transparent;
}

.reg-google svg {
  width: 28px;
  height: 28px;
  display: block;
  background: transparent;
}

.reg-login {
  margin: 12px 0 0;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
}

.catbar {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 12px;
  overflow-x: auto;
  padding: 12px 0 8px;
  scrollbar-width: none;
}

.catbar::-webkit-scrollbar {
  display: none;
}

.catbar-main,
.catbar-tools {
  display: flex;
  gap: 8px;
}

.catbar a,
.catbar [role="button"][aria-label="goldenstararialabel"] {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 92px;
  min-height: 82px;
  padding: 8px 10px;
  border-radius: 10px;
  background: #1a1b21;
  color: var(--text);
  font-size: 0.72rem;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.catbar img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.cat-search[role="button"][aria-label="goldenstararialabel"] {
  min-width: 52px;
  width: 52px;
  padding: 0;
}

.catbar a:hover,
.catbar [role="button"][aria-label="goldenstararialabel"]:hover {
  background: var(--panel-2);
  color: #fff;
  text-decoration: none;
}

.winners {
  padding: 8px 0 4px;
  overflow: hidden;
}

.win-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.9rem;
}

.win-tabs span {
  padding: 6px 12px;
  border-radius: 6px;
}

.win-tabs .is-on {
  color: #fff;
  background: #25262e;
}

.win-viewport {
  overflow: hidden;
  background: #1a1b21;
  border-radius: 8px;
}

.win-track {
  display: flex;
  gap: 10px;
  width: max-content;
  padding: 8px;
  animation: win-marquee 42s linear infinite;
}

.win-track:hover {
  animation-play-state: paused;
}

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

.win-card {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 188px;
  padding: 8px;
  border-radius: 8px;
  background: transparent;
}

.win-card img {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  object-fit: cover;
}

.win-user {
  color: var(--muted);
  font-size: 0.75rem;
}

.win-amt {
  color: var(--gold);
  font-weight: 800;
  font-size: 0.85rem;
}

.win-game {
  color: var(--muted);
  font-size: 0.75rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 140px;
}

.games-sec {
  margin: 22px 0;
}

.games-track {
  width: max-content;
  max-width: 100%;
}

.games-sec-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 12px;
}

.games-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-arrow[role="button"][aria-label="goldenstararialabel"] {
  width: 36px;
  min-height: 36px;
  padding: 0;
  background: #1c1c20;
  color: #cfcfd6;
  border-radius: 8px;
  font-size: 1.15rem;
}

.nav-arrow[role="button"][aria-label="goldenstararialabel"]:hover {
  background: #2a2a30;
  color: #fff;
}

.nav-round[role="button"][aria-label="goldenstararialabel"] {
  border-radius: 50%;
  width: 40px;
  min-height: 40px;
}

.block {
  margin: 22px 0;
}

.block-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 12px;
}

.sec-title {
  margin: 0;
  color: #fff;
  font-size: clamp(1.45rem, 2.6vw, 1.9rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1.15;
}

.show-all[role="button"][aria-label="goldenstararialabel"] {
  min-height: 34px;
  padding: 0 12px;
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.row-scroll {
  display: flex;
  gap: 10px;
  overflow: hidden;
  padding-bottom: 0;
}

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

.row-scroll [role="button"][aria-label="goldenstararialabel"],
.game-grid [role="button"][aria-label="goldenstararialabel"] {
  position: relative;
  display: block;
  width: 148px;
  flex: 0 0 auto;
  padding: 0;
  min-height: 0;
  overflow: hidden;
  border-radius: 10px;
  background: #111;
}

.game-grid [role="button"][aria-label="goldenstararialabel"] {
  width: auto;
}

.row-scroll [role="button"][aria-label="goldenstararialabel"] img,
.game-grid [role="button"][aria-label="goldenstararialabel"] img {
  width: 100%;
  aspect-ratio: 176 / 237;
  object-fit: cover;
}

.g-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 1;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.g-hot {
  background: var(--hot);
  color: #fff;
}

.g-new {
  background: var(--new);
  color: #04140a;
}

.g-jack {
  background: var(--jack);
  color: #fff;
}

.g-live {
  background: var(--live);
  color: #fff;
}

.sports-block {
  margin: 28px auto;
}

.sports-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 12px;
}

.sports-wrap {
  position: relative;
  padding: 28px 16px 24px;
  border-radius: 16px;
  overflow: hidden;
  background: #120c1c url("/images/sportsbook-matches-block-background-desktop.webp") center / cover no-repeat;
}

.sports-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 8, 16, 0.35), rgba(10, 8, 16, 0.55));
  pointer-events: none;
}

.sports-wrap > * {
  position: relative;
  z-index: 1;
}

.sport-head {
  text-align: center;
  margin: 0 0 18px;
  color: #fff;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.9rem;
  font-weight: 700;
}

.sport-row {
  display: grid;
  gap: 10px;
}

.sport-card {
  padding: 14px 12px;
  border-radius: 12px;
  background: rgba(18, 18, 24, 0.78);
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.sport-meta {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 0.75rem;
}

.sport-vs {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 8px;
}

.sport-vs img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  margin: 0 auto 4px;
  border-radius: 50%;
}

.sport-vs > div span {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
}

.vs {
  color: var(--gold);
  font-weight: 800;
}

.odds-row {
  display: flex;
  gap: 6px;
  margin-top: 12px;
}

.odd-btn[role="button"][aria-label="goldenstararialabel"] {
  flex: 1;
  min-height: 36px;
  padding: 0 8px;
  background: #2a2a32;
  color: #fff;
  justify-content: space-between;
  font-weight: 700;
  font-size: 0.82rem;
}

.odd-btn[role="button"][aria-label="goldenstararialabel"]:hover {
  background: #3a3a44;
  color: #fff;
}

.sport-cta[role="button"][aria-label="goldenstararialabel"] {
  width: min(280px, 100%);
  margin: 18px auto 0;
  display: flex;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.tours-block {
  margin: 28px auto 8px;
}

.tours-block .sec-title {
  margin-bottom: 14px;
}

.tour-row {
  display: grid;
  gap: 12px;
}

.tour-card[role="button"][aria-label="goldenstararialabel"] {
  position: relative;
  display: block;
  padding: 0;
  min-height: 0;
  overflow: hidden;
  border-radius: 12px;
  background: #111;
}

.tour-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  object-position: right center;
}

.tour-copy {
  position: absolute;
  left: 16px;
  top: 16px;
  right: 38%;
  text-align: left;
}

.tour-name {
  margin: 0 0 10px;
  font-size: 1.02rem;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.15;
  color: #fff;
}

.tour-pool-label {
  margin: 0;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.72);
}

.tour-pool {
  margin: 0 0 12px;
  font-size: 1.28rem;
  font-weight: 800;
  color: #fff;
}

.tour-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 6px;
  background: var(--gold);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.tour-timer {
  position: absolute;
  right: 10px;
  bottom: 10px;
  padding: 8px 10px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.58);
  text-align: left;
}

.tour-timer-label {
  display: block;
  margin-bottom: 4px;
  font-size: 0.68rem;
  color: #fff;
}

.tour-ticks {
  display: flex;
  gap: 8px;
}

.tour-ticks div {
  min-width: 28px;
  text-align: center;
}

.tour-ticks b {
  display: block;
  color: #fff;
  font-size: 0.92rem;
  line-height: 1;
}

.tour-ticks span {
  font-size: 0.58rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: lowercase;
}

.crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 16px 0;
  padding: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.crumbs a {
  color: var(--muted);
}

.crumbs li:not(:last-child)::after {
  content: "›";
  margin-left: 8px;
  color: var(--quiet);
}

.page-hero {
  padding: 8px 0 18px;
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(1.55rem, 4vw, 2.35rem);
  line-height: 1.15;
}

.vis-label {
  margin: 0;
  color: #fff;
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1.15;
}

.hero-kicker {
  margin: 0 0 8px;
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.prose h2,
.block h2 {
  margin: 0 0 12px;
  font-size: clamp(1.2rem, 3vw, 1.55rem);
}

.prose h3 {
  margin: 22px 0 10px;
  font-size: 1.12rem;
}

.prose p,
.prose li {
  color: #d8dbe6;
}

.prose p {
  margin: 0 0 14px;
}

.prose ul,
.prose ol {
  margin: 0 0 16px;
  padding-left: 1.2rem;
}

.table-wrap {
  overflow-x: auto;
  margin: 0 0 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.prose table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  background: var(--panel);
}

.prose th,
.prose td {
  padding: 10px 12px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.prose th {
  background: #222226;
  color: var(--gold);
  font-size: 0.86rem;
}

.bonus-grid {
  display: grid;
  gap: 12px;
  margin: 0 0 24px;
}

.bonus-card[role="button"][aria-label="goldenstararialabel"] {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  width: auto;
  min-height: 220px;
  padding: 22px 18px 16px;
  overflow: hidden;
  border-radius: 12px;
  background: #14141c;
  border: 1px solid var(--line);
  color: #fff;
  font-weight: 400;
  text-align: left;
}

.bonus-card[role="button"][aria-label="goldenstararialabel"]:hover {
  background: #14141c;
}

.bonus-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: var(--bonus-bg);
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  pointer-events: none;
}

.bonus-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(8, 8, 12, 0.9) 0%, rgba(8, 8, 12, 0.58) 46%, rgba(8, 8, 12, 0.18) 100%);
  pointer-events: none;
}

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

.bonus-card p {
  margin: 0 0 6px;
  color: #f4f4f6;
}

.bonus-title {
  margin: 0 0 8px;
  font-size: 1.12rem;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.bonus-code {
  display: inline-flex;
  width: fit-content;
  min-height: 32px;
  margin: 8px 0;
  padding: 0 10px;
  border-radius: 6px;
  background: rgba(18, 19, 24, 0.88);
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 0.06em;
  align-items: center;
}

.bonus-go {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  margin-top: 8px;
  padding: 0 16px;
  border-radius: var(--radius);
  background: var(--gold);
  color: var(--ink);
  font-weight: 800;
}

.content-shot[role="button"][aria-label="goldenstararialabel"] {
  display: block;
  width: 100%;
  min-height: 0;
  margin: 0 0 22px;
  padding: 0;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #100f16;
}

.content-shot[role="button"][aria-label="goldenstararialabel"]:hover {
  background: #100f16;
  opacity: 0.94;
}

.content-shot img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  display: block;
}

.content-shot-wide {
  margin: 4px 0 24px;
}

.content-shot-compact {
  max-width: 520px;
  margin: 8px auto 28px;
}

.faq details {
  margin: 0 0 8px;
  padding: 12px 14px;
  border-radius: var(--radius);
  background: var(--panel);
  border: 1px solid var(--line);
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
}

.faq details p {
  margin: 10px 0 0;
  color: #d8dbe6;
}

.lost {
  min-height: 42vh;
  display: grid;
  place-content: center;
  text-align: center;
  padding: 40px 12px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.ghost-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 220, 0, 0.45);
  color: var(--text);
  font-weight: 700;
}

.site-foot {
  padding: 28px 0 90px;
  background: #000;
  border-top: 1px solid var(--line);
}

.foot-top {
  display: grid;
  gap: 16px;
  margin-bottom: 22px;
}

.foot-brand img {
  height: 36px;
  min-width: 110px;
  width: auto;
}

.foot-mail {
  margin: 0;
  text-align: center;
  color: #fff;
}

.foot-mail span {
  color: var(--gold);
  font-weight: 700;
}

.crypto-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 0.85rem;
}

.crypto-row img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  border-radius: 50%;
}

.crypto-row img[src*="Bitcoin_Accepted"] {
  width: auto;
  height: 22px;
  border-radius: 0;
}

.foot-grid {
  display: grid;
  gap: 22px;
}

.foot-grid h2 {
  margin: 0 0 10px;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
}

.foot-grid ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.foot-grid li {
  margin: 0 0 8px;
}

.foot-grid a {
  color: #cfcfd6;
}

.socials {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 22px 0;
}

.socials [role="button"][aria-label="goldenstararialabel"] {
  width: 40px;
  min-height: 40px;
  padding: 0;
  background: #1c1c20;
  color: #fff;
  border-radius: 8px;
}

.socials svg {
  display: block;
}

.logo-strip {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pay-strip,
.prov-strip {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pay-row,
.prov-row,
.rg-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
  align-items: center;
  justify-content: center;
}

.logo-strip .pay-row,
.logo-strip .prov-row {
  flex: 1;
  flex-wrap: nowrap;
  overflow: hidden;
  justify-content: space-evenly;
  margin: 0;
  gap: 18px;
}

.pay-row .foot-logo[role="button"][aria-label="goldenstararialabel"],
.prov-row .foot-logo[role="button"][aria-label="goldenstararialabel"],
.rg-row .foot-logo[role="button"][aria-label="goldenstararialabel"],
.crypto-row .foot-logo[role="button"][aria-label="goldenstararialabel"] {
  flex: 0 0 auto;
  width: auto;
  min-height: 0;
  padding: 4px;
  background: transparent;
  border-radius: 0;
}

.pay-row .foot-logo[role="button"][aria-label="goldenstararialabel"]:hover,
.prov-row .foot-logo[role="button"][aria-label="goldenstararialabel"]:hover,
.rg-row .foot-logo[role="button"][aria-label="goldenstararialabel"]:hover,
.crypto-row .foot-logo[role="button"][aria-label="goldenstararialabel"]:hover {
  background: transparent;
  opacity: 0.8;
}

.pay-row .foot-logo img,
.prov-row .foot-logo img,
.rg-row .foot-logo img {
  display: block;
  height: 28px;
  width: auto;
  max-width: 86px;
  object-fit: contain;
}

.disclaimer {
  margin: 22px auto 8px;
  max-width: 920px;
  color: var(--muted);
  font-size: 0.82rem;
  text-align: center;
  line-height: 1.55;
}

.rg-row {
  margin-top: 16px;
  padding-top: 4px;
  gap: 18px 22px;
}

.chat-float[role="button"][aria-label="goldenstararialabel"] {
  position: fixed;
  right: 12px;
  bottom: 72px;
  z-index: 65;
  width: 48px;
  min-height: 48px;
  padding: 0;
  border-radius: 50%;
  background: #ff7a18;
}

.chat-float img {
  width: 40px;
  height: 35px;
}

[role="button"][aria-label="goldenstararialabel"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: var(--radius);
  background: var(--gold);
  color: var(--ink);
  font-weight: 800;
  text-align: center;
  cursor: pointer;
  user-select: none;
}

[role="button"][aria-label="goldenstararialabel"]:hover {
  background: var(--gold-2);
}

[role="button"][aria-label="goldenstararialabel"]:focus {
  outline: none;
}

[role="button"][aria-label="goldenstararialabel"]:focus-visible {
  outline: 2px solid var(--gold-2);
  outline-offset: 3px;
}

.foot-grid [role="button"][aria-label="goldenstararialabel"] {
  display: flex;
  justify-content: flex-start;
  width: auto;
  min-height: 0;
  padding: 0;
  background: transparent;
  color: #cfcfd6;
  font-weight: 600;
}

.foot-grid [role="button"][aria-label="goldenstararialabel"]:hover {
  color: var(--gold);
  background: transparent;
}

@media (min-width: 768px) {
  .reg-grid {
    grid-template-columns: 1fr 1fr;
  }

  .reg-bonus-field {
    grid-column: 1 / -1;
  }

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

  .bonus-grid,
  .sport-row,
  .tour-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tour-card img {
    height: 200px;
  }

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

  .foot-top {
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
  }

  .foot-top .crypto-row {
    justify-content: flex-end;
  }
}

@media (min-width: 1100px) {
  .app {
    display: grid;
    grid-template-columns: var(--rail-w) 1fr;
  }

  .rail {
    display: flex;
    flex-direction: column;
    position: sticky;
    top: 0;
    height: 100vh;
    width: var(--rail-w);
    overflow-x: hidden;
    overflow-y: auto;
  }

  .menu-open,
  .menu-close {
    display: none;
  }

  .mode-switch {
    display: flex;
  }

  .brand-mobile img {
    height: 36px;
    min-width: 120px;
  }

  .mast-search [role="button"][aria-label="goldenstararialabel"] {
    width: auto;
    padding: 0 14px;
  }

  .rail-brand img {
    height: 42px;
  }

  .row-scroll [role="button"][aria-label="goldenstararialabel"] {
    width: 176px;
  }

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

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

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

  .tour-card img {
    height: 220px;
  }

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

@media (max-width: 1399px) {
  .jackpot {
    grid-template-columns: auto auto auto auto auto;
  }

  .jack-more[role="button"][aria-label="goldenstararialabel"] {
    grid-column: 1;
    justify-self: start;
    margin-top: 10px;
    white-space: nowrap;
  }
}

@media (max-width: 1099px) {
  .mode-switch {
    display: flex;
    margin-left: auto;
    flex: 0 0 auto;
  }

  .brand-mobile {
    display: flex;
    flex: 0 0 auto;
    margin-right: 8px;
  }

  .mode-switch a.mode {
    display: none;
  }

  .mode-switch [role="button"][aria-label="goldenstararialabel"] {
    background: #2a2a32;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border-radius: 999px;
    min-height: 40px;
    padding: 0 14px;
  }

  .mode-switch [role="button"][aria-label="goldenstararialabel"]:hover {
    background: #35353e;
    color: #fff;
  }

  .mast-dock {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 80;
    margin: 0;
    min-height: 58px;
    padding: 8px 12px calc(8px + env(safe-area-inset-bottom));
    background: #161618;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .mast-search {
    order: 0;
    margin-left: auto;
  }

  .mast-search [role="button"][aria-label="goldenstararialabel"] {
    background: transparent;
  }

  .mast-search [role="button"][aria-label="goldenstararialabel"]:hover {
    background: transparent;
  }

  .mast-login[role="button"][aria-label="goldenstararialabel"],
  .mast-reg[role="button"][aria-label="goldenstararialabel"] {
    min-height: 40px;
    padding: 0 14px;
    text-transform: uppercase;
    font-size: 0.82rem;
    border-radius: 8px;
  }

  .jackpot {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: start;
    gap: 0;
    padding: 10px 8px 12px;
  }

  .jackpot-brand {
    grid-column: 1 / -1;
    position: relative;
    justify-content: center;
    padding: 2px 32px 8px 0;
  }

  .jackpot-brand img {
    height: 26px;
    min-width: 0;
  }

  .jack-info[role="button"][aria-label="goldenstararialabel"] {
    position: absolute;
    right: 4px;
    top: 4px;
    margin: 0;
  }

  .jack-pool,
  .jack-item img {
    display: none;
  }

  .jack-more[role="button"][aria-label="goldenstararialabel"] {
    grid-column: 1 / -1;
    justify-self: center;
    margin-top: 10px;
    white-space: nowrap;
  }

  .jack-item {
    justify-content: center;
    padding: 4px 6px;
    border-left: 1px solid rgba(255, 255, 255, 0.14);
  }

  .jack-prime {
    border-left: 0;
  }

  .jack-copy {
    align-items: center;
    text-align: center;
  }

  .jack-val {
    font-size: 0.78rem;
    white-space: normal;
  }
}

@media (max-width: 767px) {
  .hero {
    min-height: 0;
  }

  .prose table {
    min-width: 480px;
  }

  .content-shot-wide[role="button"][aria-label="goldenstararialabel"] {
    border-radius: 10px;
  }
}

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

  .win-track {
    animation: none;
    flex-wrap: wrap;
    width: auto;
  }
}
