:root {
  --zm-bg: #14080b;
  --zm-stage: #1a0a0e;
  --zm-rail: #220c12;
  --zm-lift: #4a141c;
  --zm-card: #2c1016;
  --zm-line: rgba(200, 16, 46, 0.32);
  --zm-gold: #e23d4d;
  --zm-gold-2: #f4f4f4;
  --zm-orange: #c8102e;
  --zm-text: #f7f4f4;
  --zm-muted: #d8c8ca;
  --zm-quiet: #b0989c;
  --zm-ink: #ffffff;
  --zm-radius: 12px;
  --zm-pill: 999px;
  --zm-rail-w: 228px;
  --zm-top: 72px;
  --zm-dock: 64px;
  --zm-max: 1240px;
  --zm-font: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --zm-shadow: 0 12px 32px rgba(0, 0, 0, 0.42);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: rgba(200, 16, 46, 0.38) transparent;
}

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

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

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

a:hover {
  text-decoration: underline;
}

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

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

.cursor-pointer {
  cursor: pointer;
}

.outline-none {
  outline: none;
}

.zm-nav-toggle {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
  opacity: 0;
  pointer-events: none;
  appearance: none;
}

.zm-backdrop {
  display: none;
}

[role="button"][aria-label="zoom-dk"] {
  cursor: pointer;
  outline: none;
}

[role="button"][aria-label="zoom-dk"]:focus-visible {
  box-shadow: 0 0 0 3px rgba(200, 16, 46, 0.55);
}

.zm-rail {
  position: fixed;
  inset: 0 auto 0 0;
  width: var(--zm-rail-w);
  background: var(--zm-rail);
  display: flex;
  flex-direction: column;
  z-index: 70;
  padding: 18px 12px 16px;
  overflow-y: auto;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.zm-rail-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
}

.zm-rail-close {
  display: none;
  position: relative;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  margin: 0;
  cursor: pointer;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
}

.zm-rail-close::before,
.zm-rail-close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  background: var(--zm-text);
  border-radius: 2px;
}

.zm-rail-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.zm-rail-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.zm-brand {
  display: block;
  color: var(--zm-text);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1;
  text-decoration: none;
}

.zm-brand:hover {
  color: var(--zm-gold);
  text-decoration: none;
}

.zm-rail .zm-brand {
  display: block;
  margin: 8px 6px 16px;
}

.zm-rail-auth {
  display: none;
}

.zm-rail-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 8px;
}

.zm-rail-link,
.zm-rail-item {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  padding: 7px 10px;
  color: var(--zm-text);
  font-size: 13px;
  font-weight: 700;
  border-radius: 8px;
}

.zm-rail-link:hover,
.zm-rail-item:hover {
  background: rgba(255, 255, 255, 0.06);
  text-decoration: none;
  color: var(--zm-gold);
}

.zm-rail-link.is-on {
  color: var(--zm-gold);
  background: rgba(200, 16, 46, 0.08);
}

.zm-rail-item img,
.zm-rail-link img {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.zm-rail-group {
  margin: 14px 10px 6px;
  color: var(--zm-quiet);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.zm-chips {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 10px;
}

.zm-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  min-height: 72px;
  padding: 8px 4px 6px;
  background: #321016;
  border-radius: 10px;
  color: var(--zm-text);
  font-size: 10px;
  font-weight: 700;
  text-align: center;
}

.zm-chip img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.zm-frame {
  margin-left: var(--zm-rail-w);
  min-height: 100vh;
  background: var(--zm-stage);
}

.zm-top {
  position: sticky;
  top: 0;
  z-index: 60;
  height: var(--zm-top);
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 20px;
  background: rgba(20, 8, 11, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  min-width: 0;
}

.zm-menu-btn {
  display: none;
  width: 42px;
  height: 42px;
  margin: 0;
  padding: 10px 9px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
}

.zm-menu-btn span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--zm-text);
  border-radius: 2px;
}

