@font-face {
  font-family: Lato;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/lato-400-2.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: Lato;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/lato-400-1.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: Lato;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/fonts/lato-700-4.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: Lato;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/fonts/lato-700-3.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  --gold: #ffcc00;
  --gold-deep: #e6b800;
  --navy: #000b1e;
  --navy-2: #071433;
  --card: #0c1a38;
  --line: #1c2a4a;
  --white: #fff;
  --ink: #222;
  --muted: #b8c0d0;
  --radius: 8px;
  --max: 1200px;
  --font: Lato, "Segoe UI", Roboto, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { font-family: var(--font, Lato, sans-serif); font-size: 16px; scroll-behavior: smooth; }
html {
  background-color: var(--navy);
}
body {
  margin: 0;
  min-width: 320px;
  color: var(--white);
  background-color: transparent;
  background-image: url("/images/casino_background.png");
  background-image: url("/images/main_background.avif");
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; }
a:hover { text-decoration: underline; }
p, ul, ol { margin: 0 0 1em; }
h1, h2, h3 { margin: 0 0 0.5em; line-height: 1.2; }

.skip { position: absolute; left: -999px; }
.skip:focus { left: 8px; top: 8px; background: var(--gold); color: #000; padding: 8px; z-index: 80; }
.wrap { width: min(100% - 48px, var(--max)); margin-inline: auto; }

main#inhalt {
  width: min(100% - 48px, var(--max));
  margin-inline: auto;
}
main#inhalt > .wrap {
  width: 100%;
}
main#inhalt > .hero {
  width: 100%;
  max-width: none;
}

.menu-check { position: absolute; opacity: 0; pointer-events: none; }

:where([role="button"][aria-label="star"]) {
  cursor: pointer;
  outline: none;
  user-select: none;
}
:where([role="button"][aria-label="star"]):focus-visible {
  box-shadow: 0 0 0 3px #fff, 0 0 0 6px var(--gold);
}

.gold-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  background: var(--gold);
  color: #111;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 4px;
  font-size: 14px;
}
.gold-btn:hover { background: var(--gold-deep); }

.site-head {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid #e6e6e6;
}
.head-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 64px;
}
.brand img {
  width: auto;
  height: 36px;
  max-width: 140px;
  min-width: 0;
  object-fit: contain;
}
.head-promo {
  display: none;
  align-items: center;
  gap: 8px;
  color: #1a4d9e;
  font-weight: 700;
  background: transparent;
  min-height: 40px;
  position: relative;
}
.head-promo img { width: 22px; height: 22px; }
.promo-text { position: relative; display: inline-block; line-height: 1; }
.promo-s { position: relative; display: inline-block; }
.badge {
  position: absolute;
  top: -12px;
  left: 0.12em;
  transform: none;
  background: #e31b23;
  color: #fff;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  z-index: 1;
}
.search-box {
  margin-left: auto;
  display: none;
  align-items: center;
  background: #f3f5f8;
  border-radius: 24px;
  padding: 0 12px;
  min-width: 220px;
  min-height: 40px;
  color: #666;
}
.search-box img { width: 18px; height: 18px; }
.search-box span { padding-left: 8px; font-size: 14px; }
.sv-cta-login-top {
  color: #111;
  font-weight: 700;
  background: transparent;
  min-height: 44px;
  padding: 0 8px;
  display: inline-flex;
  align-items: center;
  line-height: 1;
}
.burger {
  width: 40px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  margin-right: -6px;
}
.burger span, .burger span::before, .burger span::after {
  display: block; width: 18px; height: 2px; background: #222; position: relative; content: "";
}
.burger span::before { top: -6px; position: absolute; }
.burger span::after { top: 6px; position: absolute; }

