:root {
  --bg-primary: #0a0b0f;
  --bg-elevated: #171922;
  --bg-hover: #21232f;
  --bg-deep: #040507;
  --surface: linear-gradient(180deg, rgba(27, 22, 19, 0.96), rgba(10, 11, 15, 0.98));
  --surface-strong: linear-gradient(145deg, rgba(28, 20, 16, 0.98), rgba(8, 9, 12, 0.98));
  --surface-soft: linear-gradient(180deg, rgba(34, 28, 24, 0.88), rgba(10, 11, 15, 0.92));
  --surface-card: linear-gradient(180deg, rgba(19, 22, 29, 0.96), rgba(11, 13, 18, 0.98));
  --surface-card-soft: linear-gradient(180deg, rgba(22, 26, 34, 0.9), rgba(11, 13, 18, 0.94));
  --surface-glass: linear-gradient(180deg, rgba(20, 23, 30, 0.82), rgba(11, 13, 18, 0.88));
  --surface-inline: rgba(255, 255, 255, 0.03);
  --text-primary: #f6f1e7;
  --text-secondary: #c9c0b4;
  --text-dim: #8a8073;
  --gold: #ffb647;
  --gold-bright: #ffd877;
  --cyan: #69ebff;
  --cyan-dim: rgba(105, 235, 255, 0.12);
  --red: #ff5a4f;
  --red-dim: rgba(255, 90, 79, 0.16);
  --purple: #7a6bff;
  --purple-dim: rgba(122, 107, 255, 0.16);
  --orange: #ff7a3c;
  --green: #67d879;
  --green-dim: rgba(103, 216, 121, 0.16);
  --border: rgba(255, 255, 255, 0.09);
  --border-strong: rgba(255, 182, 71, 0.42);
  --border-soft: rgba(255, 255, 255, 0.08);
  --border-cool: rgba(105, 235, 255, 0.18);
  --border-warm: rgba(255, 182, 71, 0.18);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
  --shadow-soft: 0 18px 44px rgba(0, 0, 0, 0.26);
  --shadow-panel: 0 24px 64px rgba(0, 0, 0, 0.34);
  --shadow-gold: 0 0 32px rgba(255, 182, 71, 0.18);
  --shadow-cyan: 0 0 26px rgba(105, 235, 255, 0.16);
  --radius: 14px;
  --radius-lg: 24px;
  --font-display: "Bangers", "Bebas Neue", cursive;
  --font-sub: "Bebas Neue", sans-serif;
  --font-body: "Nunito", sans-serif;
  --max-w: 1280px;
  --max-w-hero: 1460px;
  --measure: 760px;
  --neon-green: var(--gold);
  --neon-cyan: var(--cyan);
  --neon-pink: var(--purple);
  --neon-purple: var(--purple);
  --warning-yellow: var(--orange);
  --danger-red: var(--red);
  --alert-red: var(--red);
  --success-green: var(--green);
  --playful-orange: var(--orange);
  --orange-fun: var(--orange);
  --purple-accent: var(--purple);
  --purple-dark: var(--purple);
  --dark-purple: var(--purple);
  --text-muted: var(--text-dim);
  --bg-secondary: var(--bg-deep);
  --bg-panel: var(--bg-elevated);
  --bg-card: var(--bg-elevated);
  --bg-card-hover: var(--bg-hover);
  --border-subtle: rgba(212, 160, 23, 0.12);
}

html[lang="ja"] {
  --font-display: "Bebas Neue", "Noto Sans JP", sans-serif;
  --font-sub: "Bebas Neue", "Noto Sans JP", sans-serif;
  --font-body: "Noto Sans JP", "Nunito", sans-serif;
}

html[lang="ko"] {
  --font-display: "Bebas Neue", "Noto Sans KR", sans-serif;
  --font-sub: "Bebas Neue", "Noto Sans KR", sans-serif;
  --font-body: "Noto Sans KR", "Nunito", sans-serif;
}

html[lang="zh-CN"] {
  --font-display: "Bebas Neue", "Noto Sans SC", sans-serif;
  --font-sub: "Bebas Neue", "Noto Sans SC", sans-serif;
  --font-body: "Noto Sans SC", "Nunito", sans-serif;
}

html[lang="ar"] {
  --font-display: "Noto Sans Arabic", "Bebas Neue", sans-serif;
  --font-sub: "Noto Sans Arabic", "Nunito", sans-serif;
  --font-body: "Noto Sans Arabic", "Nunito", sans-serif;
}

html[lang="ja"] h1,
html[lang="ko"] h1 {
  letter-spacing: 0.02em;
  line-height: 1.12;
}

html[lang="zh-CN"] h1,
html[lang="zh-CN"] h2 {
  letter-spacing: 0.02em;
  line-height: 1.18;
}

html[lang="ar"] h1,
html[lang="ar"] h2,
html[lang="ar"] h3 {
  letter-spacing: 0;
  line-height: 1.28;
}

html[lang="ja"] h2,
html[lang="ko"] h2,
html[lang="ja"] .section-label,
html[lang="ko"] .section-label {
  letter-spacing: 0.06em;
}

html[lang="zh-CN"] .section-label,
html[lang="ar"] .section-label {
  letter-spacing: 0.02em;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  font-family: var(--font-body);
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 182, 71, 0.11), transparent 26%),
    radial-gradient(circle at 88% 4%, rgba(105, 235, 255, 0.09), transparent 24%),
    radial-gradient(circle at 50% 100%, rgba(255, 90, 79, 0.08), transparent 28%),
    linear-gradient(180deg, #0d1016 0%, #090b10 24%, var(--bg-deep) 100%);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(105, 235, 255, 0.05), transparent 22%),
    radial-gradient(circle at bottom left, rgba(255, 182, 71, 0.05), transparent 20%);
  pointer-events: none;
  opacity: 0.9;
  z-index: 9998;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), transparent 18%, transparent 82%, rgba(255, 255, 255, 0.018)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.012), transparent 20%, transparent 80%, rgba(255, 255, 255, 0.012));
  pointer-events: none;
  opacity: 0.55;
  z-index: 9997;
}

::selection {
  background: var(--gold);
  color: #000;
}

a {
  color: var(--purple);
  text-decoration: none;
  transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease,
    box-shadow 0.25s ease, transform 0.25s ease;
}

a:hover {
  color: var(--cyan);
}

img,
iframe {
  display: block;
  max-width: 100%;
}

h1,
h2,
h3,
h4,
h5 {
  line-height: 1.15;
}

h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.4rem);
  color: var(--gold);
  letter-spacing: 0.05em;
  text-shadow: 0 0 20px rgba(212, 160, 23, 0.32), 0 2px 4px rgba(0, 0, 0, 0.6);
}

h2 {
  font-family: var(--font-sub);
  font-size: clamp(1.45rem, 3vw, 2.3rem);
  color: var(--cyan);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h3,
h4,
h5 {
  color: var(--gold-bright);
}

h3 {
  font-family: var(--font-sub);
  font-size: clamp(1.15rem, 2.4vw, 1.6rem);
  letter-spacing: 0.04em;
}

h4,
h5 {
  font-weight: 800;
}

p,
li,
td,
th,
label,
input,
button {
  font-family: var(--font-body);
}

p {
  color: var(--text-secondary);
}

.hero h1,
.section-header h2,
.section-header h3,
.announcement,
.announce-bar,
.announcement-bar {
  text-wrap: balance;
}

.hero-sub,
.hero-subtitle,
.section-header p,
.accordion-content-inner,
.faq-answer,
.faq-a {
  text-wrap: pretty;
}

.accordion-btn,
.faq-question,
.faq-q,
.announcement,
.announce-bar,
.announcement-bar {
  overflow-wrap: anywhere;
}

ul,
ol {
  padding-left: 1.2rem;
}

table {
  width: 100%;
  border-collapse: collapse;
}

.container {
  width: min(100%, var(--max-w));
  margin: 0 auto;
  padding: 0 clamp(24px, 3vw, 32px);
}

.section,
body > section {
  padding: clamp(56px, 7vw, 88px) 0;
  position: relative;
  scroll-margin-top: 100px;
}

body > section:nth-of-type(even),
.section:nth-of-type(even) {
  background:
    radial-gradient(circle at 8% 12%, rgba(255, 182, 71, 0.04), transparent 22%),
    radial-gradient(circle at 92% 0%, rgba(105, 235, 255, 0.04), transparent 20%),
    linear-gradient(180deg, rgba(9, 11, 15, 0.78), rgba(6, 7, 10, 0.98));
}

.section-divider,
.separator {
  width: 86px;
  height: 3px;
  margin: 0 auto 28px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--cyan));
}

.section-label {
  width: fit-content;
  margin: 0 auto 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-sub);
  font-size: 0.95rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.section-label::before,
.section-label::after {
  content: "";
  width: 28px;
  height: 1px;
  background: rgba(212, 160, 23, 0.4);
}

.section-header {
  max-width: var(--measure);
  margin: 0 auto 36px;
  display: grid;
  gap: 14px;
  text-align: center;
}

.section-header p,
body > section > .container > p,
body > section > .container > h2 + p {
  max-width: 760px;
  margin: 0 auto;
}

.text-center {
  text-align: center;
}

.text-gold {
  color: var(--gold);
}

.text-cyan,
.cyan,
.hl-green {
  color: var(--cyan);
}

.text-red,
.hl-red {
  color: var(--red);
}

.text-purple {
  color: var(--purple);
}

.text-orange {
  color: var(--orange);
}

.text-green {
  color: var(--green);
}

.highlight {
  color: var(--gold);
}

.glow-text {
  text-shadow: 0 0 12px currentColor, 0 0 30px currentColor;
}

.card,
.game-card,
.char-card,
.animatronic-card,
.route-card,
.ending-card,
.protag-card,
.night-card,
.mod-card,
.download-box,
.highlight-box,
.info-box,
.warning-box,
.newsletter-box,
.hero-frame,
.accordion-item,
.faq-item,
.community-link,
.boss-phase {
  background: var(--surface-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.card::before,
.game-card::before,
.char-card::before,
.animatronic-card::before,
.route-card::before,
.ending-card::before,
.protag-card::before,
.night-card::before,
.mod-card::before,
.download-box::before,
.highlight-box::before,
.info-box::before,
.warning-box::before,
.newsletter-box::before,
.hero-frame::before,
.accordion-item::before,
.faq-item::before,
.community-link::before,
.boss-phase::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 18%),
    radial-gradient(circle at top right, rgba(105, 235, 255, 0.06), transparent 32%),
    radial-gradient(circle at bottom left, rgba(255, 182, 71, 0.05), transparent 28%);
  pointer-events: none;
  z-index: 0;
}

.card > *,
.game-card > *,
.char-card > *,
.animatronic-card > *,
.route-card > *,
.ending-card > *,
.protag-card > *,
.night-card > *,
.mod-card > *,
.download-box > *,
.highlight-box > *,
.info-box > *,
.warning-box > *,
.newsletter-box > *,
.hero-frame > *,
.accordion-item > *,
.faq-item > *,
.community-link > *,
.boss-phase > * {
  position: relative;
  z-index: 1;
}

.card,
.game-card,
.char-card,
.animatronic-card,
.route-card,
.ending-card,
.protag-card,
.night-card,
.mod-card,
.hero-frame,
.community-link,
.boss-phase {
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease,
    background 0.28s ease;
}

.card:hover,
.game-card:hover,
.char-card:hover,
.animatronic-card:hover,
.route-card:hover,
.ending-card:hover,
.protag-card:hover,
.night-card:hover,
.mod-card:hover,
.hero-frame:hover,
.community-link:hover,
.boss-phase:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 182, 71, 0.24);
  box-shadow: var(--shadow-soft);
}

.card,
.route-card,
.ending-card,
.protag-card,
.night-card,
.download-box,
.highlight-box,
.info-box,
.warning-box,
.newsletter-box,
.boss-phase {
  padding: 26px;
}

.community-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: var(--surface-card-soft);
}

.community-link:hover {
  transform: translateX(4px) translateY(-4px);
  box-shadow: var(--shadow), var(--shadow-cyan);
}

.community-icon,
.card-icon,
.char-icon,
.animatronic-icon {
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 160, 23, 0.12);
  color: var(--gold);
  font-size: 1.5rem;
  border: 1px solid rgba(212, 160, 23, 0.24);
}

.char-emoji {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 12px;
  border-radius: 50%;
  background: rgba(105, 235, 255, 0.1);
  border: 1px solid rgba(105, 235, 255, 0.22);
  font-size: 1.6rem;
}

.grid-2,
.card-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.grid-3,
.card-grid,
.card-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.grid-4,
.card-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.grid-5 {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 16px;
  width: 100%;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  width: 100%;
}

.stat-item,
.hero-stat {
  padding: 20px 16px;
  text-align: center;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.stat-num,
.hero-stat-num,
.feature-num,
.num,
.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  color: var(--gold);
  line-height: 1;
}

.stat-label,
.hero-stat-label,
.label {
  display: block;
  margin-top: 8px;
  color: var(--text-dim);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.badge,
.tag,
.char-tag,
.hero-badge,
.hero-meta span,
.hero-keywords span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 30px;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.035);
  color: var(--text-primary);
}

.badge-gold,
.tag-gold,
.tag-yellow {
  color: var(--gold);
  background: rgba(212, 160, 23, 0.12);
  border-color: rgba(212, 160, 23, 0.3);
}

.badge-cyan,
.tag-cyan,
.tag-info {
  color: var(--cyan);
  background: var(--cyan-dim);
  border-color: rgba(105, 235, 255, 0.28);
}

.badge-red,
.tag-red,
.tag-danger {
  color: var(--red);
  background: var(--red-dim);
  border-color: rgba(229, 57, 53, 0.3);
}