.zm-top-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.zm-brand-compact {
  display: none;
  min-width: 0;
  font-size: 24px;
}

.zm-search {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 16px;
  background: var(--zm-lift);
  border-radius: 10px;
  color: var(--zm-quiet);
  font-size: 14px;
}

.zm-search img {
  width: 18px;
  height: 18px;
  opacity: 0.7;
}

.zm-rail-drop {
  border: none;
}

.zm-rail-drop > summary {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  padding: 7px 10px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  border-radius: 8px;
}

.zm-rail-drop > summary::-webkit-details-marker {
  display: none;
}

.zm-rail-drop > summary::after {
  content: "";
  margin-left: auto;
  width: 6px;
  height: 6px;
  border-right: 2px solid var(--zm-quiet);
  border-bottom: 2px solid var(--zm-quiet);
  transform: rotate(45deg);
}

.zm-rail-drop[open] > summary::after {
  transform: rotate(-135deg);
}

.zm-rail-sub {
  display: flex;
  flex-direction: column;
  padding: 0 0 6px 12px;
}

.zm-clock {
  margin: 16px 10px 8px;
  color: var(--zm-quiet);
  font-size: 11px;
  line-height: 1.4;
}

.zm-rail-app {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  margin: 8px 4px;
  padding: 8px 10px;
  border-radius: 10px;
  background: var(--zm-gold);
  color: var(--zm-ink);
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}

.zm-rail-app img {
  width: 16px;
  height: 22px;
  flex-shrink: 0;
}

.zm-lang {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 8px 8px 4px;
  padding: 8px 10px;
  background: var(--zm-lift);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
}

.zm-lang img {
  width: 20px;
  height: 14px;
}

.zm-rail-help {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 8px 10px 4px;
  color: var(--zm-gold);
  font-size: 13px;
  font-weight: 700;
}

.zm-rail-help img {
  width: 18px;
  height: 18px;
}

[role="button"][aria-label="zoom-dk"].zm-btn-login,
.zm-btn-login {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 16px;
  border: none;
  border-radius: 10px;
  color: #fff;
  background: #3d1218;
  font-weight: 800;
  font-size: 14px;
}

[role="button"][aria-label="zoom-dk"].zm-btn-reg,
.zm-btn-reg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 18px;
  border-radius: 10px;
  background: var(--zm-gold);
  color: var(--zm-ink);
  font-weight: 800;
  font-size: 14px;
}

[role="button"][aria-label="zoom-dk"].zm-btn-reg:hover,
.zm-btn-reg:hover {
  filter: brightness(1.06);
}

.zm-stage {
  padding: 18px 20px 88px;
}

.zm-inner {
  width: 100%;
  max-width: none;
  margin: 0;
}

.zm-hero {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  min-height: 360px;
  background: #3a0c14;
  box-shadow: var(--zm-shadow);
}

.zm-hero > picture,
.zm-hero > picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  min-height: 360px;
}

.zm-hero-copy {
  position: absolute;
  left: 32px;
  bottom: 28px;
  width: min(46%, 480px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0;
  pointer-events: none;
  z-index: 3;
}

.zm-hero-kicker {
  margin: 0 0 4px;
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55);
}

.zm-hero-title {
  margin: 0;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 0.92;
  font-weight: 800;
  color: var(--zm-gold);
}