.cat-nav {
  background: #0a1020;
  overflow-x: auto;
}
.cat-list {
  display: flex;
  gap: 2px;
  min-height: 72px;
  align-items: stretch;
}
.cat-item,
.cat-list a,
.sv-cta-nav-slots, .sv-cta-nav-book, .sv-cta-nav-jackpots, .sv-cta-nav-live,
.sv-cta-nav-roulette, .sv-cta-nav-blackjack, .sv-cta-nav-table, .sv-cta-nav-races, .sv-cta-nav-blog {
  color: #fff;
  background: transparent;
  min-height: 64px;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  text-transform: none;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.cat-item img {
  width: 26px;
  height: 26px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.sv-cta-nav-book img {
  filter: none; /* already white book icon */
}
.cat-item:hover { color: var(--gold); }
.cat-list a.is-on { color: var(--gold); }
.trust-bar {
  background: var(--gold);
  color: #111;
  font-size: 12px;
  font-weight: 700;
  min-height: 28px;
  display: flex;
  align-items: center;
}
.trust-inner {
  display: flex;
  justify-content: flex-end;
  gap: 18px;
  align-items: center;
  min-height: 28px;
}
.trust-bar img { width: 16px; height: 16px; vertical-align: -2px; display: inline; }

.drawer { display: none; position: fixed; inset: 0; z-index: 60; }
.menu-check:checked ~ .drawer { display: block; }
.drawer-dim { position: absolute; inset: 0; background: rgb(0 0 0 / 55%); }
.drawer-panel {
  position: absolute; top: 0; right: 0; width: min(320px, 90vw); height: 100%;
  background: #0a1020; padding: 20px; overflow: auto;
  display: flex; flex-direction: column; gap: 8px;
}
.drawer-x { align-self: flex-end; font-size: 28px; color: #fff; cursor: pointer; }
.drawer-nav { display: flex; flex-direction: column; }
.drawer-nav a,
.sv-cta-draw-slots, .sv-cta-draw-book, .sv-cta-draw-jackpots, .sv-cta-draw-live,
.sv-cta-draw-roulette, .sv-cta-draw-blackjack, .sv-cta-draw-table, .sv-cta-draw-races, .sv-cta-draw-blog {
  width: 100%; justify-content: flex-start; background: transparent; color: #fff;
  min-height: 44px; text-transform: none;
}

.hero {
  position: relative;
  overflow: hidden;
  background: transparent;
  max-width: none;
  margin: 12px 0 0;
  width: 100%;
  border-radius: 4px;
}
.hero-track {
  display: flex;
  width: 100%;
  transition: transform 0.7s ease-in-out;
}
.hero-slide {
  min-width: 100%;
  position: relative;
  padding: 0;
  display: grid;
  grid-template-columns: minmax(280px, 42%) 1fr;
  min-height: clamp(240px, 32vw, 400px);
  background: #07122c;
  overflow: hidden;
  align-items: stretch;
}
.hero-panel {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  padding: 28px 48px 28px 28px;
  background: #0a1a3a;
  clip-path: polygon(0 0, 100% 0, 86% 100%, 0 100%);
  text-align: left;
}
.hero-panel h1,
.hero-panel h2 {
  font-size: clamp(24px, 3.4vw, 38px);
  margin: 0;
  line-height: 1.15;
}
.hero-panel p {
  margin: 0;
  max-width: 34ch;
  color: #dce3f0;
  font-size: 15px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 4px;
}
.hero-more {
  color: var(--gold);
  font-weight: 700;
  font-size: 14px;
  text-decoration: underline;
}
.hero-visual {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: inherit;
  padding: 12px 16px 12px 0;
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 55% at 50% 45%, rgb(40 70 140 / 28%) 0%, transparent 70%),
    radial-gradient(circle at 18% 28%, rgb(255 215 80 / 20%) 0 2px, transparent 3px),
    radial-gradient(circle at 72% 22%, rgb(255 255 255 / 22%) 0 1.5px, transparent 3px),
    radial-gradient(circle at 48% 78%, rgb(255 200 60 / 16%) 0 2px, transparent 3px),
    radial-gradient(circle at 86% 58%, rgb(255 255 255 / 18%) 0 1px, transparent 2px),
    #07122c;
  background-size: auto, 120px 100px, 90px 80px, 140px 110px, 70px 70px, auto;
}
.hero-visual::before {
  content: "";
  position: absolute;
  inset: -8%;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 55% 50% at 50% 48%, rgb(255 210 90 / 14%), transparent 72%);
  filter: blur(18px);
}
.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(ellipse 68% 62% at 50% 46%, transparent 42%, #07122c 78%),
    linear-gradient(90deg, #07122c 0%, transparent 16%, transparent 84%, #07122c 100%),
    linear-gradient(180deg, transparent 58%, #07122cee 100%);
}
.hero-visual img {
  position: relative;
  z-index: 1;
  width: auto;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 10px 28px rgb(0 0 0 / 0.45));
  -webkit-mask-image: radial-gradient(ellipse 78% 72% at 50% 48%, #000 48%, transparent 88%);
  mask-image: radial-gradient(ellipse 78% 72% at 50% 48%, #000 48%, transparent 88%);
}
.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}
.hero-dots button {
  width: 8px; height: 8px; border-radius: 50%; border: 0; background: #fff8;
  padding: 0; cursor: pointer;
}
.hero-dots button.is-on { background: #fff; width: 10px; height: 10px; }

.winners {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 12px;
  align-items: center;
  margin: 18px 0 8px;
  padding: 10px 12px;
  background: #111c36;
  border-radius: 10px;
  overflow: hidden;
}
.winners-label {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  text-align: center;
}
.winners-viewport { overflow: hidden; }
.winners-track {
  display: flex;
  gap: 20px;
  width: max-content;
  will-change: transform;
}
.win-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 170px;
  background: transparent;
  color: #fff;
}
.win-item img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.win-meta { display: flex; flex-direction: column; gap: 1px; font-style: normal; line-height: 1.2; }
.win-meta b { color: var(--gold); font-size: 12px; font-weight: 700; }
.win-meta i { font-style: normal; font-size: 12px; color: #fff; }
.win-meta em { font-style: normal; font-size: 12px; color: #c5cddc; }

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #0d1a33;
  color: #9ad67a;
  font-size: 12px;
  font-weight: 700;
}
.live-pill i {
  width: 8px; height: 8px; border-radius: 50%; background: #3ddc84; display: inline-block;
}

.show-grid .featured { grid-row: span 2; }
.show-grid .featured > img:not(.tag) { aspect-ratio: 1; height: 100%; object-fit: cover; }

.foot-welcome {
  text-align: center;
  color: #c5cddc;
  font-size: 14px;
  margin: 0 0 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.app-social {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 24px;
}
.app-social img { height: 40px; width: auto; }
.help-box {
  background: #0c1a38;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 18px;
}
.help-box .gold-btn { width: 100%; margin-bottom: 14px; }
.contact { display: grid; gap: 8px; color: #dce3f0; font-size: 14px; }
.contact span { display: flex; gap: 8px; align-items: center; }
.safe-box { display: grid; gap: 10px; justify-items: start; }
.safe-box h3 { margin: 0; text-transform: uppercase; letter-spacing: .04em; color: var(--gold); }
.safe-box p { margin: 0; color: #c5cddc; font-size: 14px; }
.safe-ico { filter: brightness(0) invert(1); }
.trio { display: grid; gap: 12px; margin: 24px 0; }
.trio-card {
  background: #0c1a38;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 16px;
}
.trio-card h3 { margin: 8px 0; text-transform: uppercase; font-size: 14px; }
.trio-card p { margin: 0; color: #c5cddc; font-size: 14px; }
.trio-card img { filter: brightness(0) invert(1); height: 40px; width: auto; }
.provider-row {
  display: flex; flex-wrap: wrap; gap: 18px 24px; justify-content: center;
  align-items: center; margin: 28px 0; opacity: .92;
}
.provider-row img { height: 28px; width: auto; max-width: 110px; object-fit: contain; filter: brightness(0) invert(1); }
.partners h3 { text-align: center; text-transform: uppercase; letter-spacing: .06em; font-size: 14px; color: var(--gold); }
.partner-row { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
.partner-row figure { margin: 0; text-align: center; }
.partner-row img {
  height: 88px; width: 88px; object-fit: contain; background: #fff;
  border-radius: 10px; padding: 10px;
}
.partner-row figcaption { color: var(--gold); font-size: 13px; margin-top: 8px; font-weight: 700; }
.trust-block {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 16px;
  align-items: center;
  margin: 28px 0;
  padding: 16px;
  background: #0c1a38;
  border-radius: 10px;
}
.trust-score { display: grid; gap: 6px; justify-items: start; }
.trust-score span { font-size: 12px; color: #9aa3b5; }
.rev-slider { display: grid; grid-template-columns: 36px 1fr 36px; gap: 8px; align-items: center; overflow: hidden; }
.rev-track { display: flex; gap: 12px; overflow: hidden; }
.rev { min-width: 220px; background: #071028; border-radius: 8px; padding: 12px; font-size: 13px; }
.rev b { display: block; margin-bottom: 4px; }
.rev-nav {
  width: 32px; height: 32px; border-radius: 50%; border: 1px solid #334; background: #111c36; color: #fff; cursor: pointer;
}
.foot-brand { display: grid; grid-template-columns: 140px 1fr; gap: 16px; align-items: start; margin: 20px 0; }
.lang-select {
  margin-top: 12px; display: inline-flex; align-items: center; min-height: 36px;
  padding: 0 12px; border: 1px solid #334; border-radius: 6px; color: #fff; background: #0c1a38;
}
@media (max-width: 959px) {
  .trust-block, .foot-brand { grid-template-columns: 1fr; }
  .winners { grid-template-columns: 70px 1fr; }
}

.rail { padding: 18px 0 8px; }
.rail-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  flex-wrap: nowrap;
}
.rail-head h2 {
  margin: 0;
  font-size: clamp(14px, 3.6vw, 18px);
  flex: 1 1 auto;
  min-width: 0;
  line-height: 1.25;
  overflow-wrap: anywhere;
  word-break: normal;
  white-space: normal;
}
.rail-head .grow { display: none; }
.rail-head .live-pill {
  flex: 0 1 auto;
  min-width: 0;
  max-width: 42%;
  font-size: 11px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.rail-head [class*="sv-cta-all-"] {
  flex: 0 0 auto;
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: #fff;
  min-height: 32px;
  height: 32px;
  padding: 0 8px;
  text-transform: none;
  font-size: 14px;
  font-weight: 400;
  text-decoration: underline;
  white-space: nowrap;
  line-height: 1;
  box-sizing: border-box;
}
.rail-btn {
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  min-width: 32px;
  min-height: 32px;
  border-radius: 50%;
  border: 0;
  background: #1a2748;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  box-sizing: border-box;
}
.rail-btn img {
  width: 10px;
  height: 16px;
  flex: 0 0 auto;
  filter: invert(1);
}
.rail-row {
  --cols: 7;
  --gap: 10px;
  --tile: calc((100% - (var(--cols) - 1) * var(--gap)) / var(--cols));
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: var(--tile);
  gap: var(--gap);
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  padding-bottom: 8px;
  scrollbar-width: none;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
.rail-row::-webkit-scrollbar { display: none; }

.game {
  display: flex;
  flex-direction: column;
  padding: 0;
  min-height: 0;
  width: 100%;
  min-width: 0;
  background: #0a142c;
  color: #fff;
  text-transform: none;
  overflow: hidden;
  border-radius: 8px;
  scroll-snap-align: start;
  position: relative;
}
.game > img:not(.tag) {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center;
  flex-shrink: 0;
}
.game.tall > img:not(.tag) { aspect-ratio: 2 / 3; }
.game.wide-card > img:not(.tag) { aspect-ratio: 3 / 4; }
/* same row width for all categories — tile count fills 100% (no staircase) */
[data-rail="ex"] .rail-row { --cols: 4; }
[data-rail="buy"] .rail-row { --cols: 5; }
[data-rail="buy"] .game > img:not(.tag) { aspect-ratio: 16 / 10; }

.top10 {
  margin: 20px 0;
  border: 1px solid #c9a227;
  border-radius: 10px;
  padding: 14px 0 12px;
  background: #071028 url("/images/grid_background_3.png") center / cover no-repeat;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
.top10 h2 { margin-bottom: 12px; padding-inline: 12px; }
.top-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  padding-inline: 12px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
.sv-cta-top-3, .sv-cta-top-9 { grid-column: span 2; }
.sv-cta-top-3 > img:not(.tag), .sv-cta-top-9 > img:not(.tag) { aspect-ratio: 2 / 1; object-fit: cover; }
.game.wide > img:not(.tag) { aspect-ratio: 2 / 1; object-fit: cover; }
.game-name {
  padding: 8px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
}
.tag-row {
  position: absolute;
  top: 6px;
  left: 6px;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  pointer-events: none;
  max-width: calc(100% - 12px);
}
.tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: static;
  margin: 0;
  padding: 2px 7px;
  min-height: 16px;
  border-radius: 999px;
  background: #000;
  border: 1px solid currentColor;
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}
.tag.neu {
  color: #f0c034;
  border-color: #f0c034;
}
.tag.hot {
  color: #ff3b2f;
  border-color: #ff3b2f;
}
.tag.ex {
  color: #fff;
  border-color: #6ec8ff;
  background: rgb(0 0 0 / 72%);
}
.jp-bar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: #0b3d8c;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px;
  text-align: center;
}
.rate { font-size: 11px; color: #ffd45a; padding: 0 8px 8px; }
.rank {
  position: absolute; top: 8px; right: 8px;
  width: 22px; height: 22px; background: #111; color: var(--gold);
  font-size: 12px; font-weight: 700; display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--gold);
}

.jack-feat {
  margin: 24px auto;
  border: 2px solid #d4af37;
  border-radius: 10px;
  overflow: hidden;
  background: #1a1208 url("/images/grid_background_2.png") center/cover;
  padding: 16px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.grand {
  text-align: center;
  margin: 8px 0 16px;
  min-height: 120px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.grand img {
  margin: 0 auto;
  height: auto;
  width: min(220px, 55%);
  filter: drop-shadow(0 8px 18px rgb(0 0 0 / 0.45));
}

.show-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
}
.sv-cta-show-crazy { grid-row: span 2; }
.sv-cta-show-crazy img { aspect-ratio: auto; height: 100%; }

.seo { padding: 32px 0 48px; }
.seo h2 { font-size: 22px; }
.seo p, .faq p { color: #d5d7de; }
.facts { display: grid; gap: 10px; margin: 16px 0; }
.fact { background: #0c1a38; border: 1px solid var(--line); border-radius: 8px; padding: 14px; }
.fact b { display: block; color: var(--gold); }
.table { width: 100%; border-collapse: collapse; margin: 16px 0; font-size: 14px; }
.table th, .table td { padding: 10px 12px; text-align: left; border-bottom: 1px solid var(--line); }
.table th { color: var(--gold); }
.steps { display: grid; gap: 10px; margin: 16px 0; }
.step { display: grid; grid-template-columns: 40px 1fr; gap: 12px; background: #0c1a38; padding: 14px; border-radius: 8px; }
.num { width: 40px; height: 40px; border-radius: 50%; background: var(--gold); color: #111; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.faq details { background: #0c1a38; border-radius: 8px; margin-bottom: 8px; }
.faq summary { padding: 14px; font-weight: 700; cursor: pointer; }
.faq details p { padding: 0 14px 14px; }
.cta-band {
  display: flex; flex-wrap: wrap; gap: 12px; align-items: center; justify-content: space-between;
  background: linear-gradient(90deg, #1c2748, #3a2c08); border-radius: 8px; padding: 20px; margin-top: 16px;
}

.site-foot { background: #050d28; padding: 40px 0 96px; border-top: 1px solid var(--line); }
.app-social { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; justify-content: center; margin-bottom: 24px; }
.app-social img { height: 40px; width: auto; }
.sv-cta-app-ios, .sv-cta-app-and, .sv-cta-fb, .sv-cta-ig, .sv-cta-yt {
  background: transparent; padding: 0; min-height: 0;
}
.help-grid { display: grid; gap: 16px; margin-bottom: 24px; }
.help-box, .safe-box, .mini-box {
  border: 1px solid #3a4a6e; border-radius: 8px; padding: 16px;
}
.sv-cta-chat-foot { width: 100%; margin-bottom: 12px; }
.contact { display: flex; flex-direction: column; gap: 6px; color: var(--muted); font-size: 14px; }
.trio { display: grid; gap: 12px; }
.mini-box img { width: 36px; height: 36px; margin-bottom: 8px; }
.prov { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; align-items: center; margin: 24px 0; }
.prov img { height: 28px; width: auto; filter: brightness(2); }
.partners h3 { text-align: center; font-size: 14px; letter-spacing: .08em; }
.partner-row { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.partner-row img { height: 72px; width: 72px; object-fit: contain; background: #fff; border-radius: 8px; padding: 8px; }
.tp { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; margin: 24px 0; }
.tp img { height: 28px; }
.reviews { display: flex; gap: 12px; overflow-x: auto; }
.rev { min-width: 220px; background: #0c1a38; border-radius: 8px; padding: 12px; font-size: 13px; }
.cols { display: grid; gap: 16px; }
.cols h3 { font-size: 14px; color: var(--gold); }
.cols a, .sv-cta-f-help, .sv-cta-f-faq, .sv-cta-f-contact, .sv-cta-f-pay,
.sv-cta-f-agb-p, .sv-cta-f-agb, .sv-cta-f-cookie, .sv-cta-f-privacy, .sv-cta-f-copy,
.sv-cta-f-map, .sv-cta-f-resp, .sv-cta-f-jobs, .sv-cta-f-and, .sv-cta-f-ios {
  display: flex; background: transparent; color: #fff; min-height: 32px; justify-content: flex-start;
  text-transform: none; font-weight: 400; font-size: 14px; padding: 4px 0;
}
.legal { font-size: 12px; color: #9aa3b5; }
.pay-row { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin: 16px 0; }
.pay-row img { height: 28px; width: auto; background: #fff; border-radius: 4px; padding: 4px; }
.badges { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; align-items: center; }
.badges img { height: 40px; width: auto; }

.dock {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 40;
  display: flex; gap: 8px; padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: #050d28ee; border-top: 1px solid var(--line);
}
.sv-cta-login-dock { flex: 1; background: transparent; color: #fff; border: 1px solid #fff; }
.sv-cta-reg-dock { flex: 1; }
.lost { min-height: 46vh; padding: 48px 0; max-width: 640px; }
.lost .hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 16px; }
.lost .hero-actions a { display: inline-flex; align-items: center; min-height: 44px; padding: 0 18px; border: 1px solid var(--gold); color: #fff; border-radius: 4px; font-weight: 700; }
.site-footer { background: #050d28; padding: 32px 0 96px; }
.disclaimer { color: #9aa3b5; font-size: 13px; }
.foot-meta { display: flex; gap: 12px; align-items: center; color: #9aa3b5; }
.age-badge { width: 40px; height: 40px; border: 2px solid #9aa3b5; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; }
.site-header { position: sticky; top: 0; z-index: 50; background: #fff; }
.header-bar { display: flex; align-items: center; gap: 12px; min-height: 72px; }
.topnav { display: none; }
.header-actions { margin-left: auto; display: flex; gap: 8px; align-items: center; }
.menu-toggle { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; cursor: pointer; }
.menu-toggle span, .menu-toggle span::before, .menu-toggle span::after { display: block; width: 18px; height: 2px; background: #222; content: ""; position: relative; }
.menu-toggle span::before { top: -6px; position: absolute; }
.menu-toggle span::after { top: 6px; position: absolute; }
.drawer-back { position: absolute; inset: 0; background: rgb(0 0 0 / 55%); }
.drawer-close { align-self: flex-end; font-size: 28px; color: #fff; cursor: pointer; }
.sv-cta-login-head, .sv-cta-reg-head, .sv-cta-login-drawer, .sv-cta-reg-drawer, .sv-cta-404-play { }
.sv-nav-slots, .sv-nav-live, .sv-nav-table, .sv-nav-jackpot, .sv-nav-promo, .sv-nav-help,
.sv-draw-slots, .sv-draw-live, .sv-draw-table, .sv-draw-jackpot, .sv-draw-promo, .sv-draw-help { color: #fff; background: transparent; min-height: 44px; padding: 8px 12px; }
.sv-cta-reg-head, .sv-cta-reg-drawer, .sv-cta-404-play, .sv-cta-reg-dock { }
@media (min-width: 960px) {
  .topnav { display: flex; gap: 8px; }
  .topnav a { color: #111; font-weight: 700; padding: 8px; }
}

.hero-panel .gold-btn { position: relative; z-index: 2; }
.cat-list > [role="button"].cat-item {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
}

@media (min-width: 720px) {
  .search-box, .head-promo { display: flex; }
  .trio { grid-template-columns: repeat(3, 1fr); }
  .facts { grid-template-columns: repeat(3, 1fr); }
  .steps { grid-template-columns: repeat(3, 1fr); }
  .help-grid { grid-template-columns: 1fr 1fr; }
  .trio { grid-template-columns: repeat(3, 1fr); }
  .cols { grid-template-columns: repeat(3, 1fr); }
  .table { display: table; }
}
@media (min-width: 960px) {
  .dock { display: none; }
  .site-foot { padding-bottom: 40px; }
  .help-grid { grid-template-columns: 1.2fr 1fr; }
  .cols { grid-template-columns: repeat(5, 1fr); }
  .rail-row { --cols: 7; }
  [data-rail="ex"] .rail-row { --cols: 4; }
  [data-rail="buy"] .rail-row { --cols: 5; }
}
@media (max-width: 959px) {
  .show-grid { grid-template-columns: 1fr 1fr; }
  .rail-row { --cols: 5; }
  [data-rail="ex"] .rail-row { --cols: 3; }
  [data-rail="buy"] .rail-row { --cols: 3; }
}
@media (max-width: 719px) {
  .wrap {
    width: min(100% - 24px, var(--max));
  }
  .wrap.head-bar {
    width: min(100% - 20px, var(--max));
    padding-right: 2px;
  }
  .hero {
    width: 100%;
    margin-top: 0;
    border-radius: 0;
  }
  .hero-slide {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .hero-panel {
    clip-path: none;
    padding: 20px 16px 16px;
    background: linear-gradient(180deg, #0a1a3acc 0%, #0a1a3a 55%);
  }
  .hero-visual {
    position: relative;
    min-height: 160px;
    padding: 8px 12px 20px;
  }
  .hero-visual img {
    min-height: 0;
    width: auto;
    height: auto;
    max-width: 100%;
    object-fit: contain;
  }
  /* keep tiles reasonably wide; scroll instead of squashing (like cat menu) */
  .rail-row {
    --tile: 138px;
    grid-auto-columns: var(--tile);
  }
  [data-rail="ex"] .rail-row { --tile: 176px; }
  [data-rail="buy"] .rail-row { --tile: 168px; }
  .top-grid {
    display: grid;
    grid-auto-flow: column;
    grid-template-columns: none;
    grid-auto-columns: 138px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    width: 100%;
    padding-inline: 12px;
  }
  .top-grid::-webkit-scrollbar { display: none; }
  .sv-cta-top-3,
  .sv-cta-top-9 {
    grid-column: span 2;
  }
  .sv-cta-top-3 > img:not(.tag),
  .sv-cta-top-9 > img:not(.tag) {
    aspect-ratio: 2 / 1;
    object-fit: cover;
  }
  .table thead { display: none; }
  .table, .table tbody, .table tr, .table td { display: block; width: 100%; }
  .table td { display: flex; justify-content: space-between; gap: 8px; }
  .table td::before { content: attr(data-label); color: var(--gold); font-weight: 700; }
}

.rail,
.top10,
.winners,
.jack-feat {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
