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

/* header A */
/* Header A — classic: logo left, nav center, CTA right */

.hd-root-2g0 {
  position: var(--hd-position, relative);
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  width: 100%;
  height: var(--hd-height, 64px);
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  transition: height .25s ease, box-shadow .25s ease, background .25s ease;
}

.hd-root-2g0.hd-scrolled {
  height: calc(var(--hd-height, 64px) - 10px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
  background: color-mix(in srgb, var(--surface) 95%, transparent);
  backdrop-filter: blur(10px);
}

.hdInner-14 {
  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-th {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-size: 20px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.3px;
  flex-shrink: 0;
}

.hd-logo-2z3 {
  height: calc(var(--hd-height, 64px) - 24px);
  width: auto;
  display: block;
}

.hd-nav-1gt {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex: 1;
  justify-content: center;
}

.hd-navlink-hd {
  color: var(--fg);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  opacity: 0.8;
  transition: opacity .2s, color .2s;
  white-space: nowrap;
}

.hd-navlink-hd:hover { opacity: 1; color: var(--primary); }

.hd_cta-t6 {
  display: inline-block;
  padding: 9px 22px;
  background: var(--primary);
  color: var(--bg);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  border-radius: var(--radius-1);
  transition: opacity .2s;
  white-space: nowrap;
  flex-shrink: 0;
}

.hd_cta-t6:hover { opacity: .88; }

.hd_actions-25v {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  flex-shrink: 0;
}

.hdBurger-2nh {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-shrink: 0;
}

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

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

.hd-mobilenav-wb {
  display: flex;
  flex-direction: column;
  padding: var(--space-3) var(--space-4);
  background: var(--surface);
  border-top: 1px solid var(--border);
  gap: var(--space-2);
}

.hd-mobilenav-wb[hidden] { display: none !important; }

.hd-mobilenav-wb .hd-navlink-hd {
  font-size: 15px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  opacity: 1;
}

.hd-mobilenav-wb .hd_cta-t6 {
  margin-top: var(--space-2);
  text-align: center;
}

@media (max-width: 768px) {
  .hd-nav-1gt { display: none; }
  .hdBurger-2nh { display: flex; }
}


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

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

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

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

.bc-link-15i:hover {
  color: var(--skin-ac);
}

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

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


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

.dm-root-cq { 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-2oi {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

.d-glass-19m {
  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;
}

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

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

.dm-playdemo-2nr {
  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-2nr:hover { opacity: .85; }
.dm-playdemo-2nr:disabled { opacity: .45; cursor: default; }

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

.dm_agenote-zd {
  margin: 0;
  font-size: 11px;
  color: rgba(255,255,255,.45);
}

.dmExpand-30a {
  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;
}
.dmExpand-30a: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) {
  .d-glass-19m { padding: 20px 20px; max-width: 90%; }
  .dm-playdemo-2nr { 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 */

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

.pr_h2-2i6 {
  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-2td {
  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-334 {
  margin: 0 0 var(--space-3);
  font-size: 15px;
  line-height: 1.9;
  color: var(--muted);
}

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

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

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

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

.prTd-108 {
  padding: var(--space-2);
  border-top: 1px solid var(--border);
  color: var(--muted);
  line-height: 1.5;
}

.pr_image-2od {
  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 */

.lbRoot-1l4 {
  padding: var(--card-pad);
}

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

.lb_title-1ye {
  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);
}

.l-ctalink-fe {
  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;
}

.l-ctalink-fe:hover { color: var(--primary); }

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

.l-card-1ta {
  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);
}

.lbCardImg-27h {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .22s;
}

.l-card-1ta:hover .lbCardImg-27h { transform: scale(1.06); }

/* ── Badge pills ── */
.lb-cardbadges-21e {
  position: absolute;
  top: 5px;
  left: 5px;
  display: flex;
  gap: 3px;
  flex-wrap: nowrap;
  pointer-events: none;
}

.lb_badge-19n {
  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 ── */
.l-cardoverlay-20m {
  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;
}

.l-card-1ta:hover .l-cardoverlay-20m { opacity: 1; }

.l-cardname-31 {
  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;
}

.lb-play-btn-30m {
  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;
}

.l-card-1ta:hover .lb-play-btn-30m { transform: scale(1.08); }

/* ── Responsive ── */
@media (max-width: 480px) {
  .lbGrid-30g { grid-template-columns: repeat(2, 1fr); }
  .lb_badge-19n { font-size: 8px; padding: 2px 4px; }
  .lb-play-btn-30m { width: 32px; height: 32px; font-size: 11px; }
  .l-cardname-31 { font-size: 11px; }
}


/* footer C */
/* Footer C — two-column: brand+disclaimer left, nav right */

.ft-root-2t3 {
  margin-top: var(--space-5);
  width: 100%;
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: var(--space-5) 0 var(--space-4);
}

.ft-inner-2cl {
  max-width: var(--container-w, 1100px);
  margin: 0 auto;
  padding: 0 var(--space-4);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-5);
}

.ft-inner-2cl > div:first-child {
  flex: 1;
  min-width: 0;
}

.ftBrand-1h8 {
  font-size: 20px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: var(--space-2);
}

.f-logo-to {
  height: 40px;
  width: auto;
  display: block;
  margin-bottom: var(--space-2);
}

.ft-nav-1f8 {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  flex-shrink: 0;
}

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

.ftNavLink-1qc:hover { color: var(--primary); }

.ftDisclaimer-19o {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.65;
  margin-top: var(--space-1);
}

.ftCopy-te {
  max-width: var(--container-w, 1100px);
  margin: var(--space-3) auto 0;
  padding: var(--space-3) var(--space-4) 0;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--muted);
}

@media (max-width: 640px) {
  .ft-inner-2cl { flex-direction: column; }
  .ft-nav-1f8 { flex-direction: row; flex-wrap: wrap; }
}

