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

/* header L */
/* Header L — vertical sidebar (desktop) · burger-left top bar (mobile) */

:root { --hd-sidebar-w: 220px; }

/* ─── Desktop: fixed left sidebar ──────────────────────────────────────── */

@media (min-width: 769px) {
  body { padding-left: var(--hd-sidebar-w); padding-top: var(--space-5, 40px); }

  .hd-root-11t {
    position: fixed;
    top: 0; left: 0;
    width: var(--hd-sidebar-w);
    height: 100vh;
    z-index: 1000;
    background: var(--surface);
    border-right: 1px solid var(--border);
    overflow-y: auto;
    overflow-x: hidden;
  }

  .hd_inner-ez { display: none; }
  .hd-overlay-3j { display: none !important; }

  .hd-sidebar-2sz {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: var(--space-4) var(--space-3) var(--space-4);
    gap: var(--space-1);
  }

  .hd-sidebar-2sz .hd_brand-hu {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-size: 20px;
    font-weight: 800;
    color: var(--primary);
    padding: var(--space-2);
    margin-bottom: var(--space-3);
    flex-shrink: 0;
    white-space: nowrap;
    overflow: hidden;
  }

  .hd-sidebar-2sz .hd-logo-fi {
    height: 34px;
    width: auto;
    display: block;
    flex-shrink: 0;
  }

  .h-nav-2mm {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 2px;
  }

  .hd-nav-link-32e {
    display: flex;
    align-items: center;
    padding: 10px var(--space-2);
    color: var(--fg);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    border-radius: var(--radius-1);
    opacity: 0.7;
    transition: background .18s, opacity .18s, color .18s;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .hd-nav-link-32e:hover { background: rgba(128,128,128,.12); opacity: 1; color: var(--primary); }

  .hd-sidebar-2sz .h-actions-2o8 {
    flex-shrink: 0;
    padding: var(--space-2) var(--space-2) var(--space-4);
    margin-top: var(--space-3);
  }

  .hd_cta-2b1 {
    display: block;
    padding: 10px 16px;
    background: var(--primary);
    color: var(--bg);
    font-weight: 700;
    font-size: 13px;
    text-decoration: none;
    border-radius: var(--radius-1);
    text-align: center;
    transition: opacity .2s;
    white-space: nowrap;
  }

  .hd_cta-2b1:hover { opacity: .85; }
}

/* ─── Mobile: fixed top bar + left drawer ───────────────────────────────── */

@media (max-width: 768px) {
  body { padding-top: var(--hd-height, 56px); padding-left: 0; }

  .hd-root-11t {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--hd-height, 56px);
    z-index: 1000;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
  }

  /* Top bar */
  .hd_inner-ez {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 var(--space-3);
    gap: var(--space-2);
  }

  /* Burger — leftmost */
  .hdBurger-2k {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    flex-shrink: 0;
    order: 0;
  }

  .hdBurger-2k span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--fg);
    border-radius: 2px;
    transition: transform .25s, opacity .25s;
  }

  .hdBurger-2k.hd-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hdBurger-2k.hd-open span:nth-child(2) { opacity: 0; }
  .hdBurger-2k.hd-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* Brand — centered */
  .hd_inner-ez .hd_brand-hu {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 800;
    color: var(--primary);
    overflow: hidden;
    order: 1;
  }

  .hd_inner-ez .hd-logo-fi {
    height: calc(var(--hd-height, 56px) - 20px);
    width: auto;
    display: block;
  }

  /* CTA — right */
  .hd_inner-ez .h-actions-2o8 {
    flex-shrink: 0;
    order: 2;
  }

  .hd_inner-ez .hd_cta-2b1 {
    display: inline-block;
    padding: 6px 14px;
    background: var(--primary);
    color: var(--bg);
    font-weight: 700;
    font-size: 12px;
    text-decoration: none;
    border-radius: var(--radius-1);
    white-space: nowrap;
  }

  /* Sidebar = left drawer on mobile */
  .hd-sidebar-2sz {
    position: fixed;
    top: 0; left: 0;
    width: 75vw;
    max-width: 300px;
    height: 100vh;
    z-index: 1002;
    background: var(--surface);
    border-right: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    padding: var(--space-4) var(--space-3);
    gap: var(--space-1);
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform .28s cubic-bezier(.4, 0, .2, 1);
  }

  .hd-sidebar-2sz.hd-open { transform: translateX(0); }

  .hd-sidebar-2sz .hd_brand-hu {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-size: 20px;
    font-weight: 800;
    color: var(--primary);
    padding: var(--space-2);
    margin-bottom: var(--space-3);
    flex-shrink: 0;
  }

  .hd-sidebar-2sz .hd-logo-fi {
    height: 32px;
    width: auto;
    display: block;
  }

  .h-nav-2mm {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 0;
  }

  .hd-nav-link-32e {
    display: flex;
    align-items: center;
    padding: 13px var(--space-2);
    color: var(--fg);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    border-bottom: 1px solid var(--border);
    opacity: 0.85;
    transition: color .18s, opacity .18s;
  }

  .hd-nav-link-32e:last-child { border-bottom: none; }
  .hd-nav-link-32e:active { color: var(--primary); opacity: 1; }

  .hd-sidebar-2sz .h-actions-2o8 {
    flex-shrink: 0;
    padding-top: var(--space-3);
    padding-bottom: var(--space-4);
  }

  .hd-sidebar-2sz .hd_cta-2b1 {
    display: block;
    padding: 13px 20px;
    background: var(--primary);
    color: var(--bg);
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    border-radius: var(--radius-1);
    text-align: center;
    transition: opacity .2s;
  }

  .hd-sidebar-2sz .hd_cta-2b1:hover { opacity: .85; }

  /* Overlay */
  .hd-overlay-3j {
    position: fixed;
    inset: 0;
    z-index: 1001;
    background: rgba(0, 0, 0, .55);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
  }

  .hd-overlay-3j[hidden] { display: none; }
}


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

