
/* shell */
.section-1o8{ padding:var(--shell-pad,var(--section-gap,40px)) 0 0; }
.s-dense-1nv{ padding:var(--section-gap-dense,16px) 0 0; }
.container-24{ width:min(var(--shell-cw,var(--container-w,1100px)),calc(100% - var(--space-5))); margin:0 auto; }
.section-1o8:not(.s-dense-1nv) > .container-24{ background:var(--shell-bg,var(--skin-bg)); border-radius:var(--skin-r); box-shadow:var(--shell-shadow,var(--skin-shadow)); backdrop-filter:var(--shell-blur,blur(var(--skin-blur))); overflow:hidden; }
figure.shot-mobile{ max-width:360px; margin-left:auto; margin-right:auto; border-radius:12px; overflow:hidden; }
figure.shot-mobile img{ max-height:560px; width:100%; object-fit:cover; object-position:top; display:block; }
@media(max-width:600px){ .section-1o8{ padding:var(--shell-pad-mobile,var(--shell-pad)) 0 0; } .s-dense-1nv{ padding:var(--section-gap-dense-mobile,var(--section-gap-dense)) 0 0; } }

/* header F */
/* Header F — pill nav active, gradient brand, large CTA */

.hd-root-tm {
  position: var(--hd-position, relative);
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  width: 100%;
  height: var(--hd-height, 68px);
  background: linear-gradient(90deg, var(--surface) 0%, color-mix(in srgb, var(--surface) 85%, var(--bg)) 100%);
  border-bottom: 1px solid var(--border);
  transition: height .25s ease, box-shadow .25s ease;
}

.hd-root-tm.hd-scrolled {
  height: calc(var(--hd-height, 68px) - 12px);
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(12px);
}

.hd-inner-um {
  max-width: var(--container-w, 1100px);
  margin: 0 auto;
  height: 100%;
  padding: 0 var(--space-4);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}