.badge-purple,
.tag-purple,
.tag-pink {
  color: var(--purple);
  background: var(--purple-dim);
  border-color: rgba(139, 92, 246, 0.28);
}

.badge-green,
.tag-green,
.tag-success {
  color: var(--green);
  background: var(--green-dim);
  border-color: rgba(76, 175, 80, 0.28);
}

.tag-warning {
  color: var(--orange);
  background: rgba(255, 112, 67, 0.12);
  border-color: rgba(255, 112, 67, 0.28);
}

.btn,
.btn-primary,
.btn-secondary,
.btn-danger,
.btn-download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 13px 26px;
  border-radius: 999px;
  font-size: 0.98rem;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  text-transform: none;
  letter-spacing: -0.01em;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.btn::before,
.btn-primary::before,
.btn-secondary::before,
.btn-danger::before,
.btn-download::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent 36%);
  pointer-events: none;
}

.btn-primary,
.btn-download {
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: #000;
  box-shadow: 0 12px 28px rgba(255, 182, 71, 0.22);
}

.btn-primary:hover,
.btn-download:hover {
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(212, 160, 23, 0.26);
}

.btn-primary:focus-visible,
.btn-download:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.btn-secondary {
  color: var(--cyan);
  background: rgba(255, 255, 255, 0.035);
  border-color: rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
  color: var(--cyan);
  background: rgba(105, 235, 255, 0.08);
  border-color: rgba(105, 235, 255, 0.22);
  transform: translateY(-2px);
}

.btn-secondary:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 2px;
}

.btn-danger {
  color: var(--red);
  background: rgba(255, 90, 79, 0.08);
  border-color: rgba(255, 90, 79, 0.3);
}

.btn-danger:hover {
  color: var(--red);
  background: rgba(229, 57, 53, 0.1);
  transform: translateY(-2px);
}

.btn-sm {
  min-height: 38px;
  padding: 8px 18px;
  font-size: 0.88rem;
}

.btn-group,
.hero-btns,
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.nav,
.main-nav,
.top-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 12, 17, 0.72);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.14);
}

.nav-inner {
  max-width: calc(var(--max-w) + 96px);
  margin: 0 auto;
  min-height: 68px;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.nav-logo,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 1.32rem;
  color: var(--gold);
  letter-spacing: 0.02em;
}

.nav-logo span,
.footer-brand span {
  color: var(--cyan);
}

.logo-icon,
.eye {
  width: 10px;
  height: 10px;
  display: inline-block;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan);
  animation: eye-glow 2.8s ease-in-out infinite;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  list-style: none;
  padding-left: 0;
}

/* 语言下拉菜单 */
.nav-lang-dropdown {
  position: relative;
  margin-left: 4px;
}

.nav-lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 40px;
  padding: 8px 14px;
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  background: var(--surface-inline);
  color: var(--cyan);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  font-family: var(--font-body);
}

.nav-lang-btn:hover {
  background: rgba(105, 235, 255, 0.08);
  border-color: rgba(105, 235, 255, 0.2);
}

.nav-lang-btn:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 2px;
}

.nav-lang-arrow {
  font-size: 0.7em;
  transition: transform 0.2s;
}

.nav-lang-dropdown.open .nav-lang-arrow {
  transform: rotate(180deg);
}

.nav-lang-menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 100%;
  flex-direction: column;
  padding: 6px;
  background: rgba(11, 13, 18, 0.98);
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  box-shadow: var(--shadow-panel);
  backdrop-filter: blur(18px);
  z-index: 100;
}

.nav-lang-dropdown.open .nav-lang-menu {
  display: flex;
}

.nav-lang-menu a {
  display: flex;
  align-items: center;
  min-height: 36px;
  padding: 6px 14px;
  border-radius: 8px;
  color: var(--text-secondary);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  white-space: nowrap;
}

.nav-lang-menu a:hover {
  color: var(--cyan);
  background: rgba(105, 235, 255, 0.08);
}

.nav-lang-menu a.current {
  color: var(--cyan);
  background: rgba(105, 235, 255, 0.08);
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 13px;
  border-radius: 999px;
  color: var(--text-secondary);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  border: 1px solid transparent;
}

.nav-links a:hover,
.nav-links a.active,
.nav-links a.current {
  color: var(--gold-bright);
  background: linear-gradient(180deg, rgba(105, 235, 255, 0.05), rgba(255, 182, 71, 0.04));
  border-color: rgba(255, 255, 255, 0.07);
}

.nav-links a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* Footer 多语言平铺链接 */
.footer-lang {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 16px;
  padding: 16px 0;
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-lang a {
  color: var(--text-dim);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}

.footer-lang a:hover {
  color: var(--cyan);
}

.footer-lang a.current {
  color: var(--gold);
}

.mobile-toggle,
.mobile-menu,
.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-primary);
  font-size: 1.3rem;
  cursor: pointer;
}

.announcement,
.announce-bar,
.announcement-bar {
  padding: 0 0 24px;
  text-align: center;
  color: var(--text-primary);
  background: transparent;
  border: 0;
  position: relative;
  z-index: 2;
  box-shadow: none;
}

.announcement-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  padding: 14px 18px;
  border-radius: 22px;
  border: 1px solid var(--border-soft);
  background: var(--surface-glass);
  box-shadow: var(--shadow-soft);
}

.announcement-pulse,
.dot,
.timeline-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 10px var(--red);
  animation: pulse 1.6s ease-in-out infinite;
}

.dot-green {
  background: var(--green);
  box-shadow: 0 0 10px var(--green);
}

.dot-red {
  background: var(--red);
}

.ver-tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 10px;
  margin-left: 8px;
  border-radius: 999px;
  background: rgba(105, 235, 255, 0.12);
  color: var(--cyan);
  border: 1px solid rgba(105, 235, 255, 0.22);
  font-size: 0.78rem;
  font-weight: 800;
}

.hero,
header.hero {
  min-height: clamp(760px, 100vh, 1040px);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 118px 0 72px;
}

.hero::before,
header.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 18% 16%, rgba(255, 182, 71, 0.16), transparent 36%),
    radial-gradient(ellipse at 82% 22%, rgba(105, 235, 255, 0.12), transparent 30%),
    radial-gradient(ellipse at 50% 100%, rgba(255, 90, 79, 0.09), transparent 34%);
  z-index: 0;
}

.hero-bg,
.hero-glitch,
.hero-bg-grid,
.hero-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-bg-grid {
  background-image:
    linear-gradient(rgba(212, 160, 23, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(105, 235, 255, 0.07) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.85), transparent);
}

.hero-glow {
  background:
    radial-gradient(circle at 50% 0%, rgba(212, 160, 23, 0.12), transparent 42%),
    radial-gradient(circle at 50% 100%, rgba(105, 235, 255, 0.08), transparent 30%);
}

.hero-glitch {
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(255, 255, 255, 0.02) 3px,
    rgba(255, 255, 255, 0.02) 6px
  );
  opacity: 0.45;
}

.hero > .container,
.hero-content,
.hero-grid {
  position: relative;
  z-index: 2;
}

.hero-content {
  width: min(100%, 1060px);
  margin: 0 auto;
  display: grid;
  gap: 30px;
  justify-items: center;
  text-align: center;
}

.hero-grid {
  width: min(100%, var(--max-w-hero));
  margin: 0 auto;
  display: grid;
  gap: clamp(26px, 3vw, 42px);
  align-items: start;
  justify-items: stretch;
  text-align: left;
}

/* ===== Playable hero: desktop split layout, mobile stacks cleanly ===== */
.hero-grid-playable {
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  grid-template-areas: "text visual";
  align-items: center;
  width: 100%;
  max-width: none;
  padding: 0 clamp(12px, 1.5vw, 40px);
}

.hero-text {
  width: 100%;
  max-width: 860px;
  display: grid;
  gap: 18px;
  text-align: center;
}

.hero-grid-playable .hero-text {
  grid-area: text;
  max-width: 700px;
  justify-self: start;
  text-align: left;
  gap: 20px;
}

.hero-eyeline,
.hero-eyes {
  display: flex;
  justify-content: center;
  gap: 42px;
}

.hero-eye {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 20px var(--cyan), 0 0 40px rgba(105, 235, 255, 0.28);
  animation: eye-glow 2.6s ease-in-out infinite;
}

.hero h1 {
  max-width: 14ch;
  margin: 0 auto;
}

.hero-grid-playable .hero-text h1 {
  max-width: none;
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.04;
}

html[lang="ja"] .hero-grid-playable .hero-text h1,
html[lang="ko"] .hero-grid-playable .hero-text h1 {
  max-width: none;
  line-height: 1.04;
}

.hero-sub,
.hero-subtitle {
  max-width: 780px;
  margin: 0 auto;
  font-size: clamp(0.98rem, 1.4vw, 1.08rem);
  color: var(--text-secondary);
}

.hero-grid-playable .hero-sub,
.hero-grid-playable .hero-subtitle {
  max-width: 64ch;
  margin: 0;
  font-size: clamp(0.98rem, 1.15vw, 1.08rem);
}

.hero-meta,
.hero-keywords {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.hero-grid-playable .hero-eyeline,
.hero-grid-playable .hero-eyes,
.hero-grid-playable .hero-meta,
.hero-grid-playable .hero-keywords,
.hero-grid-playable .hero-btns,
.hero-grid-playable .hero-ctas,
.hero-grid-playable .btn-group {
  justify-content: flex-start;
}

.hero-grid-playable .hero-stats {
  max-width: 720px;
  margin: 0;
}

.hero-grid-playable .inline-link-list {
  justify-content: flex-start;
  margin-top: 0;
}

.hero-frame,
.hero-visual {
  width: 100%;
}

.hero-frame {
  padding: 16px;
}

/* 游戏区域全宽展示 */
.hero-grid-playable .hero-visual {
  grid-area: visual;
  width: min(100%, 640px);
  max-width: 640px;
  justify-self: end;
  order: 0;
}

.hero-grid-playable .hero-frame {
  max-width: none;
  margin: 0;
  padding: clamp(14px, 1.6vw, 22px);
  border-radius: clamp(22px, 2vw, 32px);
  background: var(--surface-strong);
  border-color: rgba(255, 182, 71, 0.26);
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.48),
    0 0 0 1px rgba(105, 235, 255, 0.08) inset,
    0 0 0 2px rgba(255, 122, 60, 0.08);
}

.hero-grid-playable .hero-frame::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 18%),
    radial-gradient(circle at top right, rgba(105, 235, 255, 0.14), transparent 28%),
    radial-gradient(circle at bottom left, rgba(255, 182, 71, 0.16), transparent 34%);
}

.hero-grid-playable .hero-frame::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.05);
  pointer-events: none;
  z-index: 0;
}

.hero-frame iframe,
.hero-frame img {
  width: 100%;
  min-height: 320px;
  border: 0;
  border-radius: 14px;
  background: #000;
}

/* PC端iframe高度 - 16:9全屏体验 */
.hero-grid-playable .hero-frame iframe {
  min-height: clamp(400px, 56vh, 720px);
  aspect-ratio: 16 / 9;
  border-radius: clamp(18px, 1.6vw, 24px);
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.48);
}

.hero-frame-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 8px 16px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 182, 71, 0.22), rgba(255, 90, 79, 0.14));
  color: var(--gold-bright);
  border: 1px solid rgba(255, 182, 71, 0.34);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.24);
}

.hero-grid-playable .hero-frame-label {
  justify-content: flex-start;
  margin-bottom: 14px;
}

.hero-promo {
  position: relative;
}

.hero-stage {
  display: grid;
  gap: 16px;
}

.hero-stage-screen {
  position: relative;
  min-height: clamp(320px, 34vw, 430px);
  padding: clamp(24px, 4vw, 42px);
  display: grid;
  place-items: center;
  border-radius: clamp(20px, 1.8vw, 28px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background:
    radial-gradient(circle at top, rgba(105, 235, 255, 0.14), transparent 28%),
    radial-gradient(circle at 20% 78%, rgba(255, 90, 79, 0.14), transparent 24%),
    radial-gradient(circle at 80% 20%, rgba(255, 182, 71, 0.16), transparent 24%),
    linear-gradient(180deg, rgba(11, 13, 19, 0.98), rgba(17, 11, 9, 0.98));
}

.hero-stage-grid,
.hero-stage-beam {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-stage-grid {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(105, 235, 255, 0.05) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.95), transparent);
  opacity: 0.82;
}

.hero-stage-beam {
  inset: auto 14% -12% 14%;
  height: 46%;
  background: radial-gradient(circle at center, rgba(255, 182, 71, 0.2), transparent 64%);
  filter: blur(16px);
}

.hero-stage-lights {
  position: absolute;
  top: 18px;
  left: 18px;
  display: flex;
  gap: 10px;
  z-index: 2;
}

.hero-stage-lights span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  box-shadow: 0 0 12px currentColor;
}

.hero-stage-lights span:nth-child(1) {
  color: var(--gold);
  background: var(--gold);
}

.hero-stage-lights span:nth-child(2) {
  color: var(--cyan);
  background: var(--cyan);
}

.hero-stage-lights span:nth-child(3) {
  color: var(--red);
  background: var(--red);
}

.hero-stage-logo {
  position: relative;
  z-index: 2;
  width: min(100%, clamp(210px, 62%, 320px));
  min-height: 0;
  background: transparent;
  border-radius: 0;
  object-fit: contain;
  filter:
    drop-shadow(0 0 24px rgba(255, 182, 71, 0.24))
    drop-shadow(0 0 42px rgba(105, 235, 255, 0.12));
}