.bc_root-2qy {
  padding: var(--space-2) var(--space-5);
}

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

.bcLink-m {
  color: var(--fg);
  text-decoration: none;
}

.bcLink-m:hover {
  color: var(--skin-ac);
}

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

.bcCurrent-26v {
  color: var(--fg);
}


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

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

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

.dmPreview-19m {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

.dm-glass-32a {
  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-19c {
  margin: 0;
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}

.dmProvider-2b {
  margin: 0;
  font-size: 12px;
  color: rgba(255,255,255,.55);
}

.dm-play-demo-rz {
  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-play-demo-rz:hover { opacity: .85; }
.dm-play-demo-rz:disabled { opacity: .45; cursor: default; }

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

.dmAgeNote-2pt {
  margin: 0;
  font-size: 11px;
  color: rgba(255,255,255,.45);
}

.d-expand-ya {
  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;
}
.d-expand-ya: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-32a { padding: 20px 20px; max-width: 90%; }
  .dm-play-demo-rz { 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 C */
/* Prose C — narrow blog-style column */

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

.prH2-2f0 {
  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-2q7 {
  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);
}

.prP-2su {
  margin: 0 0 var(--space-3);
  font-size: 15px;
  line-height: 1.9;
  color: var(--muted);
}

.prList-di {
  margin: 0 0 var(--space-3);
  padding-left: var(--space-4);
}

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

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

.prTh-1na {
  padding: var(--space-2);
  text-align: left;
  font-weight: 700;
  border-bottom: 2px solid var(--border);
  color: var(--text);
}

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

.prImage-33z {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-1);
  margin: var(--space-3) auto;
}


/* lobby G */
/* Lobby G — dense badge grid: HOT/TOP/NEU pills, hover overlay with play button */

.lb_root-1se {
  padding: var(--card-pad);
}

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

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

.lbCtaLink-23o {
  flex-shrink: 0;
  color: var(--fg-muted, rgba(255,255,255,.45));
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: color .18s;
}

.lbCtaLink-23o:hover { color: var(--primary); }

.l-grid-14y {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(var(--card-min-w), 1fr));
  gap: var(--item-gap);
}

.lb-card-2uo {
  position: relative;
  aspect-ratio: var(--card-aspect);
  border-radius: calc(var(--radius-1) * .75);
  overflow: hidden;
  text-decoration: none;
  display: block;
  cursor: pointer;
  background: var(--border);
}

.lb_cardimg-2fz {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .22s;
}

.lb-card-2uo:hover .lb_cardimg-2fz { transform: scale(1.06); }

/* ── Badge pills ── */
.lbCardBadges-30o {
  position: absolute;
  top: 5px;
  left: 5px;
  display: flex;
  gap: 3px;
  flex-wrap: nowrap;
  pointer-events: none;
}

.lb-badge-up {
  display: inline-block;
  padding: 2px 5px;
  border-radius: 3px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .05em;
  line-height: 1.5;
  color: #fff;
}

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

/* ── Hover overlay ── */
.lb-card-overlay-22o {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(0, 0, 0, .65);
  opacity: 0;
  transition: opacity .2s;
  padding: 8px;
}

.lb-card-2uo:hover .lb-card-overlay-22o { opacity: 1; }

.lb_cardname-5v {
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  line-height: 1.3;
  text-shadow: 0 1px 4px rgba(0,0,0,.7);
  order: 2;
}

.l-playbtn-r8 {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding-left: 3px;
  flex-shrink: 0;
  order: 1;
  transition: transform .15s, opacity .15s;
}

.lb-card-2uo:hover .l-playbtn-r8 { transform: scale(1.08); }

/* ── Responsive ── */
@media (max-width: 480px) {
  .l-grid-14y { grid-template-columns: repeat(2, 1fr); }
  .lb-badge-up { font-size: 8px; padding: 2px 4px; }
  .l-playbtn-r8 { width: 32px; height: 32px; font-size: 11px; }
  .lb_cardname-5v { font-size: 11px; }
}


/* footer B */
/* Footer B — centered stacked: brand → nav → disclaimer → copyright */

.f-root-1de {
  margin-top: var(--space-5);
  width: 100%;
  background: var(--bg);
  border-top: 2px solid var(--primary);
  padding: var(--space-5) 0 var(--space-4);
  text-align: center;
}

.ft-inner-1py {
  max-width: var(--container-w, 1100px);
  margin: 0 auto;
  padding: 0 var(--space-4);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
}

.f-brand-2pn {
  font-size: 22px;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.5px;
}

.f-logo-14p {
  height: 40px;
  width: auto;
  display: block;
}

.ft-nav-25z {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.ft-navlink-az {
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: color .2s;
  white-space: nowrap;
}

.ft-navlink-az:hover { color: var(--fg); }

.ft-disclaimer-2o1 {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 700px;
}

.ftCopy-2zf {
  font-size: 12px;
  color: var(--muted);
  margin-top: var(--space-1);
}

