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

/* header E */
/* Header E — glassmorphism: blurred background always, accent CTA */

.c_4523f {
  position: var(--hd-position, relative);
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  width: 100%;
  height: var(--hd-height, 66px);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: height .25s ease, background .25s ease;
}

.c_4523f.hd-scrolled {
  height: calc(var(--hd-height, 66px) - 10px);
  background: rgba(0, 0, 0, 0.55);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

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

.c_56c7c {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-size: 20px;
  font-weight: 800;
  color: var(--primary);
  flex-shrink: 0;
}

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

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

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

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

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

.c_523ca {
  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);
  box-shadow: 0 0 16px color-mix(in srgb, var(--primary) 50%, transparent);
  transition: opacity .2s, box-shadow .2s;
  white-space: nowrap;
}

.c_523ca:hover { opacity: .88; box-shadow: 0 0 24px color-mix(in srgb, var(--primary) 70%, transparent); }

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

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

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

.c_9668f {
  display: flex;
  flex-direction: column;
  padding: var(--space-3) var(--space-4);
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(16px);
  gap: var(--space-2);
}

.c_9668f[hidden] { display: none !important; }
.c_9668f .c_523ca { margin-top: var(--space-2); text-align: center; box-shadow: none; }

@media (max-width: 768px) {
  .c_c6072 { display: none; }
  .c_84ce6 { display: flex; }
}


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

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

.c_87dd5 {
  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_f55ff {
  display: flex;
  align-items: center;
}

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

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

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

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


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

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

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

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

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

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

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

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

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

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

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

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

.c_bad6a {
  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;
}
.c_bad6a: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) {
  .c_c9fcf { padding: 20px 20px; max-width: 90%; }
  .c_e8a44 { 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 */

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

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

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

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

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

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

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

.c_c4b95 {
  background: var(--skin-ac);
}

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

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

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

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


/* lobby A */
/* Lobby A — simple grid: img above name, centered CTA */

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

.c_3ee72 {
  margin: 0 0 var(--space-4);
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 800;
  letter-spacing: -.015em;
  line-height: 1.2;
  color: var(--skin-title);
  text-shadow: 0 0 var(--skin-glow) var(--skin-glow-c);
}

.c_df0cb {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.c_b5bfe {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-1);
  padding: var(--space-2);
  text-decoration: none;
  transition: transform .15s, box-shadow .15s;
}

.c_b5bfe:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-2);
}

.c_8c231 {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius-1);
  background: var(--border);
}

.c_a4614 {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  color: var(--skin-title);
  text-shadow: 0 0 var(--skin-glow) var(--skin-glow-c);
  line-height: 1.3;
  text-align: center;
}

.c_105be {
  display: inline-block;
  margin: 0 auto;
  padding: 12px 32px;
  background: var(--primary);
  color: var(--bg);
  font-weight: 700;
  font-size: 15px;
  text-align: center;
  text-decoration: none;
  border-radius: var(--radius-1);
  transition: opacity .2s;
}

.c_105be:hover {
  opacity: .85;
}

@media (max-width: 600px) {
  .c_df0cb { grid-template-columns: repeat(auto-fill, minmax(110px, 1fr)); gap: var(--space-2); }
  .c_b5bfe { padding: 8px; }
  .c_a4614 { font-size: 12px; }
}

.c_66c27 {
  margin: 28px 0;
  border-radius: var(--radius-1);
  overflow: hidden;
  line-height: 0;
}
.c_66c27 img {
  width: 100%;
  max-height: 320px;
  object-fit: cover;
  object-position: top;
  display: block;
}


/* footer A */
/* Footer A — classic: brand left, nav center, bottom copyright */

.c_44e9a {
  margin-top: var(--space-5);
  width: 100%;
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: var(--space-5) 0 var(--space-3);
}

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

.c_1b01c {
  font-size: 18px;
  font-weight: 800;
  color: var(--primary);
  text-decoration: none;
  flex-shrink: 0;
}

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

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

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

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

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

.c_3d407 {
  max-width: var(--container-w, 1100px);
  margin: var(--space-2) auto 0;
  padding: 0 var(--space-4);
  font-size: 12px;
  color: var(--muted);
  text-align: center;
}

@media (max-width: 600px) {
  .c_34d97 { flex-direction: column; align-items: flex-start; gap: var(--space-3); }
  .c_b8b21 { justify-content: flex-start; }
}