.hero-stage-marquee {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-grid-playable .hero-stage-marquee {
  justify-content: flex-start;
}

.hero-stage-marquee span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  color: var(--text-secondary);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-stage-marquee span:nth-child(1) {
  color: var(--cyan);
}

.hero-stage-marquee span:nth-child(2) {
  color: var(--gold-bright);
}

.hero-stage-marquee span:nth-child(3) {
  color: #ffd0b8;
}

.game-card {
  overflow: hidden;
  background: var(--surface-soft);
}

.game-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 24px 24px 16px;
  background: linear-gradient(180deg, rgba(255, 182, 71, 0.08), rgba(255, 255, 255, 0));
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.game-card-number,
.night-num {
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.28;
}

.game-card-body,
.mod-card-body {
  padding: 0 24px 24px;
  display: grid;
  gap: 16px;
}

/* PC端游戏区域全宽展示 */
#play-online .container {
  width: 100%;
  max-width: none;
  padding: 0 clamp(12px, 1.5vw, 40px);
}

/* 游戏区域上下文字保持可读宽度居中 */
#play-online .container > h2,
#play-online .container > .section-divider,
#play-online .container > p,
#play-online .container > .hero-ctas {
  max-width: var(--max-w);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.game-embed-wrapper {
  position: relative;
  max-width: none;
  width: 100%;
  margin: 0 auto;
  padding: clamp(14px, 1.5vw, 20px);
  overflow: hidden;
  border-radius: clamp(24px, 2vw, 32px);
  border: 1px solid rgba(255, 182, 71, 0.26);
  background: var(--surface-strong);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.48),
    0 0 0 1px rgba(105, 235, 255, 0.08) inset;
}

.game-embed-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 18%),
    radial-gradient(circle at top right, rgba(105, 235, 255, 0.14), transparent 30%),
    radial-gradient(circle at bottom left, rgba(255, 182, 71, 0.14), transparent 32%);
  pointer-events: none;
  z-index: 0;
}

.game-embed-wrapper::after {
  content: "";
  position: absolute;
  top: 18px;
  right: 18px;
  width: 112px;
  height: 22px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(90deg, rgba(255, 182, 71, 0.18), rgba(105, 235, 255, 0.16));
  opacity: 0.72;
  pointer-events: none;
  z-index: 1;
}

.game-embed-wrapper iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: clamp(400px, 68vh, 760px);
  border: 0;
  background: #000;
  border-radius: clamp(18px, 1.5vw, 24px);
  box-shadow: 0 26px 52px rgba(0, 0, 0, 0.48);
  position: relative;
  z-index: 1;
}

.game-embed-label {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 182, 71, 0.22), rgba(255, 90, 79, 0.14));
  color: var(--gold-bright);
  border: 1px solid rgba(255, 182, 71, 0.34);
  font-family: var(--font-sub);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.24);
}

/* ===== 视频预告区域 ===== */
.trailer-section .container {
  width: 100%;
  max-width: calc(var(--max-w) + 120px);
}

.trailer-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: clamp(18px, 1.8vw, 28px);
  border: 1px solid rgba(255, 182, 71, 0.2);
  background: var(--bg-deep);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.44),
    0 0 0 1px rgba(105, 235, 255, 0.06) inset;
}

.trailer-wrapper video {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: inherit;
}

.char-card,
.animatronic-card {
  padding: 18px;
  text-align: center;
}

.char-card h4,
.animatronic-card h4,
.char-name {
  margin-bottom: 6px;
  color: var(--text-primary);
}

.char-card p,
.animatronic-card p,
.char-role {
  font-size: 0.9rem;
  color: var(--text-dim);
}

.protag-card.easy,
.card-accent-green,
.route-normal,
.ending-card.card-accent-green {
  border-color: rgba(76, 175, 80, 0.3);
  box-shadow: inset 0 3px 0 rgba(76, 175, 80, 0.8), var(--shadow);
}

.protag-card.experienced,
.card-accent-cyan,
.route-michael,
.ending-card.card-accent-cyan {
  border-color: rgba(105, 235, 255, 0.3);
  box-shadow: inset 0 3px 0 rgba(105, 235, 255, 0.8), var(--shadow);
}

.protag-card.hard,
.card-accent-pink,
.card-accent-purple,
.route-susie {
  border-color: rgba(139, 92, 246, 0.3);
  box-shadow: inset 0 3px 0 rgba(139, 92, 246, 0.8), var(--shadow);
}

.protag-card.lunatic,
.card-accent-red,
.route-vanny,
.route-secret {
  border-color: rgba(229, 57, 53, 0.32);
  box-shadow: inset 0 3px 0 rgba(229, 57, 53, 0.84), var(--shadow);
}

.card-accent-gold,
.warning-box,
.download-box {
  border-color: rgba(212, 160, 23, 0.3);
  box-shadow: inset 0 3px 0 rgba(212, 160, 23, 0.82), var(--shadow);
}

.route-card,
.ending-card {
  border-left: 4px solid var(--gold);
}

.route-michael {
  border-left-color: var(--cyan);
}

.route-vanny {
  border-left-color: var(--red);
}

.route-susie {
  border-left-color: var(--purple);
}

.route-secret {
  border-left-color: var(--gold);
}

.protag-diff,
.timeline-date,
.year {
  font-family: var(--font-sub);
  font-size: 0.92rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.step-num {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 160, 23, 0.16);
  color: var(--gold);
  border: 1px solid rgba(212, 160, 23, 0.28);
  font-weight: 800;
}

.timeline {
  position: relative;
  margin-top: 24px;
  padding-left: 28px;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 4px;
  width: 2px;
  background: linear-gradient(180deg, var(--gold), var(--cyan), var(--purple));
}

.timeline-item {
  position: relative;
  margin-bottom: 16px;
  padding: 18px 18px 18px 22px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
}

.timeline-item::before,
.timeline-dot {
  content: "";
  position: absolute;
  left: -29px;
  top: 24px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 10px rgba(212, 160, 23, 0.4);
}

.timeline-content {
  position: relative;
}

.timeline-title {
  margin-top: 8px;
  color: var(--text-primary);
  font-weight: 800;
}

.info-table,
.data-table,
.diff-table {
  margin-top: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.info-table th,
.info-table td,
.data-table th,
.data-table td,
.diff-table th,
.diff-table td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  text-align: left;
  color: var(--text-secondary);
}

.info-table th,
.data-table th,
.diff-table th {
  color: var(--gold);
  background: rgba(212, 160, 23, 0.06);
  font-family: var(--font-sub);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.diff-easy {
  color: var(--green);
}

.diff-exp {
  color: var(--cyan);
}

.diff-hard {
  color: var(--orange);
}

.diff-lunatic {
  color: var(--red);
}

.feature-list,
.footer-links {
  list-style: none;
  padding-left: 0;
}

ul.feature-list,
ol.feature-list {
  display: grid;
  gap: 12px;
}

ul.feature-list > li {
  position: relative;
  padding-left: 24px;
  color: var(--text-secondary);
}

ul.feature-list > li::before {
  content: "▸";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--cyan);
  font-weight: 800;
}

ol.feature-list {
  counter-reset: shared-step;
}

ol.feature-list > li {
  position: relative;
  min-height: 32px;
  padding-left: 46px;
  color: var(--text-secondary);
  counter-increment: shared-step;
}

ol.feature-list > li::before {
  content: counter(shared-step);
  position: absolute;
  top: -2px;
  left: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 160, 23, 0.16);
  color: var(--gold);
  border: 1px solid rgba(212, 160, 23, 0.28);
  font-weight: 800;
}

.accordion,
.faq {
  display: grid;
  gap: 12px;
}

.accordion-item,
.faq-item {
  overflow: hidden;
}

.accordion-btn,
.faq-question,
.faq-q {
  width: 100%;
  background: transparent;
  border: 0;
  color: var(--text-primary);
  padding: 18px 22px;
  text-align: left;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.accordion-btn:hover,
.faq-question:hover,
.faq-q:hover,
.accordion-btn.active,
.faq-item.open .faq-question,
.faq-item.open .faq-q {
  background: rgba(255, 255, 255, 0.03);
}

.faq-question:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: -2px;
  border-radius: 12px;
}

.accordion-content,
.faq-answer,
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 22px;
  color: var(--text-secondary);
}

.accordion-btn.active + .accordion-content,
.accordion-btn.open + .accordion-content,
.faq-item.open .faq-answer,
.faq-item.open .faq-a {
  max-height: 1200px;
  padding-bottom: 20px;
}

.accordion-content-inner,
.faq-answer p,
.faq-a p {
  color: var(--text-secondary);
}

.arrow,
.faq-q .icon {
  color: var(--gold);
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.faq-item.open .arrow {
  transform: rotate(180deg);
}

.accordion-btn.open .arrow {
  transform: rotate(180deg);
}

.faq-item.open .faq-q .icon {
  transform: rotate(45deg);
}

.newsletter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}

.newsletter-input {
  flex: 1 1 240px;
  min-height: 48px;
  padding: 13px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-primary);
  outline: none;
}

.newsletter-input:focus {
  border-color: rgba(105, 235, 255, 0.34);
  box-shadow: 0 0 0 3px rgba(105, 235, 255, 0.12);
}

.newsletter-input::placeholder {
  color: var(--text-dim);
}

.footer-video-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(105, 235, 255, 0.12), transparent 30%),
    radial-gradient(circle at bottom left, rgba(255, 182, 71, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(10, 11, 15, 0.98), rgba(5, 6, 9, 0.98));
  border-top: 1px solid rgba(255, 182, 71, 0.12);
  border-bottom: 1px solid rgba(255, 182, 71, 0.08);
}

.footer-video-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.02) 46%, transparent 100%),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 0 26px,
      rgba(255, 255, 255, 0.018) 26px 27px
    );
  opacity: 0.5;
}

.footer-video-section .container {
  position: relative;
  z-index: 1;
}

.footer-video-intro {
  max-width: 920px;
  margin: 0 auto 30px;
  text-align: center;
  color: var(--text-secondary);
}

.footer-video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.footer-video-card {
  display: grid;
  gap: 16px;
  padding: 18px;
  border-radius: var(--radius-lg);
  background: rgba(11, 14, 19, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}

.footer-video-frame {
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #000;
  aspect-ratio: 16 / 9;
}

.yt-lite,
.yt-lite-poster,
.yt-lite-poster img,
.footer-video-frame iframe {
  width: 100%;
  height: 100%;
}

.yt-lite {
  position: relative;
  display: block;
  color: inherit;
  text-decoration: none;
  background: #000;
}

.yt-lite::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at center, rgba(255, 182, 71, 0.1), transparent 36%),
    linear-gradient(180deg, rgba(7, 9, 12, 0.06), rgba(7, 9, 12, 0.58) 68%, rgba(7, 9, 12, 0.84));
}

.yt-lite-poster,
.yt-lite-poster img {
  display: block;
}

.yt-lite-poster img {
  object-fit: cover;
  transition: transform 0.45s ease, filter 0.3s ease;
  filter: saturate(0.92) contrast(1.03);
}

.yt-lite-cue,
.yt-lite-play {
  position: absolute;
  z-index: 2;
}

.yt-lite-cue {
  top: 14px;
  right: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(8, 10, 14, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text-primary);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.yt-lite-play {
  left: 18px;
  bottom: 18px;
  width: 60px;
  height: 60px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gold-bright), var(--orange));
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.34), 0 0 0 8px rgba(255, 182, 71, 0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.yt-lite-play-icon {
  padding-left: 4px;
  color: #000;
  font-size: 1.3rem;
  line-height: 1;
}

.yt-lite:hover .yt-lite-poster img,
.yt-lite:focus-visible .yt-lite-poster img {
  transform: scale(1.05);
  filter: saturate(1.04) contrast(1.06);
}

.yt-lite:hover .yt-lite-play,
.yt-lite:focus-visible .yt-lite-play {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.38), 0 0 0 10px rgba(255, 182, 71, 0.16);
}

.yt-lite:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}

.footer-video-frame iframe {
  border: 0;
  display: block;
}

.footer-video-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.video-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-secondary);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.video-pill:nth-child(1) {
  color: var(--gold-bright);
}

.video-pill:nth-child(2) {
  color: var(--cyan);
}

.footer-video-card h3 {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.35;
}

.footer-video-card p {
  margin: 0;
  color: var(--text-secondary);
}

.footer-video-actions {
  margin-top: 28px;
  display: flex;
  justify-content: center;
}

.footer,
.site-footer {
  padding: 52px 0 24px;
  background: linear-gradient(180deg, rgba(6, 6, 6, 0.9), rgba(2, 2, 2, 1));
  border-top: 1px solid rgba(212, 160, 23, 0.12);
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  margin-bottom: 28px;
}

@media (max-width: 1180px) {
  .grid-4,
  .card-grid-4 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .grid-5 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-stage-screen {
    min-height: clamp(300px, 34vw, 390px);
  }

  .game-embed-wrapper iframe {
    min-height: clamp(360px, 58vw, 560px);
  }
}