.zm-hero-text {
  margin: 4px 0 14px;
  color: #fff;
  font-size: clamp(18px, 2.4vw, 28px);
  font-weight: 800;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

.zm-hero-cta {
  pointer-events: auto;
  align-self: flex-start;
  min-height: 46px;
  padding: 12px 28px;
  border-radius: 999px;
  background: var(--zm-gold);
  color: var(--zm-ink);
  font-weight: 800;
}

.zm-hero-pays {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  pointer-events: none;
}

.zm-hero-pays img {
  height: 18px;
  width: auto;
  min-height: 0;
}

.zm-trust {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin: 0;
  padding: 12px 20px 28px;
  background: linear-gradient(180deg, rgba(20, 8, 11, 0.78) 0%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}

.zm-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 2px 0;
  background: transparent;
  border: none;
  border-radius: 0;
}

.zm-trust-item img {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.zm-trust-item strong {
  display: block;
  font-size: 11px;
  line-height: 1.2;
  font-weight: 700;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.55);
}

.zm-trust-item span {
  display: none;
}

.zm-crumbs {
  margin: 18px 0 8px;
  color: var(--zm-quiet);
  font-size: 13px;
}

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

.zm-crumbs a + span::before {
  content: " / ";
  color: var(--zm-quiet);
}

h1 {
  margin: 0 0 14px;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.15;
}

h2 {
  margin: 32px 0 12px;
  font-size: 26px;
  line-height: 1.25;
}

h3 {
  margin: 22px 0 10px;
  font-size: 20px;
}

.zm-prose p,
.zm-faq p {
  margin: 0 0 14px;
  color: var(--zm-muted);
}

.zm-prose ul,
.zm-prose ol {
  margin: 0 0 16px;
  padding-left: 20px;
  color: var(--zm-muted);
}

.zm-prose li {
  margin-bottom: 6px;
}

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

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
  background: var(--zm-card);
}

th,
td {
  padding: 10px 12px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 14px;
}

th {
  color: var(--zm-gold);
  font-size: 13px;
  background: rgba(200, 16, 46, 0.06);
}

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

.zm-section-head h2 {
  margin: 0;
}

.zm-more {
  color: var(--zm-gold);
  font-size: 13px;
  font-weight: 800;
}

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

.zm-game {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: var(--zm-card);
  min-height: 0;
}

.zm-game img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.zm-game span,
.zm-game small {
  display: none;
}

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

.zm-pays,
.zm-providers {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 8px;
  margin: 0 0 18px;
}

.zm-pay,
.zm-prov {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 8px;
  background: #2c1016;
  border-radius: 10px;
}

.zm-pay img,
.zm-prov img {
  max-height: 28px;
  width: auto;
  max-width: 100%;
}

.zm-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0 8px;
}

.zm-cta-wide {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 10px 22px;
  border-radius: var(--zm-pill);
  background: linear-gradient(180deg, var(--zm-gold), var(--zm-orange));
  color: var(--zm-ink);
  font-weight: 800;
}

a.zm-cta-wide {
  color: var(--zm-ink);
  text-decoration: none;
}

.zm-app .zm-cta-wide {
  margin-top: 14px;
}

.zm-cta-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 10px 22px;
  border-radius: var(--zm-pill);
  border: 1px solid var(--zm-gold);
  color: var(--zm-gold);
  font-weight: 800;
}

a.zm-cta-ghost {
  color: var(--zm-gold);
  text-decoration: none;
}

.zm-faq {
  margin-top: 8px;
}

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

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

.zm-faq details p {
  margin-top: 10px;
}

.zm-promos {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 8px 0 20px;
}

