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

.h-inner-11v {
  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-23e {
  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-2hi {
  height: calc(var(--hd-height, 64px) - 24px);
  width: auto;
  display: block;
}

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

.hd_navlink-ou {
  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-ou:hover { opacity: 1; color: var(--primary); }

.hd-cta-2ol {
  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-2ol:hover { opacity: .88; }

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

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

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

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

.hdMobileNav-2z0 {
  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);
}

.hdMobileNav-2z0[hidden] { display: none !important; }

.hdMobileNav-2z0 .hd_navlink-ou {
  font-size: 15px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  opacity: 1;
}

.hdMobileNav-2z0 .hd-cta-2ol {
  margin-top: var(--space-2);
  text-align: center;
}

@media (max-width: 768px) {
  .hdNav-1pi { display: none; }
  .hdBurger-304 { display: flex; }
}


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

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

.bc-list-21c {
  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-14n {
  display: flex;
  align-items: center;
}

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

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

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

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


/* demo E */
/* Demo E — decorated header, full stage, action strip below */

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

.dm-header-ii {
  display: flex;
  align-items: baseline;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
  padding-bottom: var(--space-3);
  border-bottom: 2px solid var(--primary);
}

.dm-title-bf {
  margin: 0;
  font-size: clamp(20px, 2.4vw, 30px);
  font-weight: 900;
  line-height: 1.15;
  color: var(--skin-title);
  text-shadow: 0 0 var(--skin-glow) var(--skin-glow-c);
}

.dmProvider-356 {
  padding: 4px 10px;
  background: var(--primary);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  border-radius: 4px;
  white-space: nowrap;
  letter-spacing: .04em;
  text-transform: uppercase;
}

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

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

.dm-preview-img-1ks {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .6;
}

.dm-actions-2ji {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 0 0 var(--radius-1) var(--radius-1);
  overflow: hidden;
}

.dm-play-demo-33m {
  padding: 16px 24px;
  background: var(--primary);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  text-align: center;
  transition: opacity .2s;
}
.dm-play-demo-33m:hover { opacity: .85; }
.dm-play-demo-33m:disabled { opacity: .45; cursor: default; }

.d-playreal-2l5 {
  padding: 16px 24px;
  background: color-mix(in srgb, var(--primary) 18%, var(--bg));
  color: var(--primary);
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  border-top: 2px solid var(--primary);
  transition: background .15s;
}
.d-playreal-2l5:hover { background: color-mix(in srgb, var(--primary) 28%, var(--bg)); }

.dm_agenote-25y {
  margin: var(--space-2) 0 0;
  font-size: 12px;
  color: var(--text-2);
  text-align: center;
}

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

@media (max-width: 500px) {
  .dm-actions-2ji { grid-template-columns: 1fr; }
  .d-playreal-2l5 { border-top: none; border-left: none; border-top: 1px solid var(--primary); }
}

[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 B */
/* Prose B — wide, generous spacing */

.pr-root-1d5 {
  padding: var(--card-pad) calc(var(--card-pad) * 1.5) 0;
}

.pr-h2-1sr {
  margin: 0 0 var(--space-4);
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--skin-title);
  border-bottom: 2px solid var(--skin-ac);
  padding-bottom: var(--space-2);
}

.pr_h3-1hk {
  margin: var(--space-5) 0 var(--space-3);
  font-size: clamp(17px, 2vw, 24px);
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.pr-p-2df {
  margin: 0 0 var(--space-4);
  font-size: 16px;
  line-height: 1.85;
  color: var(--muted);
}

.pr-list-2a5 {
  margin: 0 0 var(--space-4);
  padding-left: var(--space-5);
}

.pr-li-2gq {
  margin-bottom: var(--space-2);
  font-size: 15px;
  line-height: 1.75;
  color: var(--muted);
}

.pr_table-vv {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 var(--space-4);
  font-size: 15px;
}

.pr_thead-29h {
  background: color-mix(in srgb, var(--primary) 15%, transparent);
}

.p-th-o5 {
  padding: var(--space-3);
  text-align: left;
  font-weight: 700;
  color: var(--text);
}

.pr-td-1wx {
  padding: var(--space-3);
  border-top: 1px solid var(--border);
  color: var(--text);
  line-height: 1.6;
}

.pr_image-22e {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-1);
  margin: var(--space-4) 0;
}


/* lobby C */
/* Lobby C — overlay name on image, compact grid */

.lb-root-50 {
  padding: var(--card-pad);
}

.l-title-26q {
  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);
}

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

.lb-card-1oa {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-1);
  overflow: hidden;
  text-decoration: none;
  transition: transform .15s;
  cursor: pointer;
}

.lb-card-1oa:hover {
  transform: scale(1.03);
}

.l-cardimg-32p {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: var(--border);
}

.lb-card-name-69 {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0;
  padding: 8px 10px;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(to top, rgba(0, 0, 0, .75), transparent);
  line-height: 1.3;
}

.lb-cta-me {
  display: inline-block;
  padding: 11px 28px;
  background: var(--primary);
  color: var(--bg);
  font-weight: 700;
  font-size: 14px;
  text-align: center;
  text-decoration: none;
  border-radius: var(--radius-1);
  transition: opacity .2s;
}

.lb-cta-me:hover {
  opacity: .85;
}

@media (max-width: 600px) {
  .lb-grid-9w { grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); gap: var(--space-2); }
  .lb-card-name-69 { font-size: 12px; padding: 6px 8px; }
}


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

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

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

.ftInner-ti > div:first-child {
  flex: 1;
  min-width: 0;
}

.ft-brand-2jv {
  font-size: 20px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: var(--space-2);
}

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

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

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

.ft-nav-link-2m3:hover { color: var(--primary); }

.ft-disclaimer-1dd {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.65;
  margin-top: var(--space-1);
}

.ft_copy-7f {
  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) {
  .ftInner-ti { flex-direction: column; }
  .ft-nav-1if { flex-direction: row; flex-wrap: wrap; }
}