@media (max-width: 1024px) {
  .hero-grid-playable {
    grid-template-columns: 1fr;
    grid-template-areas:
      "visual"
      "text";
    align-items: start;
  }

  .hero-grid-playable .hero-text {
    max-width: 940px;
    justify-self: center;
    text-align: center;
    gap: 18px;
  }

  .hero-grid-playable .hero-text h1 {
    margin: 0 auto;
  }

  .hero-grid-playable .hero-sub,
  .hero-grid-playable .hero-subtitle {
    max-width: 72ch;
    margin: 0 auto;
  }

  .hero-grid-playable .hero-eyeline,
  .hero-grid-playable .hero-eyes,
  .hero-grid-playable .hero-meta,
  .hero-grid-playable .hero-keywords,
  .hero-grid-playable .hero-btns,
  .hero-grid-playable .hero-ctas,
  .hero-grid-playable .btn-group,
  .hero-grid-playable .inline-link-list,
  .hero-grid-playable .hero-stage-marquee {
    justify-content: center;
  }

  .hero-grid-playable .hero-stats {
    margin: 0 auto;
  }

  .hero-grid-playable .hero-visual {
    width: 100%;
    max-width: none;
    justify-self: stretch;
  }

  .hero-grid-playable .hero-frame-label {
    justify-content: center;
  }

  .grid-3,
  .card-grid,
  .card-grid-3,
  .grid-4,
  .card-grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid-5 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-video-grid {
    grid-template-columns: 1fr;
  }

  .hero-stage-screen {
    min-height: clamp(280px, 46vw, 380px);
  }

  .hero-stage-marquee {
    justify-content: center;
  }
}

.footer h4,
.footer h5,
.site-footer h4,
.site-footer h5 {
  margin-bottom: 12px;
  color: var(--gold);
  font-family: var(--font-sub);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer ul {
  list-style: none;
  padding-left: 0;
}

.footer li + li {
  margin-top: 8px;
}

.footer a,
.site-footer a {
  color: var(--text-dim);
}

.footer a:hover,
.site-footer a:hover {
  color: var(--cyan);
}

.footer-links a.current {
  color: var(--gold);
}

.footer-links a.current:hover {
  color: var(--gold-bright);
}

.footer-col {
  display: grid;
  gap: 8px;
}

.footer-bottom {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
  color: var(--text-dim);
  font-size: 0.84rem;
}

.footer-bottom p + p {
  margin-top: 8px;
}

.disclaimer {
  color: var(--text-dim);
}

.back-to-top,
.scroll-top,
.back-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: #000;
  font-size: 1.2rem;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(212, 160, 23, 0.26);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  z-index: 1001;
}

.back-to-top.show,
.scroll-top.visible,
.back-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.back-to-top:hover,
.scroll-top:hover,
.back-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(212, 160, 23, 0.34);
}

.back-to-top:focus-visible,
.scroll-top:focus-visible,
.back-top:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.scanlines::after,
.animate-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.scanlines::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(255, 255, 255, 0.025) 3px,
    rgba(255, 255, 255, 0.025) 6px
  );
  pointer-events: none;
  opacity: 0.35;
  transform: none;
}

.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@keyframes eye-glow {
  0%,
  100% {
    opacity: 0.6;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.08);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.65;
  }
  50% {
    opacity: 1;
  }
}

@media (max-width: 900px) {
  .hero,
  header.hero {
    min-height: auto;
    padding: 104px 0 64px;
  }

  .hero-stage-screen {
    min-height: clamp(260px, 54vw, 360px);
  }

  .game-embed-wrapper iframe {
    min-height: 320px;
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 768px) {
  .nav-inner {
    min-height: 60px;
    padding: 10px 16px;
    gap: 12px;
    align-items: center;
  }

  .nav-logo,
  .footer-brand {
    font-size: clamp(1.22rem, 5.2vw, 1.48rem);
  }

  .mobile-toggle,
  .mobile-menu,
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 16px;
    right: 16px;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 12px;
    max-height: min(68vh, 540px);
    overflow-y: auto;
    overscroll-behavior: contain;
    background: rgba(13, 13, 13, 0.98);
    border: 1px solid rgba(212, 160, 23, 0.18);
    border-radius: 16px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    width: 100%;
    min-height: 42px;
    justify-content: flex-start;
    text-align: left;
    line-height: 1.35;
  }

  .nav-lang-dropdown {
    width: 100%;
    margin-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 8px;
    margin-top: 4px;
  }

  .nav-lang-btn {
    width: 100%;
    justify-content: space-between;
    min-height: 42px;
  }

  .nav-lang-menu {
    position: static;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    margin-top: 6px;
    padding: 4px 6px;
  }

  .nav-lang-menu a {
    min-height: 40px;
  }

  .announcement,
  .announce-bar,
  .announcement-bar {
    padding: 12px 16px;
    font-size: 0.94rem;
    line-height: 1.55;
  }

  .announcement-inner {
    gap: 10px;
  }

  .ver-tag {
    margin-left: 0;
  }

  .hero,
  header.hero {
    padding: 96px 0 56px;
  }

  .hero-content,
  .hero-grid {
    gap: 22px;
  }

  .hero-eyeline,
  .hero-eyes {
    gap: 26px;
  }

  .hero-eye {
    width: 16px;
    height: 16px;
  }

  .hero-sub,
  .hero-subtitle {
    font-size: 1rem;
    line-height: 1.75;
  }

  .hero-frame {
    padding: 12px;
  }

  .hero-frame-label,
  .game-embed-label {
    position: static;
    margin-bottom: 10px;
    width: fit-content;
    max-width: 100%;
  }

  .hero-grid-playable .hero-frame-label {
    justify-content: center;
  }

  .hero-stage-screen {
    min-height: 240px;
    padding: 24px;
  }

  .hero-stage-marquee {
    justify-content: center;
  }

  /* 移动端游戏区域回归正常container宽度 */
  .hero-grid-playable {
    padding: 0 clamp(10px, 2vw, 16px);
  }

  #play-online .container {
    padding: 0 clamp(10px, 2vw, 16px);
  }

  .game-embed-wrapper {
    padding: 12px;
  }

  .game-embed-wrapper::after {
    display: none;
  }

  .trailer-wrapper {
    border-radius: 16px;
  }

  .game-card-header {
    gap: 12px;
    padding: 20px 20px 14px;
  }

  .game-card-body,
  .mod-card-body {
    padding: 0 20px 20px;
  }

  .card,
  .route-card,
  .ending-card,
  .protag-card,
  .night-card,
  .download-box,
  .highlight-box,
  .info-box,
  .warning-box,
  .newsletter-box,
  .boss-phase {
    padding: 20px;
  }

  .char-card,
  .animatronic-card {
    padding: 16px;
  }

  .community-link {
    padding: 16px 18px;
  }

  .community-icon,
  .card-icon,
  .char-icon,
  .animatronic-icon {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    font-size: 1.3rem;
  }

  .section,
  body > section {
    padding: 48px 0;
    scroll-margin-top: 84px;
  }

  .section-header {
    margin-bottom: 22px;
    gap: 10px;
  }

  .section-divider,
  .separator {
    width: 72px;
    margin-bottom: 22px;
  }

  .badge,
  .tag,
  .char-tag,
  .hero-badge,
  .hero-meta span,
  .hero-keywords span {
    min-height: 28px;
    padding: 4px 10px;
    font-size: 0.74rem;
  }

  .hero-btns,
  .hero-ctas,
  .btn-group,
  .newsletter-form {
    flex-direction: column;
    align-items: stretch;
  }

  .btn,
  .btn-primary,
  .btn-secondary,
  .btn-danger,
  .btn-download {
    width: 100%;
    min-height: 50px;
    padding: 13px 18px;
  }

  .hero-stats,
  .stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .stat-item,
  .hero-stat {
    padding: 18px 14px;
  }

  .section,
  body > section {
    padding: 48px 0;
  }

  .info-table th,
  .info-table td,
  .data-table th,
  .data-table td,
  .diff-table th,
  .diff-table td {
    padding: 11px 12px;
    font-size: 0.84rem;
  }

  .accordion-btn,
  .faq-question,
  .faq-q {
    padding: 16px 18px;
    font-size: 0.96rem;
    align-items: flex-start;
  }

  .accordion-content,
  .faq-answer,
  .faq-a {
    padding: 0 18px;
  }

  .footer,
  .site-footer {
    padding: 40px 0 22px;
  }

  .footer-grid {
    gap: 20px;
    margin-bottom: 22px;
  }

  .footer-video-card {
    padding: 16px;
    border-radius: 20px;
  }

  .footer-links {
    gap: 6px;
  }

  .u-inline-033 {
    min-width: 0;
  }

  .u-inline-058 {
    position: relative;
    margin-top: 18px;
    padding-bottom: 10px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }

  .u-inline-058::after {
    content: "↔";
    display: block;
    width: fit-content;
    margin: 8px 0 0 auto;
    color: var(--text-dim);
    font-size: 0.82rem;
  }

  .u-inline-058 .diff-table,
  .u-inline-058 .info-table,
  .u-inline-058 .data-table {
    min-width: 520px;
  }

  .u-inline-059,
  .u-inline-060,
  .u-inline-091,
  .u-inline-164 {
    padding: 24px;
  }

  .u-inline-131 {
    font-size: 1rem;
    padding: 14px 24px;
  }

  .u-inline-165 {
    font-size: 0.84rem;
  }
}

