
/* shell */
.section-kx{ padding:var(--shell-pad,var(--section-gap,40px)) 0 0; }
.section-dense-no{ padding:var(--section-gap-dense,16px) 0 0; }
.container-el{ width:min(var(--shell-cw,var(--container-w,1100px)),calc(100% - var(--space-5))); margin:0 auto; }
.section-kx:not(.section-dense-no) > .container-el{ 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-kx{ padding:var(--shell-pad-mobile,var(--shell-pad)) 0 0; } .section-dense-no{ 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-q9 {
  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-q9.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-cz {
  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-a {
  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;
}

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

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

.hd-nav-link-l2 {
  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-l2:hover { color: var(--fg); background: rgba(128, 128, 128, 0.12); }
.hd-nav-link-l2.hd-active { color: var(--bg); background: var(--primary); }

.hd-cta-ct {
  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-ct:hover { transform: scale(1.04); box-shadow: 0 4px 16px color-mix(in srgb, var(--primary) 50%, transparent); }

.hd-actions-5k {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  flex-shrink: 0;
}

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

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

.hd-mobile-nav-d8 {
  display: flex;
  flex-direction: column;
  padding: var(--space-3) var(--space-4);
  background: var(--surface);
  gap: var(--space-2);
}

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

@media (max-width: 768px) {
  .hd-nav-cm { display: none; }
  .hd-burger-5g { display: flex; }
}


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

.bc-root-6q {
  padding: var(--space-2) var(--space-5);
}

.bc-list-nu {
  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-1p {
  display: flex;
  align-items: center;
}

.bc-link-6m {
  color: var(--fg);
  text-decoration: none;
}

.bc-link-6m:hover {
  color: var(--skin-ac);
}

.bc-sep-fu {
  color: var(--muted);
  margin: 0 6px;
  font-size: 11px;
}

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


/* demo C */
/* Demo C — side panel left, game stage right */

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

.dm-layout-rh {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: var(--space-4);
  align-items: stretch;
}

.dm-info-8j {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  justify-content: center;
}

.dm-title-ev {
  margin: 0;
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 800;
  line-height: 1.2;
  color: var(--skin-title);
  text-shadow: 0 0 var(--skin-glow) var(--skin-glow-c);
}

.dm-provider-fq {
  margin: 0;
  font-size: 13px;
  color: var(--text-2);
}

.dm-play-demo-gm {
  display: block;
  width: 100%;
  padding: 14px 20px;
  background: var(--primary);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  border: none;
  border-radius: var(--radius-1);
  cursor: pointer;
  text-align: center;
  transition: opacity .2s;
}
.dm-play-demo-gm:hover { opacity: .85; }
.dm-play-demo-gm:disabled { opacity: .45; cursor: default; }

.dm-play-real-al {
  display: block;
  width: 100%;
  padding: 12px 20px;
  border: 2px solid var(--primary);
  color: var(--primary);
  font-size: 15px;
  font-weight: 700;
  border-radius: var(--radius-1);
  text-align: center;
  text-decoration: none;
  transition: background .15s, color .15s;
}
.dm-play-real-al:hover { background: var(--primary); color: #fff; }

.dm-age-note-qa {
  margin: 0;
  font-size: 12px;
  color: var(--text-2);
  line-height: 1.4;
}

[data-demo-stage] {
  position: relative;
  background: #0a0a14;
  border-radius: var(--radius-1);
  overflow: hidden;
  min-height: 260px;
}

.dm-preview-9 {
  position: absolute;
  inset: 0;
}

.dm-preview-img-3s {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .7;
}

.dm-overlay-gd {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

@media (max-width: 720px) {
  .dm-layout-rh { grid-template-columns: 1fr; }
  [data-demo-stage] { min-height: 0; aspect-ratio: 16/9; }
}

[data-demo-stage]:fullscreen,
[data-demo-stage]:-webkit-full-screen {
  aspect-ratio: unset !important;
  width: 100vw !important;
  height: 100vh !important;
  max-height: 100vh !important;
  min-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 C */
/* Prose C — narrow blog-style column */

.pr-root-1w {
  padding: var(--card-pad) var(--card-pad) 0;
}

.pr-h2-qa {
  margin: 0 0 var(--space-3);
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 700;
  line-height: 1.25;
  color: var(--skin-title);
}

.pr-h3-fp {
  margin: var(--space-4) 0 var(--space-2);
  font-size: clamp(15px, 1.6vw, 20px);
  font-weight: 700;
  line-height: 1.3;
  color: var(--text);
}

.pr-p-9g {
  margin: 0 0 var(--space-3);
  font-size: 15px;
  line-height: 1.9;
  color: var(--muted);
}

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

.pr-li-hf {
  margin-bottom: var(--space-2);
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
}

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

.pr-th-pc {
  padding: var(--space-2);
  text-align: left;
  font-weight: 700;
  border-bottom: 2px solid var(--border);
  color: var(--text);
}

.pr-td-9g {
  padding: var(--space-2);
  border-top: 1px solid var(--border);
  color: var(--muted);
  line-height: 1.5;
}

.pr-image-nd {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-1);
  margin: var(--space-3) auto;
}


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

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

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

.lb-header-left-hj {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

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

.lb-title-pn {
  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;
}

.lb-header-right-6g {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.lb-cta-link-mz {
  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;
}

.lb-cta-link-mz:hover { border-color: var(--primary); color: var(--primary); }

.lb-prev-m6,
.lb-next-fe {
  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;
}

.lb-prev-m6:hover, .lb-next-fe:hover { background: var(--primary); border-color: var(--primary); color: #fff; }
.lb-prev-m6:disabled, .lb-next-fe:disabled { opacity: .3; cursor: default; pointer-events: none; }

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

.lb-viewport-5l::-webkit-scrollbar { display: none; }

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

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

.lb-card-media-b {
  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-bo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .22s;
}

.lb-card-3h:hover .lb-card-img-bo { transform: scale(1.06); }

/* ── Badge pills ── */
.lb-badge-1m {
  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-card-overlay-4z {
  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-3h:hover .lb-card-overlay-4z { opacity: 1; }

.lb-card-name-ou {
  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-play-btn-5v {
  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-3h:hover .lb-play-btn-5v { transform: scale(1.1); }

.lb-demo-btn-g8 {
  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 ── */
.lb-provider-y {
  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-3h      { flex: 0 0 145px; }
  .lb-card-media-b { width: 145px; }
  .lb-provider-y  { max-width: 145px; }
  .lb-play-btn-5v   { width: 30px; height: 30px; font-size: 11px; }
}


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

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

.ft-nav-gj {
  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-b3 {
  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-b3:hover { color: var(--fg); }

.ft-inner-ga {
  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-47 {
  font-size: 15px;
  font-weight: 700;
  color: var(--muted);
}

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

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

.ft-disclaimer-b9 {
  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;
}

