:root {
  --bg: #071428;
  --rail: #1a4fd8;
  --panel: #12224a;
  --panel-2: #1a3370;
  --line: rgba(255, 255, 255, 0.12);
  --gold: #ffc107;
  --gold-2: #ffd54f;
  --cta: #e53935;
  --cta-2: #ff5a57;
  --ink: #ffffff;
  --text: #f4f7ff;
  --muted: #9db0d4;
  --quiet: #6f84ab;
  --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: var(--rail);
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  overflow: 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: 110px;
  margin: 4px 8px 18px;
}

.rail-brand img {
  width: auto;
  height: 32px;
  min-width: 110px;
  max-width: 168px;
}

.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-link,
.rail [role="button"][aria-label="euslot-arialabel"] {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 40px;
  padding: 8px 10px;
  border-radius: 8px;
  background: transparent;
  color: var(--text);
  font-weight: 600;
  justify-content: flex-start;
  text-align: left;
}

.rail-nav img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  flex: 0 0 auto;
  background: transparent;
  filter: brightness(0) saturate(100%) invert(78%) sepia(84%) saturate(1200%) hue-rotate(359deg) brightness(104%) contrast(104%);
}

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

.rail-link:hover,
.rail-link.is-on,
.rail [role="button"][aria-label="euslot-arialabel"]: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="euslot-arialabel"],
.rail-actions .rail-app[role="button"][aria-label="euslot-arialabel"] {
  justify-content: flex-start;
  gap: 10px;
  min-height: 44px;
  padding: 0 14px;
  font-weight: 800;
  color: #fff;
  border: 0;
  box-shadow: none;
  background: linear-gradient(90deg, #e93d77 0%, #ffc850 100%);
}

.rail-actions .rail-vip[role="button"][aria-label="euslot-arialabel"]:hover,
.rail-actions .rail-app[role="button"][aria-label="euslot-arialabel"]:hover {
  color: #fff;
  filter: brightness(1.06);
  background: linear-gradient(90deg, #e93d77 0%, #ffc850 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="euslot-arialabel"] {
  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;
}

.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: #071428;
  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: 168px;
  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;
  background: transparent;
}

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

.mode-switch [role="button"][aria-label="euslot-arialabel"]: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="euslot-arialabel"] {
  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="euslot-arialabel"] {
  background: #163a8a;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.mast-login[role="button"][aria-label="euslot-arialabel"]:hover {
  background: #1c4fd8;
  color: #fff;
}

.mast-reg[role="button"][aria-label="euslot-arialabel"] {
  background: var(--cta);
  color: #fff;
}

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

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

.jack-more[role="button"][aria-label="euslot-arialabel"] {
  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="euslot-arialabel"]:hover {
  background: rgba(255, 220, 0, 0.08);
  color: #fff;
}

.page {
  padding: 0 0 48px;
}

.page .promo-row {
  margin: 8px 0 28px;
}

.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: #050e1f;
  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;
  height: 760px;
  min-height: 760px;
  display: block;
  background:
    radial-gradient(18px 18px at 8% 22%, rgba(255, 255, 255, 0.16), transparent 60%),
    radial-gradient(22px 22px at 24% 12%, rgba(140, 190, 255, 0.22), transparent 62%),
    radial-gradient(16px 16px at 62% 18%, rgba(255, 255, 255, 0.12), transparent 60%),
    radial-gradient(28px 28px at 88% 8%, rgba(90, 150, 255, 0.2), transparent 64%),
    radial-gradient(720px 220px at 18% 100%, rgba(90, 170, 255, 0.38), transparent 62%),
    radial-gradient(520px 180px at 70% 0%, rgba(40, 80, 180, 0.28), transparent 55%),
    linear-gradient(180deg, #0b1c44 0%, #071428 100%);
}

.hero img.hero-visual {
  position: absolute;
  left: -10%;
  bottom: -48px;
  z-index: 1;
  width: auto !important;
  height: 900px !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: contain;
  object-position: left bottom;
  pointer-events: none;
}

.hero::after {
  display: none;
}

.reg-card {
  position: relative;
  z-index: 2;
  width: min(560px, calc(100% - 24px));
  margin: 28px 20px 28px auto;
  padding: 22px 18px 20px;
  border-radius: 12px;
  background: rgba(18, 24, 40, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.1);
  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;
}

.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;
}

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

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

.reg-link[role="button"][aria-label="euslot-arialabel"] {
  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="euslot-arialabel"]: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="euslot-arialabel"] {
  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="euslot-arialabel"]: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;
}