@media (max-width: 560px) {
  .container {
    padding: 0 16px;
  }

  .hero-grid-playable,
  #play-online .container {
    padding: 0 12px;
  }

  .trailer-wrapper {
    border-radius: 12px;
  }

  .footer-video-intro {
    margin-bottom: 24px;
  }

  .footer-video-frame {
    border-radius: 16px;
  }

  .footer-video-actions .btn {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .nav-inner {
    min-height: 58px;
    gap: 10px;
  }

  .nav-logo,
  .footer-brand {
    font-size: 1.28rem;
  }

  .nav-links {
    left: 12px;
    right: 12px;
    padding: 10px;
  }

  .announcement,
  .announce-bar,
  .announcement-bar {
    padding: 10px 14px;
    font-size: 0.9rem;
  }

  .announcement-inner {
    gap: 8px;
  }

  .hero,
  header.hero {
    padding: 88px 0 44px;
  }

  .hero-content,
  .hero-grid {
    gap: 18px;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(1.85rem, 11vw, 2.7rem);
    line-height: 1.05;
  }

  .hero-sub,
  .hero-subtitle {
    font-size: 0.96rem;
    line-height: 1.7;
  }

  .hero-meta,
  .hero-keywords {
    gap: 8px;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .grid-5,
  .card-grid,
  .card-grid-2,
  .card-grid-3,
  .card-grid-4 {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .hero-stats,
  .stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .stat-item,
  .hero-stat {
    padding: 16px 12px;
  }

  .badge,
  .tag,
  .char-tag,
  .hero-badge,
  .hero-meta span,
  .hero-keywords span {
    font-size: 0.7rem;
    padding: 4px 9px;
  }

  .card,
  .route-card,
  .ending-card,
  .protag-card,
  .night-card,
  .download-box,
  .highlight-box,
  .info-box,
  .warning-box,
  .newsletter-box,
  .boss-phase {
    padding: 18px;
  }

  .community-link {
    gap: 12px;
    padding: 14px 16px;
  }

  .community-icon,
  .card-icon,
  .char-icon,
  .animatronic-icon {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    border-radius: 12px;
    font-size: 1.2rem;
  }

  .game-card-header {
    padding: 18px 18px 12px;
  }

  .game-card-body,
  .mod-card-body {
    padding: 0 18px 18px;
  }

  .game-embed-wrapper iframe,
  .hero-frame iframe {
    min-height: 250px;
  }

  .accordion-btn,
  .faq-question,
  .faq-q {
    padding: 14px 16px;
    font-size: 0.93rem;
  }

  .accordion-content,
  .faq-answer,
  .faq-a {
    padding: 0 16px;
  }

  .footer-grid {
    gap: 18px;
  }

  .footer-bottom {
    font-size: 0.78rem;
  }

  .u-inline-058 .diff-table,
  .u-inline-058 .info-table,
  .u-inline-058 .data-table {
    min-width: 500px;
  }

  .u-inline-011,
  .u-inline-027 {
    font-size: 1.7rem;
  }

  .u-inline-052,
  .u-inline-073 {
    font-size: 2.1rem;
  }

  .u-inline-059,
  .u-inline-060,
  .u-inline-091,
  .u-inline-164 {
    padding: 20px;
  }

  .back-to-top,
  .scroll-top,
  .back-top {
    right: 16px;
    bottom: 16px;
  }
}

@media (max-width: 420px) {
  .nav-links {
    left: 10px;
    right: 10px;
  }

  .announcement,
  .announce-bar,
  .announcement-bar {
    font-size: 0.86rem;
  }

  .section,
  body > section {
    padding: 40px 0;
  }

  .hero h1 {
    font-size: clamp(1.7rem, 10vw, 2.4rem);
  }

  .hero-eyeline,
  .hero-eyes {
    gap: 18px;
  }

  .hero-eye {
    width: 14px;
    height: 14px;
  }

  .game-embed-wrapper iframe,
  .hero-frame iframe {
    min-height: 220px;
  }

  .u-inline-058 .diff-table,
  .u-inline-058 .info-table,
  .u-inline-058 .data-table {
    min-width: 480px;
  }
}

/* === Extracted Inline Utilities Start === */
/* generated from former inline style attributes across index/es/ja/kr */
.u-inline-001 { font-size: 0.85rem; }
.u-inline-002 { color: var(--neon-green); }
.u-inline-003 { font-size: 0.88rem; }
.u-inline-004 { margin-bottom: 12px; }
.u-inline-005 { margin-bottom: 16px; }
.u-inline-006 { margin-bottom: 8px; }
.u-inline-007 { max-width: 700px; margin: 0 auto 2rem; }
.u-inline-008 { font-size: 0.8rem; }
.u-inline-009 { margin-top: 12px; }
.u-inline-010 { font-size: 0.82rem; color: var(--text-dim); }
.u-inline-011 { font-size: 2.5rem; margin-bottom: 8px; }
.u-inline-012 { margin-top: 20px; }
.u-inline-013 { text-align: center; }
.u-inline-014 { font-size: 0.9rem; }
.u-inline-015 { font-size: 2rem; margin-bottom: 4px; }
.u-inline-016 { margin-top: 8px; }
.u-inline-017 { margin-top: 24px; }
.u-inline-018 { margin-top: 32px; }
.u-inline-019 { color: var(--danger-red); }
.u-inline-020 { color: var(--neon-cyan); }
.u-inline-021 { color: var(--text-dim); font-size: 0.85rem; }
.u-inline-022 { font-size: 0.83rem; margin-top: 8px; }
.u-inline-023 { margin-bottom: 1rem; }
.u-inline-024 { margin-top: 12px; font-size: 0.85rem; }
.u-inline-025 { padding: 6px 0; }
.u-inline-026 { padding: 6px 0; color: var(--text-dim); }
.u-inline-027 { font-size: 2rem; margin-bottom: 8px; }
.u-inline-028 { margin-top: 16px; }
.u-inline-029 { background: var(--bg-panel); padding: 12px 20px; border-radius: 8px; text-align: center; }
.u-inline-030 { color: var(--gold); }
.u-inline-031 { color: var(--neon-green); font-size: 1.5rem; }
.u-inline-032 { color: var(--neon-pink); }
.u-inline-033 { flex: 1; min-width: 200px; display: flex; gap: 12px; align-items: flex-start; }
.u-inline-034 { font-size: 0.82rem; }
.u-inline-035 { font-size: 0.85rem; color: var(--text-dim); }
.u-inline-036 { font-size: 0.85rem; color: var(--text-secondary); }
.u-inline-037 { margin-bottom: 20px; }
.u-inline-038 { margin-bottom: 2rem; }
.u-inline-039 { margin-top: 10px; }
.u-inline-040 { margin-top: 8px; font-weight: 700; }
.u-inline-041 { text-align: center; text-decoration: none; }
.u-inline-042 { background: rgba(139,92,246,0.1); }
.u-inline-043 { background: rgba(139,92,246,0.1); border-color: rgba(139,92,246,0.3); }
.u-inline-044 { background: rgba(212,160,23,0.1); }
.u-inline-045 { border-color: rgba(139,92,246,0.3); }
.u-inline-046 { border-color: rgba(212,160,23,0.3); }
.u-inline-047 { color: var(--text-secondary); }
.u-inline-048 { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.u-inline-049 { display: inline-block; margin-top: 12px; }
.u-inline-050 { font-size: 0.78rem; color: var(--text-muted); margin-top: 8px; }
.u-inline-051 { font-size: 0.9rem; font-style: italic; }
.u-inline-052 { font-size: 3rem; }
.u-inline-053 { margin-bottom: 10px; display: flex; gap: 12px; align-items: flex-start; }
.u-inline-054 { margin-top: 12px; padding: 8px 16px; font-size: 0.85rem; }
.u-inline-055 { margin-top: 30px; }
.u-inline-056 { margin-top: 40px; }
.u-inline-057 { margin: 12px 0; font-size: 0.85rem; }
.u-inline-058 { overflow-x: auto; }
.u-inline-059 { padding: 32px; }
.u-inline-060 { padding: 40px; }
.u-inline-061 { width: 100%; justify-content: center; margin-top: 12px; }
.u-inline-062 { background: rgba(105,235,255,0.1); }
.u-inline-063 { background: rgba(212,160,23,0.2); color: var(--gold); border-color: var(--gold); }
.u-inline-064 { background: rgba(76,175,80,0.1); }
.u-inline-065 { border-top: 3px solid var(--gold); }
.u-inline-066 { border-top: 3px solid var(--neon-cyan); }
.u-inline-067 { border-top: 3px solid var(--neon-green); }
.u-inline-068 { border-top: 3px solid var(--neon-pink); }
.u-inline-069 { color: var(--warning-yellow); }
.u-inline-070 { display: flex; align-items: center; justify-content: center; }
.u-inline-071 { display: inline-block; margin-top: 8px; }
.u-inline-072 { font-size: 0.85rem; color: var(--text-muted); }
.u-inline-073 { font-size: 4rem; margin-bottom: 12px; }
.u-inline-074 { margin-bottom: 0; }
.u-inline-075 { margin-bottom: 12px; border-left: 3px solid var(--neon-cyan); }
.u-inline-076 { margin-bottom: 12px; border-left: 3px solid var(--neon-green); }
.u-inline-077 { margin-bottom: 30px; }
.u-inline-078 { margin: 12px 0; }
.u-inline-079 { max-width: 700px; margin: 0 auto; }
.u-inline-080 { max-width: 800px; margin: 0 auto; }
.u-inline-081 { text-align: center; margin-top: 24px; }
.u-inline-082 { animation-delay: 0.8s; }
.u-inline-083 { background: linear-gradient(135deg, rgba(212,160,23,0.05), rgba(105,235,255,0.03)); border-color: rgba(212,160,23,0.15); }
.u-inline-084 { background: rgba(212,160,23,0.1); border-color: rgba(212,160,23,0.3); }
.u-inline-085 { background: rgba(229,57,53,0.1); }
.u-inline-086 { background: rgba(244,114,182,0.1); }
.u-inline-087 { background: rgba(255,112,67,0.1); }
.u-inline-088 { background: rgba(255,112,67,0.12); color: var(--orange); border: 1px solid rgba(255,112,67,0.3); }
.u-inline-089 { background: rgba(255,112,67,0.12); color: var(--orange); border: 1px solid rgba(255,112,67,0.3); margin-bottom: 8px; }
.u-inline-090 { background: rgba(34,211,238,0.1); }
.u-inline-091 { background: var(--bg-elevated); border-radius: var(--radius-lg); padding: 32px; border: 2px solid rgba(212,160,23,0.3); margin: 2rem 0; }
.u-inline-092 { border-color: var(--gold); box-shadow: 0 0 20px rgba(212,160,23,0.2); }
.u-inline-093 { border-color: var(--neon-green); box-shadow: 0 0 15px rgba(57,255,136,0.1); }
.u-inline-094 { border-left: 3px solid var(--danger-red); }
.u-inline-095 { border-left: 3px solid var(--neon-purple); }
.u-inline-096 { border-left: 3px solid var(--warning-yellow); }
.u-inline-097 { border-left: 4px solid var(--green); }
.u-inline-098 { border-top: 3px solid var(--danger-red); }
.u-inline-099 { border-top: 3px solid var(--warning-yellow); }
.u-inline-100 { color: var(--danger-red); margin-bottom: 16px; }
.u-inline-101 { color: var(--gold); margin: 30px 0 16px; }
.u-inline-102 { color: var(--neon-cyan); font-weight: 700; }
.u-inline-103 { color: var(--neon-cyan); margin-top: 8px; font-weight: 700; }
.u-inline-104 { color: var(--neon-green); font-size: 1.5rem; margin-bottom: 16px; }
.u-inline-105 { color: var(--neon-green); font-weight: 700; }
.u-inline-106 { color: var(--neon-green); margin-top: 8px; font-weight: 700; }
.u-inline-107 { color: var(--neon-pink); font-weight: 700; }
.u-inline-108 { color: var(--text-dim); font-size: 0.85rem; margin-top: 12px; }
.u-inline-109 { color: var(--text-primary); margin-bottom: 16px; }
.u-inline-110 { color: var(--warning-yellow); font-weight: 700; }
.u-inline-111 { color: var(--warning-yellow); margin: 30px 0 16px; }
.u-inline-112 { display: flex; flex-direction: column; gap: 10px; }
.u-inline-113 { display: flex; gap: 12px; align-items: flex-start; }
.u-inline-114 { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; justify-content: center; }
.u-inline-115 { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.u-inline-116 { display: flex; gap: 16px; flex-wrap: wrap; }
.u-inline-117 { font-family: 'Creepster',cursive; font-size: 1.3rem; }
.u-inline-118 { font-family: var(--font-sub); letter-spacing: 1px; }
.u-inline-119 { font-size: 0.75rem; color: var(--text-dim); margin-top: 12px; }
.u-inline-120 { font-size: 0.78rem; color: var(--text-muted); margin-top: 12px; }
.u-inline-121 { font-size: 0.85rem; color: var(--danger-red); margin-top: 8px; }
.u-inline-122 { font-size: 0.85rem; color: var(--gold); margin-top: 8px; }
.u-inline-123 { font-size: 0.85rem; color: var(--neon-cyan); margin-top: 8px; }
.u-inline-124 { font-size: 0.85rem; color: var(--neon-green); margin-top: 8px; }
.u-inline-125 { font-size: 0.85rem; color: var(--neon-pink); margin-top: 8px; }
.u-inline-126 { font-size: 0.85rem; color: var(--text-dim); margin-bottom: 1.5rem; }
.u-inline-127 { font-size: 0.85rem; color: var(--text-muted); margin-top: 16px; }
.u-inline-128 { font-size: 0.85rem; color: var(--text-muted); max-width: 300px; }
.u-inline-129 { font-size: 0.85rem; color: var(--warning-yellow); margin-top: 8px; }
.u-inline-130 { font-size: 0.9rem; margin-bottom: 4px; }
.u-inline-131 { font-size: 1.1rem; padding: 16px 40px; }
.u-inline-132 { font-size: 1.2rem; margin-bottom: 16px; }
.u-inline-133 { font-size: 1.4rem; margin-bottom: 8px; }
.u-inline-134 { font-size: 1.5rem; }
.u-inline-135 { gap: 12px; }
.u-inline-136 { grid-template-columns: 1fr; }
.u-inline-137 { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
.u-inline-138 { grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); }
.u-inline-139 { justify-content: center; }
.u-inline-140 { list-style: none; counter-reset: step; }
.u-inline-141 { margin-bottom: 12px; border-left: 3px solid var(--danger-red); }
.u-inline-142 { margin-bottom: 12px; color: var(--danger-red); font-weight: 700; }
.u-inline-143 { margin-bottom: 16px; border-left: 4px solid var(--cyan); }
.u-inline-144 { margin-bottom: 16px; border-left: 4px solid var(--gold); }
.u-inline-145 { margin-bottom: 16px; border-left: 4px solid var(--purple); }
.u-inline-146 { margin-bottom: 20px; color: var(--text-secondary); }
.u-inline-147 { margin-bottom: 4px; }
.u-inline-148 { margin-top: 1.5rem; font-size: 0.85rem; color: var(--text-dim); }
.u-inline-149 { margin-top: 1.5rem; font-size: 0.88rem; }
.u-inline-150 { margin-top: 16px; color: var(--text-dim); font-size: 0.85rem; }
.u-inline-151 { margin-top: 16px; font-size: 0.85rem; color: var(--text-muted); }
.u-inline-152 { margin-top: 16px; font-size: 0.88rem; }
.u-inline-153 { margin-top: 16px; font-size: 0.8rem; color: var(--text-muted); }
.u-inline-154 { margin-top: 20px; border-color: rgba(212,160,23,0.3); }
.u-inline-155 { margin-top: 20px; font-size: 0.88rem; }
.u-inline-156 { margin-top: 2rem; }
.u-inline-157 { max-width: 500px; margin: 0 auto; }
.u-inline-158 { max-width: 600px; margin: 0 auto 24px; }
.u-inline-159 { max-width: 700px; margin: 0 auto 1.5rem; }
.u-inline-160 { max-width: 700px; margin: 0 auto; text-align: center; }
.u-inline-161 { opacity: 0.6; }
.u-inline-162 { text-align: center; margin-top: 20px; }
.u-inline-163 { text-align: center; margin-top: 20px; color: var(--text-dim); }
.u-inline-164 { text-align: center; padding: 40px; }
.u-inline-165 { width: 100%; font-size: 0.9rem; }
.u-inline-166 { width: 100%; justify-content: center; margin-top: 8px; }
/* === Extracted Inline Utilities End === */

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--text-dim);
  font-size: 0.92rem;
}

.breadcrumbs a {
  color: var(--text-secondary);
}

.breadcrumbs span {
  opacity: 0.8;
}

.page-anchor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.page-anchor-grid a {
  min-height: 96px;
  padding: 18px;
  display: grid;
  gap: 8px;
  align-content: start;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(30, 30, 30, 0.92), rgba(10, 10, 10, 0.92));
  box-shadow: var(--shadow);
}

.page-anchor-grid a:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow), var(--shadow-cyan);
}

.page-anchor-grid strong {
  font-family: var(--font-sub);
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-anchor-grid span {
  color: var(--text-secondary);
  font-size: 0.92rem;
}

.skeleton-list,
.placeholder-list,
.content-list {
  list-style: none;
  padding-left: 0;
  display: grid;
  gap: 12px;
}

.skeleton-list li,
.placeholder-list li,
.content-list li {
  padding: 14px 16px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-secondary);
}

.todo-caption {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-family: var(--font-sub);
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
}

.note-box {
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(212, 160, 23, 0.24);
  border-left: 4px solid var(--gold);
  background: linear-gradient(180deg, rgba(18, 18, 18, 0.96), rgba(8, 8, 8, 0.96));
  box-shadow: var(--shadow);
}

.note-box p + p,
.card p + p {
  margin-top: 12px;
}

.home-hero,
header.home-hero {
  min-height: 0;
  padding: 52px 0 40px;
}

.home-hero-grid {
  grid-template-columns: minmax(0, 1.02fr) minmax(380px, 0.98fr);
  align-items: center;
  gap: clamp(28px, 4vw, 64px);
}

.home-hero-copy {
  max-width: 650px;
  gap: 22px;
}

.home-hero-topline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.home-hero-kicker,
.home-hero-updated,
.home-hero-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--border-soft);
  background: var(--surface-inline);
  color: var(--text-secondary);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-hero-kicker {
  color: var(--gold-bright);
  border-color: var(--border-warm);
  background: rgba(255, 182, 71, 0.08);
}

.home-hero-updated {
  color: var(--cyan);
  border-color: var(--border-cool);
  background: rgba(105, 235, 255, 0.07);
}