.zm-promo {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 16px;
  background: linear-gradient(180deg, #4a121c 0%, #220c12 100%);
  border: 1px solid var(--zm-line);
  border-radius: 16px;
}

.zm-promo img {
  width: 72px;
  height: 72px;
  margin-bottom: 10px;
  object-fit: contain;
}

.zm-promo h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.zm-promo p {
  margin: 0 0 12px;
  color: var(--zm-muted);
  font-size: 14px;
  flex: 1;
}

.zm-promo-code {
  display: inline-block;
  margin-bottom: 12px;
  padding: 4px 8px;
  border-radius: 6px;
  background: rgba(200, 16, 46, 0.12);
  color: var(--zm-gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.zm-act-title {
  margin: 6px 0 16px;
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 800;
}

.zm-act-wrap {
  position: relative;
}

.zm-act-radio {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  opacity: 0;
  pointer-events: none;
}

.zm-act-tabs {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px 20px;
  margin: 0 0 18px;
  overflow-x: auto;
  scrollbar-width: none;
}

.zm-act-tabs::-webkit-scrollbar {
  display: none;
}

.zm-act-tabs label {
  flex: 0 0 auto;
  cursor: pointer;
  color: var(--zm-muted);
  font-size: 15px;
  font-weight: 700;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

#zm-act-all:checked ~ .zm-act-tabs label[for="zm-act-all"],
#zm-act-welcome:checked ~ .zm-act-tabs label[for="zm-act-welcome"],
#zm-act-cash:checked ~ .zm-act-tabs label[for="zm-act-cash"],
#zm-act-high:checked ~ .zm-act-tabs label[for="zm-act-high"],
#zm-act-week:checked ~ .zm-act-tabs label[for="zm-act-week"] {
  color: #fff;
  border-bottom-color: var(--zm-gold);
}

#zm-act-welcome:checked ~ .zm-act-grid .zm-act:not([data-kind="welcome"]),
#zm-act-cash:checked ~ .zm-act-grid .zm-act:not([data-kind="cash"]),
#zm-act-high:checked ~ .zm-act-grid .zm-act:not([data-kind="high"]),
#zm-act-week:checked ~ .zm-act-grid .zm-act:not([data-kind="week"]) {
  display: none;
}

.zm-act-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 28px;
  width: 100%;
}

.zm-act {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 214px;
  padding: 16px 16px 12px;
  background: linear-gradient(115deg, #4a121c 0%, #5c1820 58%, #7a1c28 100%);
  border-radius: 16px;
}

.zm-act-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
}

.zm-act-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex: 1;
  min-height: 118px;
  padding-right: 4px;
}

.zm-act-body strong {
  display: block;
  font-size: 20px;
  line-height: 1.2;
}

.zm-act-body em {
  display: block;
  margin-top: 8px;
  color: var(--zm-gold);
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
}

.zm-act-body img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  mix-blend-mode: lighten;
  flex-shrink: 0;
}

.zm-act .zm-cta-wide {
  width: 100%;
  margin-top: 10px;
  border-radius: 10px;
}

.zm-act-help {
  margin: 18px 0 8px;
  color: var(--zm-gold);
  font-size: 15px;
  font-weight: 800;
  text-align: center;
}

.zm-app {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 16px;
  align-items: center;
  padding: 18px;
  margin: 8px 0 16px;
  background: var(--zm-card);
  border: 1px solid var(--zm-line);
  border-radius: 16px;
}

.zm-app ul {
  margin: 0;
  padding-left: 18px;
  color: var(--zm-muted);
}

.zm-foot {
  padding: 28px 20px 96px;
  background: #100608;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.zm-foot-inner {
  max-width: none;
  margin: 0;
  width: 100%;
}

.zm-foot-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.zm-foot-brand .zm-brand {
  font-size: 26px;
}

.zm-seals {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin: 12px 0;
}

.zm-seals img {
  height: 36px;
  width: auto;
}

.zm-reviews {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin: 12px 0 18px;
}

.zm-reviews img {
  height: 28px;
  width: auto;
  opacity: 0.9;
}

.zm-disclaimer {
  color: var(--zm-quiet);
  font-size: 13px;
}

.zm-disclaimer p {
  margin: 0 0 8px;
}

.zm-copy {
  margin: 16px 0 0;
  color: var(--zm-quiet);
  font-size: 13px;
}

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

.zm-dock {
  display: none;
}

.zm-lost {
  min-height: 52vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 16px;
}

.zm-lost h1 {
  margin-bottom: 12px;
}

.zm-lost p {
  color: var(--zm-muted);
}

.zm-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 8px;
}

.zm-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 6px 14px;
  background: #321016;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.zm-tab.is-on {
  background: #4a1820;
  color: var(--zm-gold);
}