.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: #163a8a;
  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="euslot-arialabel"] {
  width: 36px;
  min-height: 36px;
  padding: 0;
  background: #1c1c20;
  color: #cfcfd6;
  border-radius: 8px;
  font-size: 1.15rem;
}

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

.nav-round[role="button"][aria-label="euslot-arialabel"] {
  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="euslot-arialabel"] {
  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="euslot-arialabel"],
.game-grid [role="button"][aria-label="euslot-arialabel"] {
  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="euslot-arialabel"] {
  width: auto;
}

.row-scroll [role="button"][aria-label="euslot-arialabel"] img,
.game-grid [role="button"][aria-label="euslot-arialabel"] 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;
}

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

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

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

.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;
}

.content-shot[role="button"][aria-label="euslot-arialabel"] {
  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="euslot-arialabel"]: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;
}

.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: #010206;
  border-top: 1px solid var(--line);
}

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

.foot-brand img {
  height: 36px;
  min-width: 110px;
  max-width: 180px;
  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="euslot-arialabel"] {
  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="euslot-arialabel"],
.prov-row .foot-logo[role="button"][aria-label="euslot-arialabel"],
.rg-row .foot-logo[role="button"][aria-label="euslot-arialabel"],
.crypto-row .foot-logo[role="button"][aria-label="euslot-arialabel"] {
  flex: 0 0 auto;
  width: auto;
  min-height: 0;
  padding: 4px;
  background: transparent;
  border-radius: 0;
}

.pay-row .foot-logo[role="button"][aria-label="euslot-arialabel"]:hover,
.prov-row .foot-logo[role="button"][aria-label="euslot-arialabel"]:hover,
.rg-row .foot-logo[role="button"][aria-label="euslot-arialabel"]:hover,
.crypto-row .foot-logo[role="button"][aria-label="euslot-arialabel"]: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;
}

.pay-row .foot-logo img[src*="Trustly_Logotype"],
.pay-row .foot-logo img[src*="zimpler.webp"] {
  filter: invert(1);
}

.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="euslot-arialabel"] {
  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="euslot-arialabel"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: var(--radius);
  background: var(--cta);
  color: #fff;
  font-weight: 800;
  text-align: center;
  cursor: pointer;
  user-select: none;
}

[role="button"][aria-label="euslot-arialabel"]:hover {
  background: var(--cta-2);
}

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

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

.foot-grid [role="button"][aria-label="euslot-arialabel"] {
  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="euslot-arialabel"]: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));
  }

  .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);
  }

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

  .mode-switch {
    display: flex;
  }

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

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

  .rail-brand img {
    height: 42px;
    min-width: 126px;
    max-width: 196px;
  }

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

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

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

  .jack-more[role="button"][aria-label="euslot-arialabel"] {
    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="euslot-arialabel"] {
    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="euslot-arialabel"]: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="euslot-arialabel"] {
    background: transparent;
  }

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

  .mast-login[role="button"][aria-label="euslot-arialabel"],
  .mast-reg[role="button"][aria-label="euslot-arialabel"] {
    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="euslot-arialabel"] {
    position: absolute;
    right: 4px;
    top: 4px;
    margin: 0;
  }

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

  .jack-more[role="button"][aria-label="euslot-arialabel"] {
    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;
  }

  .site-foot {
    padding-bottom: 88px;
  }

  .chat-float[role="button"][aria-label="euslot-arialabel"] {
    bottom: calc(72px + env(safe-area-inset-bottom, 0px));
  }
}

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

  .hero img.hero-visual {
    position: relative;
    left: -6%;
    bottom: auto;
    display: block;
    height: 360px !important;
    width: auto !important;
    margin: 0 auto -28px;
  }

  .reg-card {
    margin: 0 12px 16px;
    width: calc(100% - 24px);
  }

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

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

  .promo-banner {
    width: min(100%, 720px);
  }

  .promo-row > .promo-banner:nth-child(even) {
    width: calc(100% - 32px);
  }

  .promo-box {
    width: min(260px, calc(100% - 24px));
    left: 12px;
    right: auto;
  }

  .promo-banner--right .promo-box {
    left: auto;
    right: 12px;
    margin: 0;
  }

  .egypt-copy {
    position: relative;
    inset: auto;
    width: 100%;
    padding: 14px 16px 16px;
  }

  .promo-banner {
    width: min(100%, 720px);
  }

  .wd-row {
    grid-template-columns: 1fr;
    gap: 8px;
    text-align: left;
  }

  .wd-cta {
    justify-self: stretch;
  }
}

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

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