.home-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.home-hero-badge {
  color: var(--text-primary);
}

.home-hero-overline {
  color: var(--cyan);
  font-family: var(--font-sub);
  font-size: 0.92rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.home-hero .hero-text h1 {
  max-width: 10.8ch;
  margin: 0;
  font-family: var(--font-sub);
  font-size: clamp(3rem, 5vw, 5.2rem);
  line-height: 0.92;
  letter-spacing: 0.02em;
  text-shadow: none;
}

.home-hero .hero-sub {
  max-width: 58ch;
  margin: 0;
  font-size: clamp(1rem, 1.2vw, 1.14rem);
}

.home-hero .hero-ctas,
.home-hero .inline-link-list {
  justify-content: flex-start;
}

.home-hero .hero-stats {
  max-width: 560px;
  margin: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.home-hero .hero-stat {
  padding: 18px 18px 16px;
  text-align: left;
  background: var(--surface-card-soft);
  border-color: var(--border-soft);
}

.home-hero .hero-stat-label {
  max-width: 12ch;
}

.home-hero-stage {
  width: 100%;
  max-width: 620px;
  justify-self: end;
}

.home-hero-media-shell {
  display: grid;
  gap: 14px;
  padding: clamp(16px, 2vw, 22px);
  border-radius: clamp(24px, 2.4vw, 34px);
  background: var(--surface-strong);
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: var(--shadow-panel);
}

.home-hero-media-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.home-hero-media-title {
  display: grid;
  gap: 6px;
}

.home-hero-media-title strong {
  color: var(--gold-bright);
  font-family: var(--font-sub);
  font-size: 0.94rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-hero-media-title span,
.home-hero-media-note {
  color: var(--text-dim);
  font-size: 0.84rem;
  line-height: 1.5;
}

.home-hero-media-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--border-soft);
  background: rgba(255, 255, 255, 0.025);
}

.home-hero-media-frame {
  position: relative;
  overflow: hidden;
  border-radius: clamp(20px, 2vw, 28px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  background:
    radial-gradient(circle at top right, rgba(105, 235, 255, 0.12), transparent 28%),
    radial-gradient(circle at bottom left, rgba(255, 182, 71, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(8, 10, 14, 0.98), rgba(12, 14, 19, 0.98));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.home-hero-media-frame::before {
  content: "";
  position: absolute;
  inset: 14px 14px auto 14px;
  height: 28px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 182, 71, 0.14), rgba(105, 235, 255, 0.12));
  border: 1px solid rgba(255, 255, 255, 0.05);
  pointer-events: none;
  z-index: 2;
}

.home-hero-media-frame iframe {
  width: 100%;
  min-height: 420px;
  aspect-ratio: 16 / 10;
  border: 0;
  background: var(--bg-deep);
}

.home-hero-rail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.home-hero-rail article {
  display: grid;
  gap: 6px;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid var(--border-soft);
  background: rgba(255, 255, 255, 0.025);
}

.home-hero-rail strong {
  color: var(--cyan);
  font-family: var(--font-sub);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.home-hero-rail span {
  color: var(--text-secondary);
  font-size: 0.86rem;
  line-height: 1.55;
}

body.home-preview {
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 182, 71, 0.12), transparent 28%),
    radial-gradient(circle at 86% 0%, rgba(105, 235, 255, 0.1), transparent 24%),
    linear-gradient(180deg, #0e1118 0%, #090b10 100%);
}

body.home-preview::before,
body.home-preview::after {
  display: none;
}

.home-preview-shell {
  min-height: 100vh;
  padding: 18px;
}

.home-preview-frame {
  min-height: calc(100vh - 36px);
  padding: 18px;
  display: grid;
  gap: 16px;
  align-content: start;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background:
    radial-gradient(circle at top right, rgba(105, 235, 255, 0.09), transparent 26%),
    radial-gradient(circle at bottom left, rgba(255, 182, 71, 0.11), transparent 26%),
    linear-gradient(180deg, rgba(12, 15, 22, 0.98), rgba(8, 10, 14, 0.98));
  box-shadow: var(--shadow-panel);
}

.home-preview-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.home-preview-chip,
.home-preview-status {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--border-soft);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.home-preview-chip {
  color: var(--gold-bright);
  background: rgba(255, 182, 71, 0.08);
}

.home-preview-status {
  color: var(--cyan);
  background: rgba(105, 235, 255, 0.06);
}

.home-preview-stage {
  padding: 26px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background:
    radial-gradient(circle at top, rgba(105, 235, 255, 0.12), transparent 26%),
    radial-gradient(circle at 14% 86%, rgba(255, 182, 71, 0.12), transparent 20%),
    linear-gradient(180deg, rgba(16, 20, 28, 0.98), rgba(10, 12, 17, 0.98));
}

.home-preview-stage img {
  width: min(220px, 62%);
  margin-bottom: 18px;
}

.home-preview-stage h2 {
  color: var(--text-primary);
  font-size: clamp(1.7rem, 5vw, 2.4rem);
}

.home-preview-stage p {
  margin-top: 12px;
  max-width: 44ch;
}

.home-preview-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.home-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.home-preview-grid article {
  padding: 14px;
  border-radius: 18px;
  border: 1px solid var(--border-soft);
  background: rgba(255, 255, 255, 0.025);
}

.home-preview-grid strong {
  display: block;
  color: var(--gold-bright);
  font-family: var(--font-sub);
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-preview-grid span {
  display: block;
  margin-top: 6px;
  color: var(--text-secondary);
  font-size: 0.84rem;
  line-height: 1.45;
}

@media (max-width: 1024px) {
  .home-hero,
  header.home-hero {
    padding: 40px 0 32px;
  }

  .home-hero-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "text"
      "visual";
    align-items: start;
  }

  .home-hero-copy,
  .home-hero-stage {
    max-width: none;
    justify-self: stretch;
  }

  .home-hero-copy {
    order: 1;
  }

  .home-hero-stage {
    order: 2;
  }

  .home-hero .hero-text h1,
  .home-hero .hero-sub {
    max-width: none;
  }

  .home-hero .hero-ctas,
  .home-hero .inline-link-list {
    justify-content: flex-start;
  }

  .home-hero-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-preview-frame {
    min-height: auto;
  }

  .home-preview-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .home-hero,
  header.home-hero {
    padding: 28px 0 20px;
  }

  .home-hero .hero-text h1 {
    max-width: none;
    font-size: clamp(2.2rem, 11vw, 3rem);
  }

  .home-hero-topline {
    gap: 10px;
  }

  .home-hero-kicker,
  .home-hero-updated,
  .home-hero-badge {
    width: 100%;
    justify-content: flex-start;
  }

  .home-hero .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .home-hero .hero-stats,
  .home-hero-rail,
  .home-preview-grid {
    grid-template-columns: 1fr;
  }

  .home-hero-media-shell {
    padding: 14px;
  }

  .home-hero-media-frame iframe {
    min-height: 300px;
    aspect-ratio: 16 / 11;
  }

  .home-preview-shell {
    padding: 12px;
  }

  .home-preview-frame {
    min-height: calc(100vh - 24px);
    padding: 14px;
  }

  .home-preview-stage {
    padding: 18px;
  }

  .home-preview-actions {
    flex-direction: column;
  }
}

.inline-link-list {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.inline-link-list a {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-secondary);
  font-size: 0.92rem;
}

.inline-link-list a:hover {
  border-color: var(--border-strong);
  color: var(--cyan);
}

.subpage-breadcrumb-strip {
  padding: 18px 0 0;
}

.subpage-breadcrumb {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-dim);
}

.subpage-breadcrumb a {
  color: var(--purple);
}

.subpage-breadcrumb a:hover {
  color: var(--cyan);
}

.subpage-stack-top-md {
  margin-top: 1rem;
}

.subpage-stack-top-lg {
  margin-top: 1.5rem;
}

.subpage-embed-card {
  padding: 0;
  overflow: hidden;
  border-radius: 12px;
}

.subpage-embed-ratio {
  position: relative;
  height: 0;
  overflow: hidden;
  padding-bottom: 56.25%;
}

.subpage-embed-ratio iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.content-note {
  max-width: 760px;
  margin: 18px auto 0;
  color: var(--text-dim);
  font-size: 0.9rem;
  text-align: center;
}

@media (max-width: 720px) {
  .page-anchor-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 540px) {
  .page-anchor-grid {
    grid-template-columns: 1fr;
  }
}

.localized-page .subpage-breadcrumb-strip,
.localized-page .hero,
.localized-page .footer {
  position: relative;
  z-index: 1;
}

.localized-breadcrumb-strip {
  padding-bottom: 0;
}

.localized-page .subpage-breadcrumb {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  color: var(--text-dim);
}

.localized-page .subpage-breadcrumb a {
  color: var(--text-secondary);
}

.localized-page .subpage-breadcrumb a:hover {
  color: var(--gold);
}

.localized-page .nav {
  position: sticky;
  top: 0;
  z-index: 30;
  background: linear-gradient(180deg, rgba(7, 8, 11, 0.94), rgba(7, 8, 11, 0.76));
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(18px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.24);
}

.localized-page .nav-inner {
  gap: 18px;
}

.localized-page .nav-links {
  gap: 10px;
}

.localized-page .nav-links > a,
.localized-guide-backlink {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-secondary);
}

.localized-page .nav-links > a:hover,
.localized-guide-backlink:hover {
  color: var(--gold-bright);
  border-color: rgba(255, 182, 71, 0.24);
  background: rgba(255, 182, 71, 0.08);
}

.localized-page .nav-links > a.current,
.localized-page .nav-lang-menu a.current,
.localized-page .footer-lang a.current {
  color: var(--gold-bright);
  border-color: rgba(255, 182, 71, 0.32);
  background: rgba(255, 182, 71, 0.1);
  box-shadow: 0 0 0 1px rgba(255, 182, 71, 0.08), 0 8px 24px rgba(0, 0, 0, 0.2);
}

.localized-page .nav-lang-btn {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.localized-page .nav-lang-btn:hover,
.localized-page .nav-lang-dropdown.open .nav-lang-btn {
  border-color: rgba(255, 182, 71, 0.28);
  color: var(--gold-bright);
}

.localized-page .nav-lang-menu {
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.34);
}

.localized-hero {
  padding-top: clamp(110px, 12vw, 148px);
  overflow: clip;
}

.localized-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 14% 14%, rgba(255, 182, 71, 0.16), transparent 26%),
    radial-gradient(circle at 84% 18%, rgba(105, 235, 255, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), transparent 38%, rgba(255, 182, 71, 0.03));
  pointer-events: none;
  z-index: 0;
}

.localized-hero .container {
  position: relative;
  z-index: 1;
}

.localized-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 420px);
  gap: clamp(24px, 4vw, 44px);
  align-items: start;
}

.localized-hero-copy {
  display: grid;
  gap: 18px;
}

.localized-hero-copy h1 {
  max-width: 12ch;
  font-size: clamp(1.95rem, 3.4vw, 3rem);
  line-height: 1.06;
}

.localized-guide-hero .localized-hero-copy h1 {
  max-width: 13ch;
}

.localized-guide-hero .hero-sub,
.localized-hero-copy .hero-sub {
  max-width: 64ch;
  font-size: 1rem;
}

.localized-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.localized-cta-row {
  justify-content: flex-start;
}

.localized-anchor-grid a {
  min-height: 100%;
}

.localized-hero-rail {
  display: grid;
  gap: 18px;
}

.localized-rail-panel {
  display: grid;
  gap: 14px;
  padding: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.018));
  border-color: rgba(255, 182, 71, 0.18);
  box-shadow: 0 26px 50px rgba(0, 0, 0, 0.24);
}

.localized-rail-title {
  color: var(--gold-bright);
  font-family: var(--font-sub);
  font-size: clamp(1.05rem, 1.45vw, 1.25rem);
  letter-spacing: 0.04em;
  text-transform: none;
}

.localized-proof-list {
  list-style: none;
  padding-left: 0;
  display: grid;
  gap: 12px;
}

.localized-proof-list li {
  position: relative;
  padding-inline-start: 18px;
  color: var(--text-secondary);
}

.localized-proof-list li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 0.8em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 14px rgba(255, 182, 71, 0.24);
}

.localized-hero-stats {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.localized-stat {
  min-height: 120px;
}

.localized-card {
  display: grid;
  gap: 12px;
  min-height: 100%;
}

.localized-guide-card,
.localized-page .card.localized-card {
  position: relative;
  overflow: hidden;
  transition: transform 0.26s ease, box-shadow 0.26s ease, border-color 0.26s ease;
}

.localized-guide-card::before,
.localized-page .card.localized-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 182, 71, 0.6), rgba(105, 235, 255, 0.2), transparent);
  opacity: 0.72;
}

.localized-guide-card:hover,
.localized-page .card.localized-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 182, 71, 0.24);
  box-shadow: 0 24px 44px rgba(0, 0, 0, 0.28);
}

.localized-card p {
  color: var(--text-secondary);
}

.localized-guide-page main {
  position: relative;
  z-index: 1;
}

.localized-guide-page .section + .section {
  padding-top: clamp(48px, 6vw, 72px);
}

.localized-guide-page .section-header {
  max-width: min(72ch, 100%);
}

.localized-guide-page .section-header p {
  max-width: 62ch;
}

.localized-guide-page .grid-2,
.localized-guide-page .grid-3 {
  align-items: stretch;
}

.localized-link-list li {
  color: var(--text-dim);
}

.localized-link-list span {
  color: var(--text-dim);
}

.localized-link-list li + li {
  margin-top: 6px;
}