.zm-row {
  margin: 22px 0 8px;
}

.zm-row-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.zm-row-head h2 {
  margin: 0;
  font-size: 20px;
}

.zm-row-head img {
  width: 22px;
  height: 22px;
}

.zm-row-head .zm-more {
  margin-left: auto;
}

.zm-scroll {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 10px;
  width: 100%;
}

.zm-scroll .zm-game {
  width: 100%;
  min-width: 0;
}

.zm-game small {
  display: block;
  color: var(--zm-quiet);
  font-size: 10px;
  font-weight: 600;
}

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

.zm-theme {
  padding: 12px;
  background: #2c1016;
  border-radius: 14px;
}

.zm-theme-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 800;
}

.zm-theme-head img {
  width: 20px;
  height: 20px;
}

.zm-theme-games {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 6px;
}

.zm-theme-games img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 6px;
}

.zm-theme-count {
  margin: 8px 0 0;
  color: var(--zm-quiet);
  font-size: 12px;
}

.zm-lobby-promos {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.zm-lp {
  display: flex;
  flex-direction: column;
  padding: 16px 16px 14px;
  background: linear-gradient(180deg, #5c1820, #220c12);
  border-radius: 16px;
  min-height: 220px;
}

.zm-lp-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}

.zm-lp img {
  width: 84px;
  height: 84px;
  object-fit: contain;
  flex-shrink: 0;
}

.zm-lp h3 {
  margin: 0 0 6px;
  font-size: 16px;
}

.zm-lp p {
  margin: 0 0 12px;
  color: var(--zm-muted);
  font-size: 13px;
  flex: 1;
}

.zm-tours {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: 100%;
}

.zm-tour {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-width: 0;
  min-height: 236px;
  padding: 14px 14px 12px;
  background: #321016;
  border-radius: 16px;
}

.zm-tour-kind {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin: 0 0 8px;
  color: var(--zm-quiet);
  font-size: 11px;
  font-weight: 700;
}

.zm-tour-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  height: 18px;
  width: auto;
}

.zm-tour-body {
  position: relative;
  z-index: 1;
  flex: 1;
  padding-right: 118px;
  margin-bottom: 12px;
}

.zm-tour-art {
  position: absolute;
  right: -6px;
  bottom: 52px;
  width: 132px;
  height: 140px;
  object-fit: contain;
  pointer-events: none;
}

.zm-tour strong {
  display: block;
  font-size: 16px;
  line-height: 1.3;
}

.zm-tour-pool {
  display: block;
  margin: 10px 0 2px;
  color: var(--zm-quiet);
  font-size: 12px;
  font-weight: 600;
}

.zm-tour .zm-tour-prize {
  display: block;
  margin: 0;
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.15;
}

.zm-tour .zm-cta-wide {
  position: relative;
  z-index: 2;
  width: 100%;
  margin-top: auto;
  border-radius: 10px;
}

.zm-appbox {
  max-width: 520px;
  margin: 28px auto;
  padding: 22px 20px;
  background: #2c1016;
  border-radius: 16px;
  text-align: center;
}

.zm-appbox h2 {
  margin: 0 0 16px;
}

.zm-appbox-feats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 16px;
  color: var(--zm-muted);
  font-size: 12px;
  font-weight: 700;
}

.zm-fold {
  margin: 10px 0;
  background: #2c1016;
  border-radius: 12px;
  padding: 16px 18px;
}

.zm-fold > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-weight: 800;
  letter-spacing: 0.04em;
  list-style: none;
}

.zm-fold > summary::-webkit-details-marker {
  display: none;
}

.zm-fold > summary::after {
  content: "▾";
  color: var(--zm-muted);
  font-size: 14px;
}

.zm-fold-spiele .zm-games {
  margin-top: 20px;
}

.zm-provs-strip {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 8px;
  margin: 0 0 8px;
  width: 100%;
}

