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

  .c_c6dd0 {
    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;
  }

  .c_fd14e { display: none; }
  .c_f84ad { display: none !important; }

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

  .c_467a6 .c_ccf98 {
    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;
  }

  .c_467a6 .c_7642d {
    height: 34px;
    width: auto;
    display: block;
    flex-shrink: 0;
  }

  .c_8e5e0 {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 2px;
  }

  .c_67854 {
    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;
  }

  .c_67854:hover { background: rgba(128,128,128,.12); opacity: 1; color: var(--primary); }

  .c_467a6 .c_2a5f3 {
    flex-shrink: 0;
    padding: var(--space-2) var(--space-2) var(--space-4);
    margin-top: var(--space-3);
  }

  .c_64937 {
    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;
  }

  .c_64937:hover { opacity: .85; }
}

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

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

  .c_c6dd0 {
    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 */
  .c_fd14e {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 var(--space-3);
    gap: var(--space-2);
  }

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

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

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

  /* Brand — centered */
  .c_fd14e .c_ccf98 {
    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;
  }

  .c_fd14e .c_7642d {
    height: calc(var(--hd-height, 56px) - 20px);
    width: auto;
    display: block;
  }

  /* CTA — right */
  .c_fd14e .c_2a5f3 {
    flex-shrink: 0;
    order: 2;
  }

  .c_fd14e .c_64937 {
    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 */
  .c_467a6 {
    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);
  }

  .c_467a6.hd-open { transform: translateX(0); }

  .c_467a6 .c_ccf98 {
    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;
  }

  .c_467a6 .c_7642d {
    height: 32px;
    width: auto;
    display: block;
  }

  .c_8e5e0 {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 0;
  }

  .c_67854 {
    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;
  }

  .c_67854:last-child { border-bottom: none; }
  .c_67854:active { color: var(--primary); opacity: 1; }

  .c_467a6 .c_2a5f3 {
    flex-shrink: 0;
    padding-top: var(--space-3);
    padding-bottom: var(--space-4);
  }

  .c_467a6 .c_64937 {
    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;
  }

  .c_467a6 .c_64937:hover { opacity: .85; }

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

  .c_f84ad[hidden] { display: none; }
}


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

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

.c_ca608 {
  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;
}

.c_f7da4 {
  display: flex;
  align-items: center;
}

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

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

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

.c_a74ac {
  color: var(--fg);
}


/* demo A */
/* Demo A — centered play button over game image */

.c_9fd7f { padding: var(--card-pad); }

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

.c_9b3dc {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-2);
  margin-left: 8px;
}

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

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

.c_4d4a1 {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .55;
}

.c_10809 {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px;
}

.c_a4515 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  background: var(--primary);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: 40px;
  cursor: pointer;
  transition: opacity .2s, transform .15s;
  box-shadow: 0 4px 24px rgba(0,0,0,.4);
}
.c_a4515:hover { opacity: .88; transform: translateY(-1px); }
.c_a4515:disabled { opacity: .45; cursor: default; transform: none; }

.c_a7e65 {
  margin: 0;
  font-size: 12px;
  color: rgba(255,255,255,.65);
  text-align: center;
}

.c_c201c {
  position: absolute;
  bottom: 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;
}
.c_c201c:hover { background: rgba(255,255,255,.3); }

.c_e26ec {
  display: block;
  margin-top: var(--space-3);
  text-align: center;
  color: var(--primary);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity .2s;
}
.c_e26ec:hover { opacity: .75; }

/* Iframe injected by JS */
[data-demo-live] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

@media (max-width: 600px) {
  .c_a4515 { font-size: 14px; padding: 12px 28px; }
}

[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 */

.c_b1f5c {
  padding: var(--card-pad) var(--card-pad) 0;
}

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

.c_185d8 {
  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);
}

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

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

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

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

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

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

.c_1a93b {
  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 */

.c_d9e92 {
  padding: var(--card-pad);
  overflow: hidden;
}

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

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

.c_38c4d {
  height: 28px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

.c_c7d9b {
  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;
}

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

.c_efe4b {
  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;
}

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

.c_2ccb0,
.c_52030 {
  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;
}

.c_2ccb0:hover, .c_52030:hover { background: var(--primary); border-color: var(--primary); color: #fff; }
.c_2ccb0:disabled, .c_52030:disabled { opacity: .3; cursor: default; pointer-events: none; }

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

.c_9b3f1::-webkit-scrollbar { display: none; }

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

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

.c_38030 {
  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;
}

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

.c_1168a:hover .c_fea23 { transform: scale(1.06); }

/* ── Badge pills ── */
.c_588d8 {
  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 ── */
.c_99ae4 {
  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;
}

.c_1168a:hover .c_99ae4 { opacity: 1; }

.c_41934 {
  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;
}

.c_17bc2 {
  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;
}

.c_1168a:hover .c_17bc2 { transform: scale(1.1); }

.c_6accd {
  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 ── */
.c_c4998 {
  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) {
  .c_1168a      { flex: 0 0 145px; }
  .c_38030 { width: 145px; }
  .c_c4998  { max-width: 145px; }
  .c_17bc2   { width: 30px; height: 30px; font-size: 11px; }
}


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

.c_520fc {
  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;
}

.c_81fbb {
  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);
}

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

.c_27ef9 {
  height: 40px;
  width: auto;
  display: block;
}

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

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

.c_56015:hover { color: var(--fg); }

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

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