.localized-page .footer {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background:
    radial-gradient(circle at 10% 0%, rgba(255, 182, 71, 0.08), transparent 26%),
    linear-gradient(180deg, rgba(8, 9, 12, 0.92), rgba(4, 5, 7, 0.98));
}

.localized-footer-bottom {
  max-width: 70ch;
  margin: 0 auto;
}

html[dir="rtl"] body,
html[dir="rtl"] .localized-page {
  direction: rtl;
}

html[dir="rtl"] .localized-page .nav-logo,
html[dir="rtl"] .localized-page .nav-links a,
html[dir="rtl"] .localized-page .section-header,
html[dir="rtl"] .localized-page .hero-sub,
html[dir="rtl"] .localized-page .card,
html[dir="rtl"] .localized-page .footer-col,
html[dir="rtl"] .localized-page .footer-bottom {
  text-align: right;
}

html[dir="rtl"] .localized-page .hero-ctas,
html[dir="rtl"] .localized-page .localized-chip-row,
html[dir="rtl"] .localized-page .page-anchor-grid,
html[dir="rtl"] .localized-page .footer-lang {
  justify-content: flex-start;
}

html[dir="rtl"] .localized-page .subpage-breadcrumb {
  direction: rtl;
}

html[dir="rtl"] .localized-page .localized-proof-list li {
  padding-inline-start: 0;
  padding-inline-end: 18px;
}

html[dir="rtl"] .localized-page .localized-proof-list li::before {
  inset-inline-start: auto;
  inset-inline-end: 0;
}

@media (max-width: 1024px) {
  .localized-page .nav-links > a,
  .localized-guide-backlink {
    width: 100%;
  }

  .localized-hero-grid {
    grid-template-columns: 1fr;
  }

  .localized-hero-copy {
    text-align: center;
  }

  .localized-cta-row,
  .localized-chip-row,
  .localized-page .page-anchor-grid {
    justify-content: center;
  }

  .localized-hero-rail {
    max-width: 940px;
    width: 100%;
    margin: 0 auto;
  }

  .localized-page .section-header {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .localized-hero {
    padding-top: 96px;
  }

  .localized-page .nav-links {
    gap: 12px;
  }

  .localized-rail-panel {
    padding: 20px;
  }

  .localized-hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  html[dir="rtl"] .localized-page .nav-links a {
    text-align: right;
  }
}

@media (max-width: 560px) {
  .localized-hero-stats {
    grid-template-columns: 1fr 1fr;
  }

  .localized-stat {
    min-height: 104px;
  }
}

.game-shell-frame-card {
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  background: var(--surface-strong);
  box-shadow: var(--shadow-panel), var(--shadow-gold);
  overflow: hidden;
}

.game-shell-frame-head,
.game-shell-frame-foot {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.03);
}

.game-shell-frame-head span,
.game-shell-frame-head code {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.game-shell-frame-wrap {
  padding: 1rem;
  background: rgba(0, 0, 0, 0.32);
}

.game-shell-frame-wrap iframe {
  width: 100%;
  min-height: 780px;
  border: 1px solid var(--border-cool);
  border-radius: calc(var(--radius-lg) - 8px);
  background: #000;
}

.game-shell-list {
  list-style: disc;
  padding-left: 1.25rem;
  color: var(--text-secondary);
}

.game-shell-list li + li {
  margin-top: 0.7rem;
}

.home-preview-shell-playable .home-preview-stage-playable {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1rem;
  align-items: stretch;
}

.home-preview-copy {
  display: grid;
  gap: 0.9rem;
  align-content: start;
}

.home-preview-mini-frame {
  border: 1px solid var(--border-cool);
  border-radius: 20px;
  overflow: hidden;
  background: #000;
  min-height: 340px;
}

.home-preview-mini-frame iframe {
  width: 100%;
  min-height: 340px;
  border: 0;
}

@media (max-width: 960px) {
  .game-shell-frame-wrap iframe {
    min-height: 620px;
  }

  .home-preview-shell-playable .home-preview-stage-playable {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .game-shell-frame-head,
  .game-shell-frame-foot {
    flex-direction: column;
    align-items: flex-start;
  }

  .game-shell-frame-wrap iframe {
    min-height: 520px;
  }
}

/* 2026-04-18 homepage and embed stability overrides */
.home-hero-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 1.1fr);
  align-items: start;
  gap: clamp(24px, 3vw, 48px);
}

.home-hero-copy {
  max-width: 590px;
  gap: 18px;
  padding-top: 12px;
}

.home-hero .hero-text h1 {
  max-width: 8.6ch;
  font-size: clamp(2.8rem, 4.8vw, 4.6rem);
  line-height: 0.95;
}

.home-hero .hero-sub {
  max-width: 54ch;
  font-size: clamp(0.98rem, 1.08vw, 1.08rem);
}

.home-hero .hero-stats {
  max-width: 560px;
}

.home-hero .hero-stat {
  min-height: 108px;
}

.home-hero .hero-stat-label {
  max-width: none;
}

.home-hero-stage {
  max-width: 700px;
}

.home-hero-media-shell {
  gap: 12px;
  padding: clamp(16px, 2vw, 20px);
}

.home-hero-media-frame iframe {
  min-height: 360px;
  aspect-ratio: 16 / 9.6;
}

.home-hero-rail {
  gap: 12px;
}

.home-hero-rail article {
  padding: 16px;
}

.home-preview-shell {
  min-height: 100vh;
  padding: 12px;
}

.home-preview-frame {
  min-height: calc(100vh - 24px);
  padding: 14px;
  gap: 12px;
}

.home-preview-shell-playable .home-preview-stage-playable {
  grid-template-columns: minmax(0, 0.76fr) minmax(0, 1.24fr);
  gap: 14px;
  align-items: stretch;
}

.home-preview-stage {
  padding: 18px;
}

.home-preview-copy {
  gap: 0.75rem;
}

.home-preview-copy img {
  width: min(180px, 56%);
  margin-bottom: 4px;
}

.home-preview-eyebrow {
  color: var(--cyan);
  font-family: var(--font-sub);
  font-size: 0.84rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-preview-stage h2 {
  color: var(--text-primary);
  font-size: clamp(1.45rem, 3.2vw, 2rem);
  line-height: 1;
}

.home-preview-stage p {
  margin-top: 0;
  max-width: 30ch;
  font-size: 0.95rem;
}

.home-preview-bullets {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.home-preview-bullets span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--border-soft);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-secondary);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.home-preview-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 2px;
}

.home-preview-mini-frame {
  min-height: 312px;
  border-radius: 18px;
  border: 1px solid var(--border-cool);
  background: #000;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.home-preview-mini-frame iframe {
  width: 100%;
  min-height: 312px;
  border: 0;
  background: #000;
}

.home-preview-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 4px;
}

.home-preview-footer span,
.home-preview-footer a {
  color: var(--text-dim);
  font-size: 0.84rem;
}

.home-preview-footer a {
  font-weight: 700;
}

.game-shell-frame-wrap iframe {
  min-height: clamp(520px, 72vh, 820px);
}

@media (max-width: 1024px) {
  .home-hero-grid {
    gap: 24px;
  }

  .home-preview-shell-playable .home-preview-stage-playable {
    grid-template-columns: 1fr;
  }

  .home-preview-stage p {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .home-hero .hero-text h1 {
    font-size: clamp(2.1rem, 10vw, 2.9rem);
  }

  .home-hero-media-frame iframe {
    min-height: 250px;
    aspect-ratio: 16 / 11;
  }

  .home-preview-frame {
    min-height: calc(100vh - 24px);
    padding: 12px;
  }

  .home-preview-stage {
    padding: 14px;
  }

  .home-preview-actions {
    flex-direction: column;
  }

  .home-preview-actions .btn {
    width: 100%;
  }

  .home-preview-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .home-preview-mini-frame,
  .home-preview-mini-frame iframe {
    min-height: 260px;
  }

  .game-shell-frame-wrap iframe {
    min-height: 420px;
  }
}

/* 2026-04-18 editorial homepage redesign */
.nav {
  position: sticky;
  top: 0;
  z-index: 1200;
  background: rgba(9, 11, 16, 0.76);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(22px) saturate(150%);
  -webkit-backdrop-filter: blur(22px) saturate(150%);
}

.nav-inner {
  max-width: 1380px;
  min-height: 62px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sub);
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  color: var(--gold);
}

.nav-links {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-links > a,
.localized-page .nav-links > a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid transparent;
  color: rgba(246, 241, 231, 0.7);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.nav-links > a:hover,
.localized-page .nav-links > a:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
  transform: none;
}

.nav-links > a.current,
.nav-links > a.active,
.localized-page .nav-links > a.current {
  color: var(--text-primary);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border-color: rgba(105, 235, 255, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 14px 30px rgba(0, 0, 0, 0.24);
}

.nav-lang-btn {
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-primary);
  font-size: 0.82rem;
  font-weight: 700;
}

.nav-lang-menu {
  top: calc(100% + 10px);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(10, 12, 17, 0.94);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-panel);
}

.nav-lang-menu a {
  color: var(--text-secondary);
}

.nav-lang-menu a:hover,
.nav-lang-menu a.current {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
}

.footer {
  margin-top: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(11, 13, 18, 0.96), rgba(7, 8, 12, 0.98));
}

.footer-grid {
  gap: 28px;
}

.footer-col h4 {
  color: var(--text-primary);
  font-family: var(--font-sub);
  letter-spacing: 0.08em;
}

.footer-links a,
.footer-lang a,
.footer-bottom p {
  color: var(--text-secondary);
}

.footer-links a:hover,
.footer-lang a:hover,
.footer-links a.current,
.footer-lang a.current {
  color: var(--text-primary);
}

.home-page .container {
  width: min(100% - 40px, 1320px);
}

.home-main {
  display: block;
}

.home-editorial-hero {
  padding: clamp(48px, 7vw, 96px) 0 clamp(32px, 5vw, 64px);
}

.home-editorial-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  align-items: start;
  gap: 22px;
}

.home-hero-copyblock {
  position: relative;
  z-index: 1;
  max-width: none;
  margin: 0;
  padding: clamp(24px, 3vw, 34px);
  text-align: left;
  display: grid;
  gap: 16px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(18, 20, 28, 0.92), rgba(11, 13, 18, 0.98));
  box-shadow: var(--shadow-soft);
}

.home-kicker-row {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 10px;
}

.home-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 182, 71, 0.18);
  background: rgba(255, 182, 71, 0.08);
  color: var(--gold-bright);
  font-family: var(--font-sub);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: none;
}

.home-kicker-cyan {
  border-color: rgba(105, 235, 255, 0.2);
  background: rgba(105, 235, 255, 0.08);
  color: var(--cyan);
}

.home-overline {
  color: var(--cyan);
  font-family: var(--font-body);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-transform: none;
}

.home-page h1 {
  max-width: 12ch;
  margin: 0;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: clamp(2rem, 4.1vw, 3.5rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.04em;
  text-shadow: none;
  text-wrap: balance;
}

.home-lead {
  max-width: 60ch;
  margin: 0;
  color: var(--text-secondary);
  font-size: clamp(0.98rem, 1.05vw, 1.08rem);
}

.home-hero-actions,
.home-pill-links,
.home-inline-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 12px;
}

.home-pill-links a,
.home-inline-links a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-secondary);
  font-weight: 700;
}

.home-pill-links a:hover,
.home-inline-links a:hover {
  color: var(--text-primary);
  border-color: rgba(105, 235, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
}

.home-stat-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: none;
  margin: 6px 0 0;
}

.home-stat-strip article {
  padding: 18px 20px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow-soft);
}

.home-stat-strip strong {
  display: block;
  color: var(--text-primary);
  font-family: var(--font-sub);
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  letter-spacing: 0.02em;
}

.home-stat-strip span {
  display: block;
  margin-top: 4px;
  color: var(--text-secondary);
  font-size: 0.92rem;
}

.home-showcase-panel {
  min-height: 100%;
  padding: clamp(18px, 2.5vw, 28px);
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(18, 20, 28, 0.95), rgba(10, 12, 18, 0.98));
  box-shadow: var(--shadow-soft);
}

.home-showcase-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 18px;
}

.home-panel-eyebrow {
  color: var(--gold-bright);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: none;
}

.home-showcase-head h2 {
  max-width: 15ch;
  margin-top: 4px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: clamp(1.35rem, 2.2vw, 2.05rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.035em;
  text-transform: none;
  text-wrap: balance;
}

.home-panel-note {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(105, 235, 255, 0.16);
  background: rgba(105, 235, 255, 0.08);
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
}

.home-showcase-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: stretch;
}

.home-showcase-copy,
.home-showcase-frame {
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.03);
}

.home-showcase-copy {
  padding: 22px;
  display: grid;
  gap: 14px;
}

.home-showcase-copy p {
  color: var(--text-secondary);
  font-size: 0.98rem;
}

.home-bullet-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  list-style: none;
}

.home-bullet-list li {
  color: var(--text-secondary);
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  font-size: 0.95rem;
}

.home-showcase-frame {
  overflow: hidden;
  background: #000;
}

.home-showcase-card {
  display: flex;
  align-items: stretch;
  background:
    radial-gradient(circle at top right, rgba(105, 235, 255, 0.14), transparent 48%),
    linear-gradient(180deg, rgba(15, 18, 26, 0.96), rgba(8, 10, 15, 0.98));
}

.home-showcase-card-copy {
  display: grid;
  align-content: center;
  gap: 14px;
  width: 100%;
  padding: clamp(24px, 3vw, 34px);
}