.zm-provs-strip .zm-prov {
  min-height: 48px;
}

.zm-winners {
  margin: 8px 0 18px;
  width: 100%;
}

.zm-winners-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.zm-winners-head h2 {
  margin: 0;
  font-size: 20px;
}

.zm-live-dot {
  margin-left: auto;
  color: #ff4d4d;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.zm-winners-track {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  width: 100%;
}

.zm-winners-track::-webkit-scrollbar {
  display: none;
}

.zm-win {
  flex: 0 0 168px;
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 64px;
  padding: 8px;
  background: #2c1016;
  border-radius: 12px;
}

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

.zm-win strong {
  display: block;
  font-size: 13px;
}

.zm-win span {
  display: block;
  color: var(--zm-gold);
  font-size: 12px;
  font-weight: 800;
}

.zm-ex-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin: 8px 0 16px;
  width: 100%;
}

.zm-ex {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  border-radius: 12px;
  background: #2c1016;
}

.zm-ex img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 220px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
}

.zm-ex span {
  display: none;
}

.zm-game-more {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
  border: 1px solid rgba(200, 16, 46, 0.45);
  color: var(--zm-gold);
  font-weight: 800;
  background: #14080b;
}

.zm-anb {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  width: 100%;
}

.zm-loyal {
  max-width: 460px;
  margin: 20px auto;
  padding: 18px 18px 16px;
  background: #321016;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
}

.zm-loyal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 16px;
}

.zm-loyal-head h2 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-size: 18px;
}

.zm-loyal-head h2 img {
  width: 22px;
  height: 22px;
}

.zm-loyal-lvl {
  color: var(--zm-muted);
  font-size: 14px;
  font-weight: 800;
}

.zm-loyal-next {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: 0 0 10px;
  color: var(--zm-muted);
  font-size: 13px;
  font-weight: 700;
}

.zm-loyal-next strong {
  color: var(--zm-gold);
  font-size: 14px;
}

.zm-loyal-bar {
  position: relative;
  height: 8px;
  margin: 0 0 22px;
  background: #14080b;
  border-radius: 999px;
}

.zm-loyal-bar i {
  display: block;
  width: 28%;
  height: 100%;
  background: var(--zm-gold);
  border-radius: 999px;
}

.zm-loyal-hex {
  position: absolute;
  top: 50%;
  left: 28%;
  width: 34px;
  height: 34px;
  transform: translate(-50%, -50%);
}

.zm-loyal-hex img {
  display: block;
  width: 34px;
  height: 34px;
  mix-blend-mode: lighten;
}

.zm-loyal-gift {
  margin: 0 0 6px;
  color: var(--zm-quiet);
  font-size: 13px;
}

.zm-loyal-rows {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 0 0 14px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}

.zm-loyal-rows b {
  font-weight: 800;
}

.zm-loyal .zm-cta-wide {
  width: 100%;
  border-radius: 10px;
}

.zm-anb-card {
  padding: 12px;
  background: #2c1016;
  border-radius: 14px;
}

.zm-anb-card > img {
  height: 28px;
  width: auto;
  max-width: 120px;
  margin: 0 auto 10px;
}

.zm-anb-games {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  margin-bottom: 8px;
}

.zm-anb-games img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 6px;
}

.zm-anb-count {
  margin: 0;
  color: var(--zm-quiet);
  font-size: 12px;
  text-align: center;
}

.zm-rail-foot {
  margin-top: auto;
  padding-top: 16px;
}