.hd_brand-2j7 {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-size: 21px;
  font-weight: 900;
  background: linear-gradient(90deg, var(--primary), var(--secondary, #fff));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  flex-shrink: 0;
}

.hdLogo-15t { height: calc(var(--hd-height, 64px) - 24px); width: auto; display: block; -webkit-text-fill-color: initial; }

.hd-nav-bz {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

.hd-nav-link-2w3 {
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 999px;
  transition: background .2s, color .2s;
  white-space: nowrap;
}

.hd-nav-link-2w3:hover { color: var(--fg); background: rgba(128, 128, 128, 0.12); }
.hd-nav-link-2w3.hd-active { color: var(--bg); background: var(--primary); }

.hd-cta-2fs {
  display: inline-block;
  padding: 10px 24px;
  background: var(--primary);
  color: var(--bg);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  border-radius: 999px;
  transition: transform .2s, box-shadow .2s;
  white-space: nowrap;
  flex-shrink: 0;
}

.hd-cta-2fs:hover { transform: scale(1.04); box-shadow: 0 4px 16px color-mix(in srgb, var(--primary) 50%, transparent); }

.h-actions-15x {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  flex-shrink: 0;
}

.h-burger-a3 {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.h-burger-a3 span { display: block; width: 22px; height: 2px; background: var(--fg); border-radius: 2px; transition: transform .25s, opacity .25s; }
.h-burger-a3.hd-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.h-burger-a3.hd-open span:nth-child(2) { opacity: 0; }
.h-burger-a3.hd-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hdMobileNav-np {
  display: flex;
  flex-direction: column;
  padding: var(--space-3) var(--space-4);
  background: var(--surface);
  gap: var(--space-2);
}

.hdMobileNav-np[hidden] { display: none !important; }
.hdMobileNav-np .hd-nav-link-2w3.hd-active { color: var(--primary); background: none; }
.hdMobileNav-np .hd-cta-2fs { margin-top: var(--space-2); text-align: center; border-radius: 999px; }

@media (max-width: 768px) {
  .hd-nav-bz { display: none; }
  .h-burger-a3 { display: flex; }
}


/* breadcrumbs A */
/* Breadcrumbs A */

.bc-root-32x {
  padding: var(--space-2) var(--space-5);
}

.bc-list-fx {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 12px;
  line-height: 1.4;
  opacity: 0.7;
}

.bc-item-1qi {
  display: flex;
  align-items: center;
}

.bc_link-it {
  color: var(--fg);
  text-decoration: none;
}

.bc_link-it:hover {
  color: var(--skin-ac);
}

.bcSep-1l7 {
  color: var(--muted);
  margin: 0 6px;
  font-size: 11px;
}

.bc-current-1a {
  color: var(--fg);
}


/* demo B */
/* Demo B — frosted glass card centred over blurred game image */

.dm-root-109 { padding: var(--card-pad); }

[data-demo-stage] {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #0a0a14;
  border-radius: var(--radius-1);
  overflow: hidden;
}

.dm_preview-h7 {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dm-previewimg-f6 {
  position: absolute;
  inset: -6px;
  width: calc(100% + 12px);
  height: calc(100% + 12px);
  object-fit: cover;
  filter: blur(4px);
  opacity: .6;
}

.dmOverlay-dj {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  width: 100%;
}

.dm-glass-29b {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 28px 36px;
  background: rgba(10, 10, 20, .72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  max-width: 340px;
  width: 100%;
  text-align: center;
}

.dm-title-2yl {
  margin: 0;
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}

.d-provider-28o {
  margin: 0;
  font-size: 12px;
  color: rgba(255,255,255,.55);
}

.dm-playdemo-ho {
  width: 100%;
  padding: 13px 24px;
  background: var(--primary);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: opacity .2s;
}
.dm-playdemo-ho:hover { opacity: .85; }
.dm-playdemo-ho:disabled { opacity: .45; cursor: default; }

.dmPlayReal-1oz {
  font-size: 13px;
  color: rgba(255,255,255,.75);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.dmPlayReal-1oz:hover { color: #fff; }

.dm-agenote-26k {
  margin: 0;
  font-size: 11px;
  color: rgba(255,255,255,.45);
}

.dm-expand-2mt {
  position: absolute;
  top: 10px;
  right: 12px;
  z-index: 3;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  color: #fff;
  border-radius: 4px;
  padding: 5px 6px;
  cursor: pointer;
  line-height: 1;
  transition: background .15s;
}
.dm-expand-2mt:hover { background: rgba(255,255,255,.3); }

[data-demo-live] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

@media (max-width: 480px) {
  .dm-glass-29b { padding: 20px 20px; max-width: 90%; }
  .dm-playdemo-ho { font-size: 14px; }
}

[data-demo-stage]:fullscreen,
[data-demo-stage]:-webkit-full-screen {
  aspect-ratio: unset !important;
  width: 100vw !important;
  height: 100vh !important;
  max-height: 100vh !important;
  border-radius: 0 !important;
}


[data-demo-overlay] {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #000;
  display: flex;
}
[data-demo-overlay] iframe {
  flex: 1;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
[data-demo-close] {
  position: fixed;
  top: 14px;
  right: 14px;
  z-index: 10000;
  width: 40px;
  height: 40px;
  padding: 0;
  background: rgba(210, 30, 30, .92);
  border: 2px solid rgba(255,255,255,.25);
  border-radius: 50%;
  color: #fff;
  font-size: 19px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s, transform .1s;
}
[data-demo-close]:hover { background: rgb(230,30,30); transform: scale(1.08); }

/* prose A */
/* Prose A — standard */

.prRoot-2x9 {
  padding: var(--card-pad) var(--card-pad) 0;
}

.pr-h2-14n {
  margin: 0 0 var(--space-3);
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 800;
  line-height: 1.2;
  color: var(--skin-title);
}

.pr-h3-tg {
  margin: var(--space-4) 0 var(--space-2);
  font-size: clamp(16px, 1.8vw, 22px);
  font-weight: 700;
  line-height: 1.3;
  color: var(--text);
}

.pr-p-1jb {
  margin: 0 0 var(--space-3);
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
}

.pr-list-2cp {
  margin: 0 0 var(--space-3);
  padding-left: var(--space-4);
}

.pr-li-1m6 {
  margin-bottom: var(--space-1);
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
}

.pr-table-1fr {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 var(--space-3);
  font-size: 14px;
}

.pr-thead-1gh {
  background: var(--skin-ac);
}

.p-th-6h {
  padding: var(--space-2) var(--space-3);
  text-align: left;
  font-weight: 700;
  color: var(--skin-bg);
}

.pr_tbody-lf tr:nth-child(even) {
  background: color-mix(in srgb, var(--skin-bc) 30%, transparent);
}

.pr-td-r1 {
  padding: var(--space-2) var(--space-3);
  border-top: 1px solid var(--border);
  color: var(--text);
  line-height: 1.5;
}

.pr_image-2xe {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-1, 4px);
  margin: var(--space-3) 0;
}


/* lobby H */
/* Lobby H — carousel with prev/next arrows, badge pills, hover play+demo overlay */

.lb-root-2hi {
  padding: var(--card-pad);
  overflow: hidden;
}

/* ── Header ── */
.lb-header-1qz {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.lb_headerleft-2jm {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.lb-icon-26n {
  height: 28px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

.lb-title-30k {
  margin: 0;
  font-size: clamp(calc(14px * var(--title-scale)), 2vw, calc(22px * var(--title-scale)));
  font-weight: 800;
  letter-spacing: -.01em;
  text-transform: uppercase;
  color: var(--skin-title);
  text-shadow: 0 0 var(--skin-glow) var(--skin-glow-c);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.lbHeaderRight-1xr {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.lbCtaLink-m4 {
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-1);
  color: var(--fg-muted, rgba(255,255,255,.5));
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: border-color .18s, color .18s;
}

.lbCtaLink-m4:hover { border-color: var(--primary); color: var(--primary); }

.lbPrev-ef,
.l-next-u7 {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--bg-2, rgba(255,255,255,.06));
  color: var(--fg-muted, rgba(255,255,255,.6));
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s, color .15s, border-color .15s;
  flex-shrink: 0;
}

.lbPrev-ef:hover, .l-next-u7:hover { background: var(--primary); border-color: var(--primary); color: #fff; }
.lbPrev-ef:disabled, .l-next-u7:disabled { opacity: .3; cursor: default; pointer-events: none; }

/* ── Carousel ── */
.lb-viewport-1mc {
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
}

.lb-viewport-1mc::-webkit-scrollbar { display: none; }

.lb-track-2i9 {
  display: flex;
  gap: var(--item-gap);
  width: max-content;
}

/* ── Cards ── */
.lb-card-15k {
  flex: 0 0 var(--card-min-w);
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-decoration: none;
}

.l-cardmedia-1u4 {
  position: relative;
  width: var(--card-min-w);
  aspect-ratio: var(--card-aspect);
  border-radius: calc(var(--radius-1) * .75);
  overflow: hidden;
  background: var(--border);
  flex-shrink: 0;
}

.lb-card-img-1h3 {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .22s;
}

.lb-card-15k:hover .lb-card-img-1h3 { transform: scale(1.06); }

/* ── Badge pills ── */
.lb-badge-10p {
  position: absolute;
  top: 5px;
  left: 5px;
  padding: 2px 5px;
  border-radius: 3px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .05em;
  line-height: 1.5;
  color: #fff;
  pointer-events: none;
  z-index: 2;
}

.lb-badge-hot { background: #F97316; }
.lb-badge-top { background: #7C3AED; }
.lb-badge-neu { background: #EF4444; }

/* ── Hover overlay ── */
.lb-cardoverlay-2tk {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: rgba(0,0,0,.68);
  opacity: 0;
  transition: opacity .2s;
  z-index: 3;
  padding: 8px;
}

.lb-card-15k:hover .lb-cardoverlay-2tk { opacity: 1; }

.lbCardName-2u3 {
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-align: center;
  line-height: 1.3;
  text-shadow: 0 1px 3px rgba(0,0,0,.7);
  order: 1;
}

.lb-playbtn-1rw {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 13px;
  padding-left: 2px;
  flex-shrink: 0;
  order: 2;
  transition: transform .15s;
  text-decoration: none;
}

.lb-card-15k:hover .lb-playbtn-1rw { transform: scale(1.1); }

.lb-demo-btn-c7 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 14px;
  border-radius: var(--radius-1);
  border: 1px solid rgba(255,255,255,.35);
  color: rgba(255,255,255,.8);
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
  order: 3;
  text-decoration: none;
}

/* ── Provider text below card ── */
.lbProvider-n3 {
  display: block;
  font-size: 10px;
  font-weight: 500;
  color: var(--fg-muted, rgba(255,255,255,.4));
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: var(--card-min-w);
}

/* ── Responsive ── */
@media (max-width: 600px) {
  .lb-card-15k      { flex: 0 0 145px; }
  .l-cardmedia-1u4 { width: 145px; }
  .lbProvider-n3  { max-width: 145px; }
  .lb-playbtn-1rw   { width: 30px; height: 30px; font-size: 11px; }
}


/* footer D */
/* Footer D — minimal: nav top row, brand + copyright bottom */

.ftRoot-fx {
  margin-top: var(--space-5);
  width: 100%;
  background: var(--bg);
  padding: var(--space-4) 0 var(--space-3);
}

.ft-nav-yy {
  max-width: var(--container-w, 1100px);
  margin: 0 auto;
  padding: 0 var(--space-4) var(--space-3);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.ft-nav-link-qq {
  color: var(--muted);
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color .2s;
  white-space: nowrap;
}

.ft-nav-link-qq:hover { color: var(--fg); }

.ftInner-2u7 {
  max-width: var(--container-w, 1100px);
  margin: 0 auto;
  padding: var(--space-3) var(--space-4) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  flex-wrap: wrap;
}

.ft_brand-14e {
  font-size: 15px;
  font-weight: 700;
  color: var(--muted);
}

.ft-logo-2ki {
  height: 36px;
  width: auto;
  display: block;
}

.ft-copy-1a4 {
  font-size: 12px;
  color: var(--muted);
}

.ftDisclaimer-2q2 {
  max-width: var(--container-w, 1100px);
  margin: var(--space-3) auto 0;
  padding: 0 var(--space-4);
  font-size: 11px;
  color: var(--muted);
  line-height: 1.6;
}