.hero-winners {
  padding: 10px 16px 12px;
  background: #071428;
}

.hero-winners .win-tabs {
  margin-bottom: 8px;
}

.hero-winners .win-tabs span {
  padding: 4px 2px 8px;
  border-radius: 0;
  color: #c5d4f2;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.hero-winners .win-tabs .is-on {
  color: #fff;
  background: transparent;
  box-shadow: inset 0 -2px 0 #3d7bff;
}

.hero-winners .win-viewport {
  background: #1a4fd8;
  border-radius: 0;
}

.hero-winners .win-card {
  background: none;
  border-radius: 6px;
}

.hero-winners .win-user,
.hero-winners .win-game {
  color: #e8efff;
}

.spotlight {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: flex-start;
  gap: 12px;
  margin: 16px auto 8px;
}

.egypt-card {
  position: relative;
  flex: 1 1 560px;
  width: min(100%, 800px);
  max-width: 800px;
  margin: 0;
  overflow: hidden;
  border-radius: 10px;
  background: #000;
  border: 1px solid #163a8a;
}

.egypt-card img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: left center;
}

.egypt-copy {
  position: absolute;
  inset: 0 0 0 auto;
  width: min(46%, 280px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 18px 20px;
  background: #000;
}

.egypt-copy h2 {
  margin: 0 0 14px;
  color: #fff;
  font-size: clamp(1.1rem, 2.2vw, 1.45rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.egypt-label {
  margin: 0;
  color: #fff;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.egypt-pool,
.egypt-time {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: clamp(1.15rem, 2.4vw, 1.55rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  flex: 0 1 300px;
  width: min(100%, 300px);
  gap: 8px 6px;
  padding: 14px 12px 10px;
  border-radius: 10px;
  background: #0c1b44;
}

.feat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 72px;
  color: #fff;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-align: center;
}

.feat-item svg {
  width: 26px;
  height: 26px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.7;
}

.feat-platforms {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 8px;
  padding-bottom: 8px;
}

.feat-platforms svg {
  width: 18px;
  height: 18px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.6;
}

.promo-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  justify-items: start;
}

.promo-row > .promo-banner:nth-child(even) {
  justify-self: end;
}

.promo-banner {
  position: relative;
  isolation: isolate;
  width: min(100%, 720px);
  margin: 0;
  overflow: hidden;
  border-radius: 10px;
  background: #0b1020;
}

.promo-banner img {
  position: static;
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.promo-banner--right img {
  object-position: center;
}

.promo-box {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 18px;
  transform: translateY(-50%);
  width: min(300px, calc(100% - 36px));
  margin: 0;
  padding: 16px 14px 12px;
  border-radius: 6px;
  background: rgba(28, 30, 40, 0.9);
  text-align: center;
}

.promo-banner--right .promo-box {
  left: auto;
  right: 18px;
  margin: 0;
}

.promo-kicker,
.promo-sub,
.promo-note {
  margin: 0 0 8px;
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.promo-kicker {
  font-size: 0.82rem;
}

.promo-offer {
  margin: 0 0 8px;
  color: #fff;
  font-size: clamp(1.45rem, 3vw, 2rem);
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
}

.promo-offer em {
  display: inline-block;
  margin: 0 6px;
  color: var(--cta);
  font-style: normal;
  font-size: 0.55em;
  vertical-align: middle;
}

.promo-sub {
  font-size: 0.95rem;
}

.promo-note {
  color: var(--cta);
  font-size: 0.78rem;
}

.promo-note span {
  color: #fff;
}

.promo-sub--hot {
  color: var(--cta);
}

.promo-banner--jp {
  width: min(100%, 720px);
  background: #4a1e78;
}

.promo-banner--jp img {
  object-position: center;
}

.promo-banner--jp .promo-box {
  width: min(280px, 46%);
  min-height: 0;
  margin: 0;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #1c1428;
}

.promo-cta[role="button"][aria-label="euslot-arialabel"] {
  width: 100%;
  margin: 10px 0 8px;
  min-height: 44px;
  background: var(--cta);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.promo-cta[role="button"][aria-label="euslot-arialabel"]:hover {
  background: var(--cta-2);
  color: #fff;
}

.promo-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 10px;
}

.promo-mga {
  color: #d5d8e4;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.promo-terms[role="button"][aria-label="euslot-arialabel"] {
  min-height: 0;
  padding: 0;
  background: transparent;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
}

.promo-terms[role="button"][aria-label="euslot-arialabel"]:hover {
  background: transparent;
  color: #fff;
}

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

.wd-title {
  margin: 0 0 16px;
  text-align: center;
  color: #ff8a3d;
  font-size: clamp(1.2rem, 2.4vw, 1.6rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wd-head,
.wd-row {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 1fr 1.3fr auto;
  align-items: center;
  gap: 10px;
}

.wd-head {
  padding: 0 18px 8px;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
}

.wd-list {
  display: grid;
  gap: 8px;
}

.wd-row {
  min-height: 72px;
  padding: 8px 12px 8px 16px;
  border-radius: 8px;
  background: #1e5bdc;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
}

.wd-method {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.wd-method img {
  height: 46px;
  width: auto;
  max-width: 160px;
  max-height: 46px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
  object-fit: contain;
}

.wd-cta[role="button"][aria-label="euslot-arialabel"] {
  min-height: 36px;
  padding: 0 16px;
  background: var(--cta);
  color: #fff;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.vip-banner,
.total-jack {
  position: relative;
  isolation: isolate;
  width: min(100%, 760px);
  margin: 12px 0 24px;
  overflow: hidden;
  border-radius: 10px;
  background: #0b1020;
}

.vip-banner.vip-program {
  width: min(100%, 1040px);
  background: #140c28;
}

.vip-banner.vip-program[role="button"][aria-label="euslot-arialabel"] {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  width: min(100%, 1040px);
  min-height: 0;
  padding: 0;
  overflow: hidden;
  border-radius: 10px;
  background: #140c28;
  color: #fff;
  font-weight: inherit;
  text-align: left;
}

.vip-banner.vip-program[role="button"][aria-label="euslot-arialabel"]:hover {
  background: #140c28;
  color: #fff;
}

.vip-banner img,
.total-jack img {
  position: static;
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center right;
}

.vip-banner.vip-program img {
  grid-area: 1 / 1;
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center bottom;
}

.total-jack img {
  object-position: right center;
}

.vip-copy {
  grid-area: 1 / 1;
  position: relative;
  z-index: 1;
  width: 100%;
  min-width: 0;
  padding: clamp(12px, 2.2vw, 22px) clamp(14px, 3.2vw, 40px) 38%;
  text-align: center;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.28) 0%, rgba(10, 8, 24, 0.14) 52%, rgba(10, 8, 24, 0) 100%);
  pointer-events: none;
}

.vip-title {
  margin: 0 0 8px;
  color: #fff;
  font-size: clamp(1.05rem, 2.6vw, 1.7rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.25;
  overflow: visible;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.75);
}

.vip-title em {
  color: var(--gold);
  font-style: normal;
}

.vip-text {
  margin: 0 auto;
  max-width: 52rem;
  color: #fff;
  font-size: clamp(0.8rem, 1.5vw, 0.95rem);
  line-height: 1.5;
  overflow: visible;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.75);
}

.total-jack .promo-box {
  margin: 0;
  top: 50%;
  transform: translateY(-50%);
}

.block.prose + .vip-banner,
.block.prose + .total-jack,
.vip-banner + .block.prose,
.total-jack + .block.prose {
  margin-top: 8px;
}

.total-jack .promo-offer {
  font-size: clamp(1.5rem, 3.4vw, 2.2rem);
  color: var(--gold);
}

.page > .total-jack,
.page > .vip-program {
  width: 100%;
  max-width: none;
}

@media (min-width: 768px) and (max-width: 1099px) {
  .hero {
    height: 700px;
    min-height: 700px;
  }

  .hero img.hero-visual {
    position: absolute;
    left: -12%;
    bottom: -36px;
    height: 820px !important;
    width: auto !important;
  }

  .reg-card {
    margin: 24px 12px 24px auto;
  }
}

@media (max-width: 1099px) {
  .wd-head {
    display: none;
  }

  .wd-row {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .wd-row > div:nth-child(2),
  .wd-row > div:nth-child(3),
  .wd-row > div:nth-child(4) {
    grid-column: 1;
    font-size: 0.78rem;
    font-weight: 600;
    color: #d6e4ff;
  }

  .wd-cta[role="button"][aria-label="euslot-arialabel"] {
    grid-column: 2;
    grid-row: 1 / span 4;
  }
}

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

@media (min-width: 1100px) {
  .promo-row {
    grid-template-columns: 1fr;
  }
}