.home-showcase-card h3 {
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: clamp(1.3rem, 2vw, 1.85rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.home-showcase-card p {
  color: var(--text-secondary);
}

.home-showcase-frame iframe {
  width: 100%;
  min-height: 520px;
  border: 0;
  background: #000;
}

.home-story-section {
  padding: clamp(24px, 4.2vw, 54px) 0;
}

.home-section-header {
  max-width: 860px;
  margin: 0 auto 26px;
  text-align: center;
}

.home-section-header h2 {
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: clamp(1.65rem, 2.5vw, 2.35rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.035em;
  text-transform: none;
  text-wrap: balance;
}

.home-section-header p {
  color: var(--text-secondary);
  font-size: 1rem;
}

.home-route-grid,
.home-library-grid,
.home-answer-grid,
.home-language-grid,
.home-trust-grid {
  display: grid;
  gap: 16px;
}

.home-route-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.home-library-grid,
.home-answer-grid,
.home-trust-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-language-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.home-route-card,
.home-library-card,
.home-answer-card,
.home-trust-card,
.home-language-card,
.home-series-card {
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow-soft);
}

.home-route-card,
.home-library-card,
.home-answer-card,
.home-trust-card {
  padding: 24px;
  display: grid;
  gap: 12px;
}

.home-card-kicker {
  color: var(--cyan);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-route-card h3,
.home-library-card h3,
.home-answer-card h3,
.home-trust-card h3,
.home-series-card h3 {
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

.home-route-card p,
.home-library-card p,
.home-answer-card p,
.home-trust-card p,
.home-series-card p {
  font-size: 0.98rem;
}

.home-route-card a,
.home-library-card a,
.home-answer-card a,
.home-trust-card a,
.home-series-card a,
.home-language-card {
  width: fit-content;
  color: var(--gold-bright);
  font-weight: 800;
}

.home-route-card a:hover,
.home-library-card a:hover,
.home-answer-card a:hover,
.home-trust-card a:hover,
.home-series-card a:hover,
.home-language-card:hover {
  color: var(--cyan);
}

.home-series-grid {
  display: grid;
  gap: 16px;
}

.home-series-card {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  gap: 20px;
  padding: 26px;
  align-items: start;
}

.home-series-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 84px;
  height: 84px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 182, 71, 0.2), rgba(255, 182, 71, 0.06));
  border: 1px solid rgba(255, 182, 71, 0.18);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 2rem;
  font-weight: 900;
}

.home-language-card {
  min-height: 128px;
  padding: 22px;
  display: grid;
  align-content: end;
  gap: 8px;
}

.home-language-card strong {
  color: var(--text-primary);
  font-size: 1.1rem;
}

.home-language-card span {
  color: var(--text-secondary);
}

.home-faq-section .faq-item {
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.preview-editorial-shell {
  min-height: 100vh;
  padding: 14px;
}

.preview-editorial-card {
  min-height: calc(100vh - 28px);
  padding: 16px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(17, 19, 26, 0.96), rgba(9, 11, 16, 0.98));
  box-shadow: var(--shadow-panel);
}

.preview-editorial-head,
.preview-editorial-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.preview-editorial-head {
  margin-bottom: 14px;
}

.preview-editorial-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 14px;
  align-items: stretch;
}

.preview-editorial-copy,
.preview-editorial-frame {
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.preview-editorial-copy {
  padding: 18px;
  display: grid;
  gap: 12px;
}

.preview-editorial-copy img {
  width: min(168px, 56%);
}

.preview-kicker {
  color: var(--cyan);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.preview-editorial-copy h1 {
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: clamp(1.25rem, 1.8vw, 1.65rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  text-shadow: none;
  text-wrap: balance;
}

.preview-inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.preview-editorial-frame {
  overflow: hidden;
  background: #000;
}

.preview-editorial-frame iframe {
  width: 100%;
  min-height: 340px;
  height: 100%;
  border: 0;
  background: #000;
}

.preview-editorial-foot {
  margin-top: 14px;
}

.preview-badge {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 182, 71, 0.18);
  background: rgba(255, 182, 71, 0.08);
  color: var(--gold-bright);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.preview-badge-cyan {
  border-color: rgba(105, 235, 255, 0.18);
  background: rgba(105, 235, 255, 0.08);
  color: var(--cyan);
}

.preview-editorial-foot span,
.preview-editorial-foot a {
  color: var(--text-dim);
  font-size: 0.82rem;
}

.preview-editorial-foot a {
  font-weight: 700;
}

@media (max-width: 1100px) {
  .home-route-grid,
  .home-library-grid,
  .home-answer-grid,
  .home-trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-language-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .home-editorial-shell,
  .home-showcase-grid,
  .preview-editorial-grid {
    grid-template-columns: 1fr;
  }

  .home-showcase-head {
    flex-direction: column;
  }
}

@media (max-width: 720px) {
  .nav-inner {
    padding: 0 16px;
  }

  .home-page .container {
    width: min(100% - 24px, 1320px);
  }

  .home-page h1 {
    max-width: 11ch;
    margin: 0 auto;
    font-size: clamp(1.9rem, 8.2vw, 2.45rem);
  }

  .home-kicker-row,
  .home-hero-actions,
  .home-pill-links,
  .home-inline-links,
  .preview-inline-links {
    justify-content: center;
    flex-direction: column;
    align-items: stretch;
  }

  .home-hero-actions .btn,
  .preview-inline-links .btn {
    width: 100%;
  }

  .home-stat-strip,
  .home-route-grid,
  .home-library-grid,
  .home-answer-grid,
  .home-trust-grid,
  .home-language-grid,
  .home-bullet-list {
    grid-template-columns: 1fr;
  }

  .home-series-card {
    grid-template-columns: 1fr;
  }

  .home-series-number {
    width: 72px;
    height: 72px;
  }

  .home-showcase-frame iframe {
    min-height: 300px;
  }

  .preview-editorial-shell {
    padding: 10px;
  }

  .preview-editorial-card {
    min-height: calc(100vh - 20px);
    padding: 12px;
  }

  .preview-editorial-head,
  .preview-editorial-foot {
    flex-direction: column;
    align-items: flex-start;
  }

  .preview-editorial-frame iframe {
    min-height: 260px;
  }
}

/* 2026-04-18 mobile nav closure fix */
@media (min-width: 961px) {
  .nav-toggle {
    display: none;
  }
}

@media (max-width: 960px) {
  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-primary);
    font-size: 1.25rem;
  }

  .nav-links,
  .localized-page .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 12px;
    right: 12px;
    margin-left: 0;
    padding: 14px;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(8, 10, 15, 0.95);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow-panel);
  }

  .nav-links.open,
  .localized-page .nav-links.open {
    display: flex;
  }

  .nav-links > a,
  .localized-page .nav-links > a {
    justify-content: flex-start;
    min-height: 46px;
    padding: 0 16px;
  }

  .nav-lang-dropdown,
  .nav-lang-btn {
    width: 100%;
  }

  .nav-lang-btn {
    justify-content: space-between;
  }
}


/* 2026-04-18 product guide and browser play refinement */
.product-page .container {
  width: min(100% - 40px, 1320px);
}

.product-hero {
  padding: clamp(42px, 6vw, 84px) 0 clamp(28px, 4vw, 52px);
}

.product-hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.84fr);
  gap: 22px;
  align-items: start;
}

.product-surface {
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(18, 20, 28, 0.94), rgba(10, 12, 18, 0.98));
  box-shadow: var(--shadow-soft);
}

.product-hero-copy,
.product-hero-rail {
  padding: clamp(24px, 3vw, 34px);
}

.product-eyebrow {
  color: var(--cyan);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: none;
}

.product-chip-row,
.product-link-row,
.product-mini-link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.product-chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-secondary);
  font-size: 0.82rem;
  font-weight: 800;
}

.product-chip-highlight {
  border-color: rgba(255, 182, 71, 0.18);
  background: rgba(255, 182, 71, 0.08);
  color: var(--gold-bright);
}

.product-chip-cyan {
  border-color: rgba(105, 235, 255, 0.18);
  background: rgba(105, 235, 255, 0.08);
  color: var(--cyan);
}

.product-hero-copy h1,
.product-section-header h2,
.product-card h3,
.product-hero-rail h2 {
  font-family: var(--font-body);
  font-weight: 800;
  letter-spacing: -0.04em;
  text-wrap: balance;
  color: var(--text-primary);
}

.product-hero-copy h1 {
  margin: 0;
  font-size: clamp(2.3rem, 4.3vw, 4rem);
  line-height: 0.96;
}

.product-hero-copy .hero-sub,
.product-hero-rail p,
.product-section-header p,
.product-card p,
.product-card li {
  color: var(--text-secondary);
}

.product-hero-copy .hero-sub {
  max-width: 58ch;
  margin: 0;
  font-size: clamp(0.98rem, 1.15vw, 1.08rem);
}

.product-hero-rail h2 {
  margin: 0;
  font-size: clamp(1.45rem, 2vw, 2.1rem);
  line-height: 1.02;
}

.product-search-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.product-search-list li {
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.product-search-list strong {
  display: block;
  margin-bottom: 4px;
  color: var(--text-primary);
  font-size: 0.98rem;
}

.product-link-row .btn,
.product-mini-link-row a {
  width: fit-content;
}

.product-section {
  padding: clamp(24px, 4vw, 54px) 0;
}

.product-section-header {
  max-width: 860px;
  margin: 0 auto 24px;
  text-align: center;
}

.product-section-header h2 {
  margin-bottom: 10px;
  font-size: clamp(2rem, 3.2vw, 3.25rem);
  line-height: 1.02;
}

.product-grid-2,
.product-grid-3,
.product-faq-grid {
  display: grid;
  gap: 16px;
}

.product-grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.product-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-faq-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.product-card {
  padding: 24px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow-soft);
}

.product-card h3 {
  margin-bottom: 10px;
  font-size: 1.28rem;
  line-height: 1.08;
}

.product-card ul {
  margin: 0;
  padding-left: 18px;
}

.product-stage-card {
  padding: 20px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(18, 20, 28, 0.96), rgba(9, 11, 16, 0.98));
  box-shadow: var(--shadow-soft);
}

.product-stage-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.product-stage-head strong {
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 800;
}

.product-stage-note {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(105, 235, 255, 0.18);
  background: rgba(105, 235, 255, 0.08);
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 800;
}

.product-stage-frame {
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #000;
}

.product-stage-frame-shell {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
  padding: clamp(24px, 3vw, 40px);
  background:
    radial-gradient(circle at top center, rgba(212, 160, 23, 0.18), transparent 40%),
    linear-gradient(180deg, rgba(16, 19, 27, 0.96), rgba(9, 11, 16, 0.98));
}

.product-stage-frame-shell.is-loaded {
  padding: 0;
  background: #000;
}

.product-stage-placeholder {
  display: grid;
  gap: 12px;
  max-width: 42rem;
  text-align: center;
}

.product-stage-placeholder strong {
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: clamp(1.1rem, 1.8vw, 1.45rem);
  font-weight: 800;
  line-height: 1.12;
}

.product-stage-placeholder p {
  color: var(--text-secondary);
}

.product-stage-frame iframe {
  display: block;
  width: 100%;
  min-height: 720px;
  border: 0;
  background: #000;
}

.product-stage-actions {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.product-source-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.product-source-list li {
  padding: 12px 14px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.product-note {
  margin-top: 18px;
  padding: 18px 20px;
  border-radius: 24px;
  border: 1px solid rgba(255, 182, 71, 0.16);
  background: rgba(255, 182, 71, 0.08);
}

.product-note strong {
  display: block;
  margin-bottom: 6px;
  color: var(--gold-bright);
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  text-transform: none;
}

.product-page .faq-item {
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.product-page .hero-ctas,
.product-page .inline-link-list,
.product-page .page-anchor-grid {
  display: none;
}

@media (max-width: 1100px) {
  .product-hero-shell,
  .product-grid-3 {
    grid-template-columns: 1fr;
  }

  .product-grid-2,
  .product-faq-grid {
    grid-template-columns: 1fr;
  }
}

/* Cookie Consent Banner */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-elevated);
  border-top: 1px solid var(--border-strong);
  padding: var(--space-md, 1rem) var(--space-xl, 2rem);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg, 1.4rem);
  flex-wrap: wrap;
  z-index: 10000;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.cookie-consent p {
  margin: 0;
  max-width: 640px;
}
.cookie-consent a {
  color: var(--gold);
  text-decoration: underline;
}
.cookie-consent button {
  background: var(--gold);
  color: var(--bg-primary);
  border: none;
  padding: 0.6rem 1.6rem;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s ease, box-shadow 0.15s ease;
}
.cookie-consent button:hover {
  background: var(--gold-bright);
  box-shadow: var(--shadow-gold);
}

/* Blog Card Styles */
.blog-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.blog-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(18, 20, 28, 0.95), rgba(10, 12, 18, 0.98));
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 14px;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.blog-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 182, 71, 0.24);
  box-shadow: var(--shadow-soft), var(--shadow-gold);
}

.blog-card h3 {
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.025em;
}

.blog-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.blog-card .btn-sm {
  justify-self: start;
  margin-top: 4px;
}

@media (max-width: 1100px) {
  .blog-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .blog-card-grid {
    grid-template-columns: 1fr;
  }

  .blog-card {
    padding: 22px;
  }
}

@media (max-width: 720px) {
  .product-page .container {
    width: min(100% - 24px, 1320px);
  }

  .product-hero-copy h1 {
    font-size: clamp(2.25rem, 10vw, 3.2rem);
  }

  .product-stage-head,
  .product-link-row,
  .product-mini-link-row,
  .product-stage-actions,
  .product-chip-row {
    flex-direction: column;
    align-items: stretch;
  }

  .product-link-row .btn,
  .product-mini-link-row a,
  .product-stage-actions .btn {
    width: 100%;
  }

  .product-stage-frame iframe {
    min-height: 420px;
  }
}