@media (max-width: 1200px) {
  .zm-games,
  .zm-scroll,
  .zm-provs-strip {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

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

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

@media (max-width: 980px) {
  .zm-rail {
    inset: 0 auto 0 0;
    transform: translateX(-110%);
    transition: transform 0.22s ease;
    z-index: 80;
    padding-top: 18px;
  }

  .zm-nav-toggle:checked ~ .zm-rail,
  .zm-nav-toggle:checked + .zm-backdrop + .zm-rail {
    transform: none;
  }

  .zm-nav-toggle:checked ~ .zm-backdrop,
  .zm-nav-toggle:checked + .zm-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 70;
  }

  .zm-rail-close,
  .zm-rail .zm-brand,
  .zm-menu-btn,
  .zm-brand-compact {
    display: block;
  }

  .zm-top-actions .zm-btn-login {
    display: none !important;
  }

  .zm-frame {
    margin-left: 0;
  }

  .zm-trust {
    display: none;
  }

  .zm-search {
    flex: 0 0 44px;
    padding: 0;
    justify-content: center;
  }

  .zm-search span {
    display: none;
  }

  .zm-games,
  .zm-scroll,
  .zm-provs-strip {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .zm-tours,
  .zm-ex-strip,
  .zm-anb {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .zm-live,
  .zm-promos,
  .zm-act-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .zm-app {
    grid-template-columns: 1fr;
  }

  .zm-dock {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 65;
    height: var(--zm-dock);
    background: #14080b;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .zm-dock a,
  .zm-dock-item,
  .zm-dock-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    min-width: 0;
    color: var(--zm-muted);
    font-size: 11px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
  }

  body:has(.zm-nav-toggle:checked) {
    overflow: hidden;
  }

  .zm-dock img {
    width: 22px;
    height: 22px;
  }

  .zm-stage,
  .zm-foot {
    padding-bottom: calc(var(--zm-dock) + 24px);
  }
}

@media (max-width: 720px) {
  .zm-win {
    flex: 0 0 125px;
  }

  .zm-top {
    padding: 0 10px;
    gap: 8px;
  }

  .zm-stage {
    padding: 12px 10px 88px;
  }

  .zm-foot {
    padding-left: 10px;
    padding-right: 10px;
  }

  .zm-hero {
    min-height: 360px;
  }

  .zm-hero > picture,
  .zm-hero > picture img {
    min-height: 360px;
    object-position: center 20%;
  }

  .zm-hero-copy {
    inset: auto 0 0;
    width: 100%;
    padding: 72px 16px 16px;
    background: linear-gradient(180deg, transparent 0%, rgba(20, 8, 11, 0.88) 42%);
    justify-content: flex-end;
  }

  .zm-hero-title {
    font-size: 42px;
  }

  .zm-hero-kicker {
    font-size: 15px;
  }

  .zm-hero-text {
    font-size: 16px;
  }

  .zm-trust,
  .zm-search span {
    display: none;
  }

  .zm-themes,
  .zm-lobby-promos,
  .zm-appbox-feats,
  .zm-anb {
    grid-template-columns: 1fr;
  }

  .zm-games,
  .zm-scroll,
  .zm-provs-strip,
  .zm-ex-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .zm-tours {
    grid-template-columns: 1fr;
  }

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

  .zm-promos,
  .zm-act-grid,
  .zm-live {
    grid-template-columns: 1fr;
  }

  .zm-btn-login,
  .zm-btn-reg {
    min-height: 36px;
    padding: 6px 12px;
    font-size: 13px;
  }

  .zm-top-actions .zm-btn-login {
    display: none !important;
  }

  .zm-brand-compact {
    font-size: 22px;
  }

  h1 {
    font-size: 26px;
  }

  h2 {
    font-size: 22px;
  }

  table {
    min-width: 480px;
  }
}

@media (max-width: 420px) {
  .zm-games {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .zm-top {
    padding: 0 8px;
    gap: 6px;
  }

  .zm-stage {
    padding-left: 8px;
    padding-right: 8px;
  }

  .zm-foot {
    padding-left: 8px;
    padding-right: 8px;
  }

  .zm-brand-compact {
    font-size: 20px;
  }

  .zm-btn-reg {
    min-height: 34px;
    padding: 6px 10px;
    font-size: 12px;
  }

  .zm-top-actions .zm-btn-login {
    display: none !important;
  }
}
