@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@400;500;700;900&family=Orbitron:wght@500;700;800&family=ZCOOL+KuaiLe&display=swap");

:root {
  --bg: #020202;
  --bg-elevated: rgba(8, 8, 10, 0.92);
  --panel: rgba(11, 12, 16, 0.78);
  --panel-strong: rgba(14, 15, 20, 0.94);
  --line: rgba(201, 255, 24, 0.16);
  --line-strong: rgba(201, 255, 24, 0.34);
  --text: #f9ffef;
  --muted: rgba(232, 241, 211, 0.74);
  --soft: rgba(232, 241, 211, 0.54);
  --brand: #c9ff18;
  --brand-deep: #9ce600;
  --blue: #dfff72;
  --purple: #b7ff47;
  --pink: #efff96;
  --danger: #fff36a;
  --shadow: 0 18px 70px rgba(0, 0, 0, 0.35);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --shell: min(1360px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: "Noto Sans SC", sans-serif;
  background:
    radial-gradient(circle at 22% 12%, rgba(255, 53, 181, 0.08), transparent 22%),
    radial-gradient(circle at 82% 18%, rgba(100, 215, 255, 0.05), transparent 20%),
    radial-gradient(circle at 50% 120%, rgba(201, 255, 24, 0.04), transparent 26%),
    linear-gradient(180deg, #010101 0%, #050507 48%, #020203 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at center, black 38%, transparent 88%);
  opacity: 0.38;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

.shell {
  width: var(--shell);
  margin: 0 auto;
}

.site-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.08;
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.12) 0.7px, transparent 0.7px);
  background-size: 4px 4px;
  mix-blend-mode: soft-light;
}

.ambient {
  position: fixed;
  border-radius: 999px;
  filter: blur(70px);
  pointer-events: none;
  z-index: 0;
}

.ambient-a {
  width: 260px;
  height: 260px;
  left: -40px;
  top: 80px;
  background: rgba(201, 255, 24, 0.06);
}

.ambient-b {
  width: 280px;
  height: 280px;
  right: -70px;
  top: 140px;
  background: rgba(100, 215, 255, 0.06);
}

.ambient-c {
  width: 320px;
  height: 320px;
  right: 12%;
  bottom: 2%;
  background: rgba(255, 53, 181, 0.07);
}

.panel,
.inset-panel,
.metric-card,
.workflow-card,
.style-card,
.poster-style,
.plaza-item,
.seg-chip,
.chip-link,
.example-card,
.mini-option,
.poster-thumb {
  position: relative;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(18, 25, 21, 0.94), rgba(10, 15, 12, 0.86));
  box-shadow: var(--shadow);
}

.panel {
  border-radius: var(--radius-xl);
}

.inset-panel {
  border-radius: var(--radius-lg);
}

.site-header,
.page-main,
.site-footer,
main {
  position: relative;
  z-index: 1;
}

.site-header {
  position: sticky;
  top: 12px;
  z-index: 30;
  padding: 12px 0 0;
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 20px;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.site-header.is-scrolled .nav-shell {
  background: rgba(7, 11, 9, 0.92);
  border-color: var(--line-strong);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 188px;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  overflow: hidden;
  background: #d7ff14;
  box-shadow: 0 0 30px rgba(201, 255, 24, 0.34);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.brand-text {
  font-family: "Orbitron", sans-serif;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.16em;
}

.main-nav {
  display: flex;
  gap: 28px;
  justify-content: center;
  flex: 1;
  min-width: 0;
}

.main-nav a {
  color: var(--muted);
  font-size: 14px;
  transition: color 0.24s ease, transform 0.24s ease;
}

.main-nav a:hover {
  color: var(--text);
  transform: translateY(-1px);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.meta-pill,
.eyebrow,
.tag-row span,
.source-strip span,
.signal-band span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.02em;
}

.meta-pill.accent,
.eyebrow {
  border-color: rgba(201, 255, 24, 0.22);
  background: rgba(201, 255, 24, 0.09);
  color: #f3ffd0;
}

.eyebrow {
  font-family: "Orbitron", sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow.subdued {
  background: rgba(100, 215, 255, 0.08);
  border-color: rgba(100, 215, 255, 0.18);
  color: #d2f7ff;
}

.button,
.icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 16px;
  border: 1px solid transparent;
  transition: transform 0.24s ease, border-color 0.24s ease, background 0.24s ease, box-shadow 0.24s ease;
}

.button:hover,
.icon-button:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: #090b05;
  background: linear-gradient(135deg, #efff67, var(--brand));
  border-color: rgba(215, 255, 20, 0.56);
  box-shadow: 0 0 30px rgba(215, 255, 20, 0.34), 0 0 54px rgba(255, 57, 182, 0.08);
}

.button.is-loading {
  position: relative;
  padding-left: 44px;
  box-shadow: 0 0 34px rgba(201, 255, 24, 0.38), inset 0 0 0 1px rgba(255, 255, 255, 0.16);
  animation: parsePulse 1.2s ease-in-out infinite;
}

.button.is-loading::before {
  content: "";
  position: absolute;
  left: 18px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid rgba(8, 10, 4, 0.22);
  border-top-color: #080a04;
  border-right-color: #080a04;
  animation: parseSpin 0.82s linear infinite;
}

.button.is-loading::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.14) 45%, transparent 100%);
  transform: translateX(-110%);
  animation: parseSweep 1.5s ease-in-out infinite;
}

@keyframes parseSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes parsePulse {
  0%,
  100% {
    transform: translateY(0);
    filter: saturate(1);
  }
  50% {
    transform: translateY(-1px);
    filter: saturate(1.08);
  }
}

@keyframes parseSweep {
  0% {
    transform: translateX(-110%);
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  100% {
    transform: translateX(110%);
    opacity: 0;
  }
}

.button.ghost,
.icon-button {
  color: #f8ffe8;
  background: linear-gradient(180deg, rgba(255, 53, 181, 0.05), rgba(215, 255, 20, 0.03));
  border-color: rgba(215, 255, 20, 0.16);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.icon-button {
  min-width: 48px;
}

.button.full-width {
  width: 100%;
}

.button.disabled,
.button[aria-disabled="true"] {
  pointer-events: none;
  opacity: 0.42;
}

.hero {
  display: grid;
  padding-top: 34px;
}

.hero-home {
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 430px);
  gap: 24px;
  align-items: stretch;
}

.hero-core,
.hero-aside {
  position: relative;
}

.hero-core {
  min-height: calc(100vh - 150px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

@media (min-width: 901px) {
  .hero-home .hero-core {
    justify-content: flex-start;
    padding-top: clamp(40px, 7vh, 88px);
  }
}

.hero-core::before {
  content: "";
  position: absolute;
  width: min(760px, 92%);
  height: 240px;
  left: 50%;
  top: 26%;
  transform: translateX(-50%);
  background:
    radial-gradient(circle at center, rgba(171, 255, 117, 0.15), transparent 54%),
    linear-gradient(90deg, transparent, rgba(100, 215, 255, 0.18), transparent);
  filter: blur(18px);
  pointer-events: none;
}

.hero-core > * {
  position: relative;
  z-index: 1;
}

h1,
.page-title,
.section-heading h2,
.mini-heading h2,
.preview-copy h3,
.project-sheet h2,
.narrative-sheet h2 {
  margin: 0;
  font-family: "Noto Sans SC", sans-serif;
  font-weight: 900;
  line-height: 1.08;
  color: #f8fff3;
}

h1,
.page-title {
  font-size: clamp(42px, 5.8vw, 84px);
  letter-spacing: 0.01em;
}

#heroTitle {
  white-space: nowrap;
  font-size: clamp(36px, 4.9vw, 72px);
  letter-spacing: 0;
}

.hero-title-lead,
.hero-title-accent {
  display: block;
  font-family: "Orbitron", sans-serif;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.hero-title-lead {
  font-size: clamp(48px, 6vw, 88px);
  line-height: 0.96;
  color: #f8ffe8;
  text-shadow: 0 0 18px rgba(255, 255, 255, 0.08);
}

.hero-title-accent {
  font-size: clamp(52px, 6.6vw, 96px);
  line-height: 0.92;
  color: #ff35b5;
  text-shadow: 0 0 28px rgba(255, 53, 181, 0.34);
}

.hero-copy,
.page-subtitle,
.section-heading p,
.muted,
.preview-copy p,
.group-head p,
.album-meta p,
.plaza-info p,
.support-line {
  color: var(--muted);
  line-height: 1.9;
}

.hero-copy {
  max-width: 760px;
  margin: 18px 0 0;
  font-size: 17px;
}

.chain-tabs,
.example-grid,
.action-row,
.tag-row,
.source-strip,
.keyword-row,
.signal-band,
.poster-choice-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.chain-tabs {
  margin-top: 28px;
  justify-content: center;
}

.chain-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 150px;
  min-height: 56px;
  padding: 0 20px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  font-weight: 700;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.chain-logo {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  overflow: hidden;
  background: rgba(4, 6, 3, 0.9);
  border: 1px solid rgba(201, 255, 24, 0.12);
  flex-shrink: 0;
}

.chain-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.chain-tab.active {
  border-color: rgba(201, 255, 24, 0.48);
  box-shadow: 0 0 28px rgba(201, 255, 24, 0.18);
  background: linear-gradient(180deg, rgba(201, 255, 24, 0.16), rgba(255, 255, 255, 0.03));
}

.hero-search {
  width: min(920px, 100%);
  margin-top: 22px;
  padding: 20px;
  text-align: left;
}

.hero-search-head,
.hero-search-row,
.section-heading.split,
.preview-heading,
.mini-heading,
.group-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.field-label {
  font-family: "Orbitron", sans-serif;
  color: var(--brand);
  font-size: 13px;
  letter-spacing: 0.14em;
}

.field-hint {
  color: var(--soft);
  font-size: 13px;
}

.hero-search-row {
  margin-top: 14px;
}

.hero-input {
  flex: 1;
  min-height: 64px;
  padding: 0 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 11, 8, 0.72);
  color: var(--text);
  outline: none;
}

.hero-input::placeholder {
  color: rgba(220, 239, 217, 0.42);
}

.support-line {
  margin: 14px 0 0;
  font-size: 13px;
}

.example-strip {
  margin-top: 18px;
  width: min(920px, 100%);
}

.example-title {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 14px;
}

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

.example-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border-radius: 22px;
  color: var(--text);
}

.example-logo,
.project-avatar,
.mini-logo,
.profile-logo {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  font-family: "Orbitron", sans-serif;
  font-weight: 800;
  color: #041108;
}

.example-logo {
  overflow: hidden;
  background: rgba(4, 6, 3, 0.9);
}

.example-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.project-avatar,
.mini-logo,
.profile-logo {
  background: linear-gradient(135deg, var(--brand), #d6ff8b);
}

.project-avatar.has-logo {
  overflow: hidden;
  padding: 6px;
  background: linear-gradient(135deg, rgba(242, 255, 226, 0.96), rgba(201, 255, 24, 0.22));
  box-shadow: 0 10px 22px rgba(201, 255, 24, 0.18);
}

.project-avatar.has-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  border-radius: 12px;
}

.example-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.example-meta strong {
  font-size: 14px;
}

.example-meta span {
  color: var(--soft);
  font-size: 12px;
}

.hero-aside {
  padding: 20px;
  overflow: hidden;
}

.console-ring {
  position: absolute;
  width: 280px;
  height: 280px;
  top: -50px;
  right: -20px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(171, 255, 117, 0.18), transparent 44%),
    radial-gradient(circle, rgba(100, 215, 255, 0.18), transparent 62%);
  filter: blur(10px);
}

.aside-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap;
}

.aside-head .eyebrow,
.aside-head .meta-pill {
  white-space: nowrap;
  flex: 0 1 auto;
  min-width: 0;
  padding: 6px 12px;
  font-size: 11px;
}

.mini-project,
.profile-summary,
.sheet-top {
  display: flex;
  align-items: center;
  gap: 16px;
}

.mini-project {
  margin-top: 22px;
}

.mini-project strong,
.profile-summary strong {
  display: block;
  margin-bottom: 4px;
  font-size: 22px;
}

.mini-project p,
.profile-summary p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.metric-grid.compact {
  margin-top: 16px;
}

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

.metric-card span,
.story-list li span,
.soul-card span,
.poster-style-card span,
.plan-table div span,
.prompt-box p,
.lyric-block span,
.group-title {
  display: block;
  margin-bottom: 8px;
  color: var(--soft);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.metric-card strong,
.story-list li strong,
.soul-card strong,
.poster-style-card strong,
.plan-table div strong {
  font-size: 16px;
}

.story-block,
.cover-copy,
.poster-style-card,
.prompt-box {
  margin-top: 20px;
}

.narrative-note-card {
  display: grid;
  gap: 8px;
  margin-top: 14px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.narrative-note-card span {
  color: var(--muted);
  font-size: 13px;
}

.narrative-note-card strong {
  color: #efffe3;
  line-height: 1.8;
  font-size: 15px;
  font-weight: 600;
}

.story-block h3,
.cover-copy strong,
.group-head h3 {
  margin: 0 0 14px;
  font-size: 18px;
}

.story-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.story-list li {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.section {
  padding: 28px 0 0;
}

.section-heading {
  margin-bottom: 26px;
}

.section-heading h2 {
  font-size: clamp(30px, 4vw, 56px);
  margin-top: 16px;
}

.section-heading p {
  max-width: 880px;
  margin: 14px 0 0;
}

.workflow-grid,
.result-preview-grid,
.style-grid,
.poster-grid,
.plaza-grid {
  display: grid;
  gap: 18px;
}

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

.workflow-card {
  padding: 22px;
  border-radius: 24px;
}

.step-no {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--brand);
  font-family: "Orbitron", sans-serif;
  letter-spacing: 0.14em;
}

.workflow-card h3 {
  margin: 0 0 10px;
}

.workflow-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.preview-analysis,
.analysis-layout,
.studio-layout,
.creating-layout,
.result-grid {
  display: grid;
  gap: 22px;
}

.preview-analysis {
  grid-template-columns: 0.9fr 1.1fr;
  padding: 22px;
}

.preview-column,
.project-sheet,
.narrative-sheet,
.studio-preview-pane,
.studio-panel,
.creating-panel,
.keyword-panel,
.music-plan,
.poster-panel {
  padding: 22px;
}

.copy-line {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}

.copy-line span {
  flex: 1;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.copy-line .icon-button {
  flex-shrink: 0;
}

.link-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.chip-link {
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--text);
}

.narrative-stack,
.soul-grid,
.progress-list,
.plan-table {
  display: grid;
  gap: 14px;
}

.narrative-stack article,
.soul-card,
.plan-table div,
.progress-item {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.soul-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 18px;
}

.soul-card.wide {
  grid-column: 1 / -1;
}

.source-strip {
  margin-top: 18px;
}

.narrative-input-box {
  margin-top: 18px;
  padding: 18px;
}

.compact-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.compact-head h3 {
  margin: 0;
}

.compact-head p {
  margin: 6px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.narrative-textarea {
  width: 100%;
  min-height: 132px;
  margin-top: 14px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(171, 255, 117, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: #efffe3;
  resize: vertical;
  outline: none;
  line-height: 1.8;
  font: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.narrative-textarea::placeholder {
  color: rgba(239, 255, 227, 0.42);
}

.narrative-textarea:focus {
  border-color: rgba(171, 255, 117, 0.34);
  box-shadow: 0 0 0 4px rgba(171, 255, 117, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.action-row {
  margin-top: 22px;
}

.top-gap {
  margin-top: 28px;
}

.wallet-gate {
  display: grid;
  gap: 18px;
  padding: 20px;
  border-radius: 22px;
  border: 1px solid rgba(255, 217, 95, 0.16);
  background: linear-gradient(180deg, rgba(255, 217, 95, 0.06), rgba(255, 255, 255, 0.02));
}

.wallet-gate.is-connected {
  border-color: rgba(171, 255, 117, 0.22);
  background: linear-gradient(180deg, rgba(171, 255, 117, 0.08), rgba(255, 255, 255, 0.02));
}

.wallet-gate-copy {
  display: grid;
  gap: 8px;
}

.wallet-gate-copy strong {
  font-size: 20px;
  color: #f7fff1;
}

.wallet-gate-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.wallet-gate-actions {
  margin-top: 0;
}

.studio-preview {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 22px;
}

.studio-card {
  padding: 22px;
}

.cover-preview {
  min-height: 560px;
}

.cover-frame,
.album-stage {
  position: relative;
  min-height: 380px;
  border-radius: 28px;
  background:
    radial-gradient(circle at center, rgba(171, 255, 117, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.cover-frame {
  background:
    linear-gradient(180deg, rgba(3, 8, 5, 0.08), rgba(3, 8, 5, 0.38)),
    radial-gradient(circle at center, rgba(171, 255, 117, 0.14), transparent 34%),
    url("./assets/covers/hero-cover-robin.webp") center/cover no-repeat;
}

.cover-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 42%, rgba(171, 255, 117, 0.14), transparent 24%),
    linear-gradient(180deg, rgba(5, 10, 7, 0.02), rgba(5, 10, 7, 0.22));
  pointer-events: none;
}

.cover-disc,
.album-cover::before,
.album-art::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 34%, rgba(255, 255, 255, 0.22), transparent 20%),
    linear-gradient(135deg, rgba(171, 255, 117, 0.46), rgba(100, 215, 255, 0.38), rgba(143, 123, 255, 0.34));
  box-shadow: 0 0 28px rgba(171, 255, 117, 0.16);
  opacity: 0;
  pointer-events: none;
}

.cover-disc {
  mix-blend-mode: screen;
  opacity: 0.24;
}

.cover-poster,
.album-cover::after,
.album-art::after,
.media-frame::before,
.plaza-cover::before,
.preview-cover::before,
.plaza-card-card::before,
.big-shape {
  content: "";
  position: absolute;
  border-radius: 24px;
  background:
    radial-gradient(circle at 30% 24%, rgba(255, 255, 255, 0.18), transparent 18%),
    linear-gradient(180deg, rgba(171, 255, 117, 0.42), rgba(100, 215, 255, 0.46), rgba(143, 123, 255, 0.42));
  box-shadow: 0 0 24px rgba(100, 215, 255, 0.12);
}

.cover-poster {
  width: 150px;
  height: 210px;
  right: 18px;
  bottom: 18px;
  background:
    linear-gradient(180deg, rgba(3, 8, 5, 0.02), rgba(3, 8, 5, 0.18)),
    url("./assets/covers/hero-poster-robin.webp") center/cover no-repeat;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.album-meta h2,
.cover-copy strong {
  font-family: "Noto Sans SC", sans-serif;
  font-weight: 900;
  font-size: 32px;
  line-height: 1.12;
}

.keyword-row span,
.signal-band span {
  background: rgba(171, 255, 117, 0.08);
  border-color: rgba(171, 255, 117, 0.12);
}

.settings-preview {
  display: grid;
  gap: 20px;
}

.setting-group {
  display: grid;
  gap: 14px;
}

.group-head h3 {
  margin-bottom: 4px;
}

.group-head p {
  margin: 0;
  font-size: 14px;
}

.segmented-row {
  display: flex;
  gap: 10px;
}

.segmented-row.wrap {
  flex-wrap: wrap;
}

.segmented-row.compact .seg-chip {
  min-height: 40px;
  padding: 0 14px;
}

.seg-chip {
  min-height: 46px;
  padding: 0 16px;
  border-radius: 14px;
  color: var(--text);
}

.seg-chip.active,
.mini-option.active,
.poster-thumb.active,
.style-card.active {
  border-color: rgba(171, 255, 117, 0.62);
  box-shadow:
    0 0 0 1px rgba(171, 255, 117, 0.18) inset,
    0 0 24px rgba(171, 255, 117, 0.2);
  background: linear-gradient(180deg, rgba(171, 255, 117, 0.22), rgba(16, 23, 19, 0.92));
}

.seg-chip.active,
.mini-option.active {
  color: #f7fff1;
  font-weight: 700;
}

.style-card.active strong,
.style-card.active span {
  color: #f7fff1;
}

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

.style-card,
.poster-style,
.mini-option {
  padding: 18px;
  border-radius: 22px;
  color: var(--text);
  text-align: left;
}

.style-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 15px;
}

.style-card span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}

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

.mini-option {
  min-height: 68px;
}

.poster-choice-row {
  display: flex;
}

.poster-thumb,
.poster-style {
  overflow: hidden;
}

.poster-thumb {
  width: 106px;
  height: 132px;
  border-radius: 18px;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.poster-thumb::before,
.poster-style::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 10, 7, 0.04), rgba(5, 10, 7, 0.26)),
    radial-gradient(circle at 24% 18%, rgba(255, 255, 255, 0.2), transparent 16%);
}

.poster-style::after {
  content: "";
  position: absolute;
  inset: auto 14px 14px 14px;
  height: 56px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(5, 10, 7, 0), rgba(5, 10, 7, 0.72));
  z-index: 0;
}

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

.poster-style {
  position: relative;
  min-height: 142px;
  display: flex;
  align-items: flex-end;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.poster-style:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 24px rgba(171, 255, 117, 0.12);
}

.poster-style span {
  position: relative;
  z-index: 1;
  font-size: 14px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
}

.poster-style.active {
  transform: translateY(-2px);
  border-color: rgba(171, 255, 117, 0.68);
  box-shadow:
    0 0 0 1px rgba(171, 255, 117, 0.2) inset,
    0 0 28px rgba(171, 255, 117, 0.22);
}

.poster-style.active::before {
  background:
    linear-gradient(180deg, rgba(5, 10, 7, 0.01), rgba(5, 10, 7, 0.12)),
    radial-gradient(circle at 24% 18%, rgba(255, 255, 255, 0.26), transparent 16%);
}

.poster-style.active::after {
  background: linear-gradient(180deg, rgba(5, 10, 7, 0.02), rgba(5, 10, 7, 0.52));
}

.poster-style.active span {
  color: #f7fff1;
  font-weight: 700;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(5, 10, 7, 0.38);
  border: 1px solid rgba(171, 255, 117, 0.32);
  box-shadow: 0 0 18px rgba(171, 255, 117, 0.12);
}

.poster-style-blackgold {
  background-image: url("./assets/svg/style-blackgold.svg");
}

.poster-style-neon {
  background-image: url("./assets/svg/style-neon-cyber.svg");
}

.poster-style-meme {
  background-image: url("./assets/svg/style-meme-cartoon.svg");
}

.poster-style-epic {
  background-image: url("./assets/svg/style-cinematic-epic.svg");
}

.poster-style-guochao {
  background-image: url("./assets/svg/style-guochao.svg");
}

.poster-style-future {
  background-image: url("./assets/svg/style-future-tech.svg");
}

.analysis-layout {
  grid-template-columns: 0.82fr 1.18fr;
}

.creating-layout {
  grid-template-columns: 1fr;
  align-items: stretch;
}

.progress-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
}

.progress-item.done {
  border-color: rgba(171, 255, 117, 0.16);
  color: #e8ffd5;
}

.progress-item.active {
  border-color: rgba(100, 215, 255, 0.26);
  box-shadow: 0 0 24px rgba(100, 215, 255, 0.1);
  color: var(--text);
}

.progress-mark {
  width: 24px;
  text-align: center;
  color: var(--brand);
}

.dynamic-sentence {
  margin-top: 20px;
  padding: 20px;
  font-size: 18px;
  color: #e8ffd5;
}

.generation-ritual {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
  align-items: center;
  margin-top: 18px;
  padding: 22px;
}

.generation-ritual.is-complete {
  border-color: rgba(171, 255, 117, 0.24);
  box-shadow: 0 0 28px rgba(171, 255, 117, 0.12);
}

.ritual-core {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 35%, rgba(255,255,255,0.35), transparent 24%),
    radial-gradient(circle, rgba(171, 255, 117, 0.34), rgba(100, 215, 255, 0.12) 54%, transparent 72%);
  box-shadow: 0 0 36px rgba(171, 255, 117, 0.24);
  animation: ritualBreath 2.6s ease-in-out infinite;
}

.generation-ritual.is-complete .ritual-core {
  animation-duration: 4.8s;
  box-shadow: 0 0 42px rgba(171, 255, 117, 0.3);
}

.ritual-bars {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  min-height: 62px;
  margin-bottom: 14px;
}

.ritual-bars span {
  width: 10px;
  height: 24px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(171, 255, 117, 0.96), rgba(100, 215, 255, 0.24));
  animation: ritualBars 1.3s ease-in-out infinite;
}

.ritual-bars span:nth-child(2) { animation-delay: 0.12s; }
.ritual-bars span:nth-child(3) { animation-delay: 0.24s; }
.ritual-bars span:nth-child(4) { animation-delay: 0.36s; }
.ritual-bars span:nth-child(5) { animation-delay: 0.48s; }
.ritual-bars span:nth-child(6) { animation-delay: 0.6s; }

.ritual-copy {
  display: grid;
  gap: 10px;
}

.ritual-copy strong {
  color: #efffe3;
  font-size: 18px;
  line-height: 1.7;
}

.generation-ritual.is-complete .ritual-bars span {
  animation-play-state: paused;
  height: 46px;
  opacity: 0.92;
}

.keyword-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
}

.keyword-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.keyword-cloud span {
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(171, 255, 117, 0.08);
  border: 1px solid rgba(171, 255, 117, 0.16);
  color: #efffe3;
}

.wave-visual {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.wave-line {
  height: 68px;
  border-radius: 18px;
  background:
    linear-gradient(90deg, transparent, rgba(171, 255, 117, 0.26), transparent),
    rgba(255, 255, 255, 0.03);
  position: relative;
  overflow: hidden;
}

.wave-line::after {
  content: "";
  position: absolute;
  inset: 50% -16% auto -16%;
  height: 2px;
  transform: translateY(-50%);
  background: linear-gradient(90deg, transparent, var(--brand), var(--blue), transparent);
  animation: waveSweep 3s linear infinite;
}

.album-hero,
.lyrics-layout {
  display: grid;
  gap: 22px;
}

.album-hero {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: start;
  padding: 24px;
}

.album-art-stage {
  width: 100%;
  aspect-ratio: 1 / 1;
  justify-self: stretch;
  border-radius: 28px;
  padding: 24px;
  background:
    radial-gradient(circle at center, rgba(171, 255, 117, 0.12), transparent 38%),
    rgba(255, 255, 255, 0.02);
}

.album-art {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 28px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.album-art::after {
  width: 180px;
  height: 250px;
  right: 26px;
  bottom: 26px;
  opacity: 0;
  pointer-events: none;
}

.album-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.album-info .page-title {
  font-size: clamp(28px, 3.4vw, 56px);
  line-height: 1.06;
}

body[data-page="creating"] .creating-panel .page-title {
  font-size: clamp(26px, 3.4vw, 52px);
  line-height: 1.08;
}

.result-meta-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.result-meta-card {
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.03);
}

.result-meta-card.wide {
  grid-column: 1 / -1;
}

.result-meta-card strong {
  display: block;
  color: #efffe3;
  line-height: 1.7;
  word-break: break-all;
}

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

.result-meta-split > div {
  min-width: 0;
}

.result-meta-address {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: normal;
}

.waveform {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 8px;
  margin-top: 0;
  padding: 16px;
}

.wave-bar {
  height: 74px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(171, 255, 117, 0.96), rgba(100, 215, 255, 0.32));
  animation: pulse 1.8s ease-in-out infinite;
}

.wave-bar:nth-child(2n) {
  animation-delay: 0.2s;
}

.wave-bar:nth-child(3n) {
  animation-delay: 0.45s;
}

.lyrics-layout {
  grid-template-columns: 240px 1fr;
  margin-top: 24px;
}

.lyrics-nav,
.lyrics-content {
  padding: 22px;
}

.lyrics-nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
  height: max-content;
  position: sticky;
  top: 110px;
}

.lyrics-nav a {
  color: var(--muted);
}

.lyrics-nav a:hover {
  color: var(--text);
}

.lyric-block {
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.lyric-block:last-child {
  border-bottom: 0;
}

.lyric-block p {
  margin: 0;
  color: #eefee3;
  line-height: 2;
  font-size: 17px;
}

.lyric-block.chorus p {
  color: var(--brand);
  font-size: 20px;
}

.result-grid {
  grid-template-columns: 0.9fr 1.1fr;
  margin-top: 24px;
}

.plan-table {
  margin-top: 18px;
}

.prompt-box {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.prompt-box code {
  display: block;
  font-family: "Orbitron", sans-serif;
  color: #d4ffd6;
  line-height: 1.8;
  white-space: normal;
}

.audio-player-shell {
  position: relative;
  overflow: hidden;
}

.audio-player-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.audio-player-stage {
  position: relative;
  margin-top: 14px;
  padding: 16px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 15% 50%, rgba(171, 255, 117, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.015));
  border: 1px solid rgba(171, 255, 117, 0.08);
}

.audio-player-glow {
  position: absolute;
  inset: auto 12% 12px 12%;
  height: 36px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(171, 255, 117, 0.2), transparent 70%);
  filter: blur(18px);
  pointer-events: none;
}

#audioHint,
#audioMeta {
  color: var(--muted);
}

#resultAudio {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 999px;
  background: rgba(5, 10, 8, 0.92);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
  color-scheme: dark;
  filter: brightness(1.08) contrast(1.1);
}

#resultAudio::-webkit-media-controls-enclosure {
  border-radius: 999px;
}

#resultAudio::-webkit-media-controls-panel {
  background: linear-gradient(180deg, rgba(8, 14, 11, 0.98), rgba(12, 20, 16, 0.98));
}

#resultAudio::-webkit-media-controls-play-button {
  filter: invert(1) brightness(1.5);
  background-color: rgba(171, 255, 117, 0.96);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(171, 255, 117, 0.12);
}

#resultAudio::-webkit-media-controls-mute-button,
#resultAudio::-webkit-media-controls-overflow-button {
  filter: invert(1) brightness(1.5);
}

#resultAudio::-webkit-media-controls-current-time-display,
#resultAudio::-webkit-media-controls-time-remaining-display {
  color: #f3ffe9;
  text-shadow: 0 0 8px rgba(171, 255, 117, 0.18);
}

#resultAudio::-webkit-media-controls-timeline {
  filter: brightness(1.18) saturate(1.1);
}

#resultAudio::-webkit-media-controls-volume-slider {
  filter: brightness(1.22);
}

.media-stage {
  position: relative;
  width: 100%;
  margin-top: 18px;
  transition: aspect-ratio 0.22s ease;
}

.media-stage.is-cover {
  aspect-ratio: 1 / 1;
  max-width: 560px;
}

.media-stage.is-poster {
  aspect-ratio: 16 / 9;
}

.media-frame {
  position: absolute;
  inset: 0;
  display: none;
  border-radius: 26px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015));
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.media-frame.active {
  display: block;
}

#resultAlbumArt::before,
#resultAlbumArt::after,
#resultCoverFrame::before,
#resultPosterFrame::before {
  opacity: 0;
  pointer-events: none;
}

.media-frame::before {
  width: 60%;
  height: 76%;
  top: 12%;
  left: 20%;
}

.media-frame.poster-mode::before {
  width: 78%;
  height: 54%;
  top: 23%;
  left: 11%;
}

.plaza-hero {
  padding-top: 26px;
}

.plaza-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 22px;
}

.plaza-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 22px;
  flex-wrap: wrap;
}

.plaza-page-numbers {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.plaza-item {
  padding: 18px;
  border-radius: 28px;
}

.plaza-item.tall {
  grid-row: auto;
}

.plaza-cover,
.preview-cover,
.plaza-card-card {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  min-height: auto;
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.preview-cover.network-art::before,
.plaza-card-card.network-art::before {
  opacity: 0.26;
}

.plaza-cover.style-one,
.preview-cover.large {
  min-height: auto;
}

.plaza-cover.style-one::before,
.preview-cover.large::before,
.plaza-card-card.first::before {
  inset: 0;
}

.plaza-cover.style-two::before,
.plaza-card-card.second::before {
  inset: 0;
  background:
    radial-gradient(circle at 24% 18%, rgba(255, 255, 255, 0.2), transparent 16%),
    linear-gradient(135deg, rgba(100, 215, 255, 0.74), rgba(143, 123, 255, 0.74));
}

.plaza-cover.style-three::before,
.plaza-card-card.third::before {
  inset: 0;
  background:
    radial-gradient(circle at 24% 18%, rgba(255, 255, 255, 0.2), transparent 16%),
    linear-gradient(180deg, rgba(171, 255, 117, 0.74), rgba(246, 114, 212, 0.64));
}

.plaza-cover.style-four::before {
  inset: 0;
  background:
    radial-gradient(circle at 24% 18%, rgba(255, 255, 255, 0.2), transparent 16%),
    linear-gradient(135deg, rgba(21, 34, 28, 0.5), rgba(171, 255, 117, 0.62), rgba(100, 215, 255, 0.62));
}

.plaza-cover.no-cover {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 50%, rgba(215, 255, 20, 0.05), transparent 58%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.015));
  border: 1px dashed rgba(171, 255, 117, 0.18);
}

.plaza-cover.no-cover::before {
  inset: 0;
  border-radius: inherit;
  background: url("./assets/covers/logo.webp") center/cover no-repeat;
  opacity: 0.05;
  filter: grayscale(1) brightness(1.18);
}

.plaza-cover.no-cover span {
  position: relative;
  z-index: 1;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(240, 255, 228, 0.58);
}

.plaza-info,
.preview-copy {
  padding-top: 18px;
}

.plaza-info h2,
.preview-copy h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.text-link {
  color: var(--brand);
  font-size: 14px;
}

.text-link.disabled,
.text-link[aria-disabled="true"] {
  pointer-events: none;
  opacity: 0.4;
}

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

.result-preview {
  padding: 18px;
  border-radius: 28px;
}

.plaza-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  align-items: stretch;
}

.plaza-card-card {
  min-height: 144px;
}

.plaza-card-card.first {
  grid-row: auto;
  min-height: auto;
}

.cta-panel {
  padding: 28px;
  display: grid;
  grid-template-columns: 1.1fr auto;
  align-items: center;
  gap: 20px;
}

.page-main {
  padding-bottom: 80px;
}

body.has-global-player {
  padding-bottom: 148px;
}

.site-footer {
  padding: 0 0 28px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  color: var(--soft);
  font-size: 13px;
}

.footer-copy {
  display: grid;
  gap: 8px;
  max-width: 760px;
}

.footer-copy strong {
  color: var(--text);
  font-size: 14px;
}

.footer-copy span {
  line-height: 1.8;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-socials a {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  border: 1px solid rgba(215, 255, 20, 0.16);
  background: rgba(255, 255, 255, 0.03);
}

.footer-socials a svg {
  width: 18px;
  height: 18px;
  display: block;
  fill: currentColor;
}

.footer-socials a:hover {
  border-color: rgba(215, 255, 20, 0.34);
  background: rgba(215, 255, 20, 0.08);
  box-shadow: 0 0 18px rgba(215, 255, 20, 0.14);
}

.global-player-shell {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  padding: 0 0 16px;
}

.global-player {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr) auto minmax(320px, 36vw);
  align-items: center;
  gap: 18px;
  padding: 16px 18px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015)),
    radial-gradient(circle at 18% 50%, rgba(201, 255, 24, 0.08), transparent 26%),
    radial-gradient(circle at 76% 50%, rgba(255, 53, 181, 0.08), transparent 24%),
    rgba(7, 9, 13, 0.94);
  box-shadow:
    0 18px 54px rgba(0, 0, 0, 0.44),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.global-player::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  pointer-events: none;
}

.global-player::after {
  content: "";
  position: absolute;
  inset: auto 8% -24px 8%;
  height: 44px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 53, 181, 0.22), transparent 70%);
  filter: blur(24px);
  opacity: 0.42;
  pointer-events: none;
}

.global-player-cover {
  position: relative;
  width: 68px;
  height: 68px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(201,255,24,0.24), rgba(255,53,181,0.24), rgba(100,215,255,0.2));
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.26), 0 0 24px rgba(255, 53, 181, 0.08);
}

.global-player-copy {
  min-width: 0;
}

.global-player-topline {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 7px;
}

.global-player-kicker {
  display: block;
  color: rgba(240, 248, 255, 0.52);
  font-size: 10px;
  font-family: "Orbitron", sans-serif;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.global-player-status {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 53, 181, 0.18);
  background: rgba(255, 53, 181, 0.08);
  color: #ffd5f0;
  font-size: 11px;
  line-height: 1;
  white-space: nowrap;
}

.global-player-wave {
  display: inline-flex;
  align-items: flex-end;
  gap: 3px;
  height: 16px;
  margin-left: 2px;
}

.global-player-wave i {
  display: block;
  width: 3px;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(201, 255, 24, 0.92), rgba(255, 53, 181, 0.92));
  opacity: 0.34;
  transform-origin: center bottom;
}

.global-player-copy strong,
.global-player-copy p {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.global-player-copy strong {
  font-size: 16px;
  font-weight: 800;
  line-height: 1.1;
  color: #f8fff3;
}

.global-player-copy p {
  margin: 7px 0 0;
  color: rgba(232, 241, 211, 0.72);
  font-size: 13px;
}

.global-player-link {
  min-width: 132px;
  white-space: nowrap;
  border-color: rgba(255, 53, 181, 0.16);
  background: linear-gradient(180deg, rgba(255, 53, 181, 0.08), rgba(255, 255, 255, 0.03));
}

.global-player-audio-slot {
  position: relative;
  min-width: 0;
}

.global-player-audio-placeholder {
  width: 100%;
  height: 46px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04));
  background-size: 200% 100%;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.07);
  animation: globalPlayerLoading 1.2s linear infinite;
}

#globalPlayerAudio {
  width: 100%;
  min-width: 0;
  height: 46px;
  border-radius: 999px;
  background: rgba(3, 5, 8, 0.96);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
  color-scheme: dark;
  filter: brightness(1.04) contrast(1.08);
  opacity: 0;
  pointer-events: none;
}

.global-player-shell.is-audio-ready #globalPlayerAudio {
  opacity: 1;
  pointer-events: auto;
}

.global-player-shell.is-audio-ready .global-player-audio-placeholder {
  display: none;
}

#globalPlayerAudio::-webkit-media-controls-panel {
  background: linear-gradient(180deg, rgba(8, 12, 16, 0.98), rgba(10, 16, 21, 0.98));
}

#globalPlayerAudio::-webkit-media-controls-play-button {
  filter: invert(1) brightness(1.45);
  background-color: rgba(255, 53, 181, 0.92);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(255, 53, 181, 0.1);
}

#globalPlayerAudio::-webkit-media-controls-current-time-display,
#globalPlayerAudio::-webkit-media-controls-time-remaining-display {
  color: #f6fff0;
}

.global-player-shell.is-playing .global-player {
  border-color: rgba(255, 53, 181, 0.16);
  box-shadow:
    0 22px 60px rgba(0, 0, 0, 0.5),
    0 0 34px rgba(255, 53, 181, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.global-player-shell.is-playing .global-player-status {
  border-color: rgba(201, 255, 24, 0.22);
  background: rgba(201, 255, 24, 0.1);
  color: #f3ffd0;
}

.global-player-shell.is-playing .global-player-wave i {
  opacity: 1;
  animation: globalPlayerBars 1s ease-in-out infinite;
}

.global-player-shell.is-playing .global-player-wave i:nth-child(2) {
  animation-delay: 0.12s;
}

.global-player-shell.is-playing .global-player-wave i:nth-child(3) {
  animation-delay: 0.24s;
}

.global-player-shell.is-playing .global-player-wave i:nth-child(4) {
  animation-delay: 0.36s;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay {
  animation: floatIn 0.9s ease both;
}

@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes globalPlayerBars {
  0%,
  100% {
    height: 7px;
    transform: scaleY(0.7);
  }
  50% {
    height: 16px;
    transform: scaleY(1);
  }
}

@keyframes globalPlayerLoading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

@keyframes globalPlayerMarquee {
  0%,
  12% {
    transform: translateX(0);
  }
  44%,
  56% {
    transform: translateX(calc(-100% + 100vw - 118px));
  }
  88%,
  100% {
    transform: translateX(0);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scaleY(0.55);
    opacity: 0.62;
  }
  50% {
    transform: scaleY(1);
    opacity: 1;
  }
}

@keyframes ritualBreath {
  0%, 100% {
    transform: scale(0.96);
    box-shadow: 0 0 24px rgba(171, 255, 117, 0.18);
  }
  50% {
    transform: scale(1.04);
    box-shadow: 0 0 44px rgba(171, 255, 117, 0.3);
  }
}

@keyframes ritualBars {
  0%, 100% { height: 22px; opacity: 0.6; }
  50% { height: 58px; opacity: 1; }
}

@keyframes waveSweep {
  0% {
    transform: translate(-20%, -50%);
  }
  100% {
    transform: translate(20%, -50%);
  }
}

@media (max-width: 1180px) {
  .hero-home,
  .preview-analysis,
  .analysis-layout,
  .studio-preview,
  .studio-layout,
  .creating-layout,
  .album-hero,
  .lyrics-layout,
  .result-grid,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .workflow-grid,
  .plaza-grid,
  .result-preview-grid,
  .result-meta-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-core {
    min-height: auto;
    padding-top: 36px;
  }

  .lyrics-nav {
    position: static;
  }
}

@media (max-width: 900px) {
  .main-nav {
    display: none;
  }

  .metric-grid,
  .soul-grid,
  .style-grid,
  .poster-grid,
  .workflow-grid,
  .plaza-grid,
  .result-preview-grid,
  .mini-card-grid,
  .example-grid {
    grid-template-columns: 1fr;
  }

  .hero-search-head,
  .hero-search-row,
  .section-heading.split,
  .preview-heading,
  .mini-heading,
  .group-head,
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-socials {
    width: 100%;
  }

  .action-row {
    width: 100%;
  }

  .button,
  .icon-button {
    width: auto;
  }
}

@media (max-width: 640px) {
  :root {
    --shell: min(100% - 24px, 1360px);
  }

  body.has-global-player {
    padding-bottom: 156px;
  }

  .global-player-shell {
    padding-bottom: 6px;
  }

  .global-player {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 10px;
    padding: 10px;
    border-radius: 20px;
  }

  .global-player::after {
    inset: auto 10% -18px 10%;
    height: 30px;
    opacity: 0.28;
  }

  .global-player-cover {
    width: 48px;
    height: 48px;
    border-radius: 14px;
  }

  .global-player-topline {
    flex-wrap: nowrap;
    gap: 6px;
    margin-bottom: 4px;
  }

  .global-player-kicker {
    font-size: 9px;
    letter-spacing: 0.12em;
  }

  .global-player-wave {
    gap: 2px;
    height: 12px;
    margin-left: auto;
  }

  .global-player-wave i {
    width: 2px;
    height: 6px;
  }

  .global-player-status {
    min-height: 18px;
    padding: 0 7px;
    font-size: 9px;
  }

  .global-player-copy strong {
    font-size: 13px;
  }

  .global-player-copy p {
    margin-top: 4px;
    font-size: 11px;
    line-height: 1.35;
  }

  .global-player-audio-slot,
  #globalPlayerAudio {
    grid-column: 1 / -1;
  }

  .global-player-link {
    grid-column: 2 / 3;
    justify-self: start;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    font-size: 12px;
    transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
  }

  .global-player-link:active {
    transform: scale(0.96);
  }

  .global-player-audio-placeholder,
  #globalPlayerAudio {
    height: 38px;
  }

  @media (max-width: 390px) {
    body.has-global-player {
      padding-bottom: 138px;
    }

    .global-player-shell {
      padding-bottom: 4px;
    }

    .global-player {
      grid-template-columns: 44px minmax(0, 1fr) auto;
      gap: 8px;
      padding: 9px;
      border-radius: 18px;
    }

    .global-player-cover {
      width: 44px;
      height: 44px;
      border-radius: 12px;
    }

    .global-player-topline {
      gap: 5px;
      margin-bottom: 2px;
    }

    .global-player-kicker,
    .global-player-copy p {
      display: none;
    }

    .global-player-status {
      min-height: 16px;
      padding: 0 6px;
      font-size: 8px;
    }

    .global-player-wave {
      display: none;
    }

    .global-player-copy {
      overflow: hidden;
    }

    .global-player-copy strong {
      display: inline-block;
      min-width: 100%;
      font-size: 12px;
      line-height: 1.15;
      padding-right: 18px;
      animation: globalPlayerMarquee 8s linear infinite;
      animation-play-state: paused;
    }

    .global-player-shell.is-playing .global-player-copy strong,
    .global-player-copy:hover strong {
      animation-play-state: running;
    }

    .global-player-link {
      grid-column: 3 / 4;
      min-width: 34px;
      width: 34px;
      min-height: 34px;
      padding: 0;
      font-size: 0;
      border-radius: 12px;
      justify-self: end;
      border-color: rgba(255, 53, 181, 0.24);
      background: linear-gradient(180deg, rgba(255, 53, 181, 0.14), rgba(255, 255, 255, 0.04));
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
    }

    .global-player-link::before {
      content: "↗";
      font-size: 14px;
      font-weight: 700;
      color: #f8fff3;
    }

    .global-player-audio-slot,
    #globalPlayerAudio {
      grid-column: 1 / -1;
    }

    .global-player-audio-placeholder,
    #globalPlayerAudio {
      height: 34px;
    }
  }

  .site-header {
    top: 8px;
    padding-top: 8px;
  }

  .nav-shell,
  .panel,
  .project-sheet,
  .narrative-sheet,
  .studio-preview-pane,
  .studio-panel,
  .creating-panel,
  .keyword-panel,
  .music-plan,
  .poster-panel,
  .lyrics-content,
  .lyrics-nav,
  .cta-panel {
    padding: 18px;
  }

  .nav-shell {
    flex-direction: row;
    align-items: center;
    flex-wrap: nowrap;
    gap: 8px;
    padding: 12px;
  }

  .brand {
    flex: 0 0 auto;
    width: auto;
    min-width: 34px;
    gap: 0;
    overflow: visible;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
    border-radius: 11px;
    flex-shrink: 0;
  }

  .brand-text {
    display: none;
  }

  .nav-actions {
    width: auto;
    min-width: 0;
    max-width: calc(100% - 48px);
    margin-left: auto;
    gap: 6px;
    flex-wrap: nowrap;
    justify-content: flex-end;
    flex: 1 1 auto;
    overflow: hidden;
  }

  .nav-actions .button,
  .nav-actions .icon-button {
    min-height: 36px;
    min-width: 0;
    padding: 0 10px;
    border-radius: 11px;
    font-size: 12px;
  }

  .nav-actions .icon-button {
    width: 36px;
    min-width: 36px;
    padding: 0;
    flex: 0 0 auto;
  }

  .nav-actions .button.ghost {
    flex: 1 1 auto;
    min-width: 0;
    max-width: 92px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  h1,
  .page-title {
    font-size: 34px;
  }

  .hero {
    padding-top: 20px;
  }

  .hero-core {
    align-items: flex-start;
    text-align: left;
    padding-top: 8px;
  }

  .hero-core::before {
    width: 100%;
    height: 180px;
    top: 8%;
    left: 0;
    transform: none;
  }

  #heroTitle {
    white-space: normal;
    font-size: 34px;
    line-height: 1.12;
  }

  .hero-copy {
    margin-top: 14px;
    font-size: 15px;
    line-height: 1.8;
  }

  .chain-tabs {
    width: 100%;
    gap: 10px;
  }

  .chain-tab {
    flex: 1 1 calc(50% - 10px);
    min-width: 0;
    min-height: 50px;
    padding: 0 14px;
    gap: 8px;
    border-radius: 16px;
  }

  .chain-logo {
    width: 26px;
    height: 26px;
    border-radius: 8px;
  }

  .hero-search {
    padding: 16px;
    margin-top: 18px;
  }

  .hero-input {
    min-height: 56px;
    width: 100%;
  }

  .hero-search-row .button {
    width: 100%;
    min-height: 52px;
  }

  .example-strip {
    margin-top: 16px;
  }

  .example-card {
    padding: 14px;
  }

  .hero-aside {
    padding: 18px;
  }

  .mini-project strong {
    font-size: 18px;
  }

  .mini-project p {
    font-size: 13px;
  }

  .metric-grid {
    gap: 10px;
  }

  .metric-card {
    padding: 14px;
  }

  .section-heading {
    margin-bottom: 18px;
  }

  .section-heading h2 {
    margin-top: 12px;
    font-size: 28px;
    line-height: 1.14;
  }

  .section-heading p {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.75;
  }

  .workflow-card {
    padding: 18px;
  }

  .step-no {
    margin-bottom: 12px;
    font-size: 12px;
  }

  .workflow-card h3,
  .preview-copy h3,
  .plaza-info h2 {
    font-size: 20px;
  }

  .workflow-card p,
  .preview-copy p,
  .plaza-info p {
    font-size: 14px;
    line-height: 1.75;
  }

  .preview-analysis {
    padding: 18px;
    gap: 18px;
  }

  .preview-column {
    padding: 0;
  }

  .profile-summary {
    gap: 12px;
  }

  .profile-summary strong {
    font-size: 18px;
  }

  .copy-line {
    padding: 12px 14px;
  }

  .copy-line span {
    font-size: 13px;
  }

  .link-row,
  .signal-band,
  .action-row {
    gap: 10px;
  }

  .chip-link {
    min-height: 38px;
    padding: 0 12px;
  }

  .studio-preview,
  .result-preview-grid {
    gap: 16px;
  }

  .studio-card,
  .result-preview {
    padding: 18px;
  }

  .cover-preview {
    min-height: auto;
  }

  .cover-copy strong {
    font-size: 22px;
    line-height: 1.16;
  }

  .cover-copy p {
    font-size: 14px;
    line-height: 1.75;
  }

  .poster-choice-row {
    gap: 10px;
  }

  .poster-thumb {
    width: calc((100% - 20px) / 3);
    height: auto;
    aspect-ratio: 3 / 4;
  }

  .result-preview {
    gap: 0;
  }

  .cta-panel {
    gap: 16px;
  }

  .cta-panel h2 {
    font-size: 28px;
    line-height: 1.14;
  }

  .cta-panel p {
    font-size: 14px;
    line-height: 1.75;
  }

  body[data-page="project"] .section-heading .page-title {
    font-size: 30px;
    line-height: 1.12;
  }

  body[data-page="project"] .section-heading .page-subtitle {
    font-size: 14px;
    line-height: 1.75;
  }

  body[data-page="project"] .project-sheet,
  body[data-page="project"] .narrative-sheet {
    padding: 18px;
  }

  body[data-page="project"] .sheet-top,
  body[data-page="project"] .mini-heading {
    align-items: flex-start;
    gap: 12px;
  }

  body[data-page="project"] .project-avatar {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    font-size: 22px;
  }

  body[data-page="project"] .project-sheet h2,
  body[data-page="project"] .narrative-sheet h2 {
    font-size: 24px;
    line-height: 1.16;
  }

  body[data-page="project"] .copy-line {
    padding: 12px 14px;
    align-items: stretch;
  }

  body[data-page="project"] .copy-line span {
    font-size: 13px;
    line-height: 1.6;
  }

  body[data-page="project"] .metric-grid {
    gap: 10px;
  }

  body[data-page="project"] .metric-card {
    padding: 14px;
  }

  body[data-page="project"] .metric-card strong,
  body[data-page="project"] .soul-card strong {
    font-size: 15px;
    line-height: 1.6;
  }

  body[data-page="project"] .soul-grid {
    gap: 10px;
  }

  body[data-page="project"] .source-strip {
    gap: 10px;
  }

  body[data-page="project"] .narrative-input-box {
    margin-top: 16px;
    padding: 16px;
  }

  body[data-page="project"] .compact-head {
    gap: 10px;
  }

  body[data-page="project"] .compact-head h3 {
    font-size: 18px;
  }

  body[data-page="project"] .compact-head p {
    font-size: 13px;
    line-height: 1.7;
  }

  body[data-page="project"] .narrative-textarea {
    min-height: 116px;
    padding: 14px 16px;
    line-height: 1.75;
  }

  body[data-page="project"] .action-row {
    gap: 10px;
  }

  body[data-page="project"] .action-row .button {
    min-height: 48px;
  }

  body[data-page="studio"] .section-heading .page-title {
    font-size: 30px;
    line-height: 1.12;
  }

  body[data-page="studio"] .section-heading .page-subtitle {
    font-size: 14px;
    line-height: 1.75;
  }

  body[data-page="studio"] .studio-panel {
    padding: 18px;
  }

  body[data-page="studio"] .setting-group {
    gap: 12px;
  }

  body[data-page="studio"] .group-head h3 {
    font-size: 18px;
    margin-bottom: 2px;
  }

  body[data-page="studio"] .group-head p {
    font-size: 13px;
    line-height: 1.7;
  }

  body[data-page="studio"] .segmented-row {
    gap: 8px;
  }

  body[data-page="studio"] .seg-chip {
    min-height: 42px;
    padding: 0 14px;
    font-size: 14px;
  }

  body[data-page="studio"] .style-grid {
    gap: 10px;
  }

  body[data-page="studio"] .style-card {
    padding: 16px;
    border-radius: 18px;
  }

  body[data-page="studio"] .style-card strong {
    font-size: 14px;
    margin-bottom: 6px;
  }

  body[data-page="studio"] .style-card span {
    font-size: 12px;
    line-height: 1.7;
  }

  body[data-page="studio"] .poster-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  body[data-page="studio"] .poster-style {
    min-height: 118px;
    border-radius: 18px;
  }

  body[data-page="studio"] .poster-style span {
    font-size: 13px;
  }

  body[data-page="studio"] .wallet-gate {
    padding: 16px;
    gap: 14px;
  }

  body[data-page="studio"] .wallet-gate-copy strong {
    font-size: 18px;
  }

  body[data-page="studio"] .wallet-gate-copy p {
    font-size: 13px;
    line-height: 1.7;
  }

  body[data-page="studio"] .wallet-gate-actions {
    gap: 10px;
  }

  body[data-page="studio"] .wallet-gate-actions .button {
    min-height: 48px;
  }

  body[data-page="creating"] .creating-panel {
    padding: 18px;
  }

  body[data-page="creating"] .page-title {
    font-size: 24px;
    line-height: 1.16;
  }

  body[data-page="creating"] .page-subtitle {
    font-size: 14px;
    line-height: 1.75;
  }

  body[data-page="creating"] .progress-list {
    gap: 10px;
  }

  body[data-page="creating"] .progress-item {
    padding: 14px;
    border-radius: 16px;
    align-items: flex-start;
  }

  body[data-page="creating"] .progress-mark {
    width: 20px;
    margin-top: 2px;
  }

  body[data-page="creating"] .dynamic-sentence {
    margin-top: 16px;
    padding: 16px;
    font-size: 16px;
    line-height: 1.7;
  }

  body[data-page="creating"] .generation-ritual {
    gap: 14px;
    margin-top: 16px;
    padding: 18px;
  }

  body[data-page="creating"] .ritual-core {
    width: 76px;
    height: 76px;
  }

  body[data-page="creating"] .ritual-bars {
    gap: 8px;
    min-height: 52px;
    margin-bottom: 10px;
  }

  body[data-page="creating"] .ritual-bars span {
    width: 8px;
  }

  body[data-page="creating"] .ritual-copy {
    gap: 8px;
  }

  body[data-page="creating"] .ritual-copy strong {
    font-size: 16px;
    line-height: 1.65;
  }

  body[data-page="creating"] .action-row {
    gap: 10px;
  }

  body[data-page="creating"] .action-row .button {
    min-height: 48px;
  }

  body[data-page="result"] .album-hero,
  body[data-page="result"] .lyrics-layout,
  body[data-page="result"] .result-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  body[data-page="result"] .album-hero {
    padding: 18px;
  }

  body[data-page="result"] .album-art-stage {
    padding: 16px;
    border-radius: 22px;
  }

  body[data-page="result"] .album-art,
  body[data-page="result"] .media-frame {
    border-radius: 20px;
  }

  body[data-page="result"] .album-info .page-title {
    font-size: 24px;
    line-height: 1.14;
  }

  body[data-page="result"] .album-info .page-subtitle {
    font-size: 14px;
    line-height: 1.7;
  }

  body[data-page="result"] .tag-row {
    gap: 8px;
  }

  body[data-page="result"] .result-meta-grid,
  body[data-page="result"] .result-meta-split {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  body[data-page="result"] .result-meta-card {
    padding: 14px;
    border-radius: 16px;
  }

  body[data-page="result"] .result-meta-card strong {
    font-size: 14px;
    line-height: 1.65;
  }

  body[data-page="result"] .action-row {
    gap: 10px;
  }

  body[data-page="result"] .action-row .button {
    min-height: 46px;
  }

  body[data-page="result"] .audio-player-shell,
  body[data-page="result"] .music-plan,
  body[data-page="result"] .poster-panel,
  body[data-page="result"] .lyrics-content,
  body[data-page="result"] .lyrics-nav {
    padding: 18px;
  }

  body[data-page="result"] .audio-player-head {
    align-items: flex-start;
    gap: 10px;
  }

  body[data-page="result"] .audio-player-stage {
    margin-top: 14px;
    padding: 16px 14px;
    border-radius: 18px;
  }

  body[data-page="result"] .lyrics-nav {
    position: static;
    top: auto;
    gap: 10px;
  }

  body[data-page="result"] .lyric-block {
    padding: 18px 0;
  }

  body[data-page="result"] .lyric-block p {
    font-size: 15px;
    line-height: 1.85;
  }

  body[data-page="result"] .mini-heading {
    align-items: flex-start;
    gap: 12px;
  }

  body[data-page="result"] .media-stage.is-cover,
  body[data-page="result"] .media-stage.is-poster {
    max-width: none;
  }

  body[data-page="result"] .album-info {
    gap: 14px;
  }

  body[data-page="result"] .album-info .page-title {
    font-size: 22px;
    line-height: 1.16;
  }

  body[data-page="result"] .tag-row span {
    min-height: 30px;
    padding: 5px 12px;
    font-size: 11px;
  }

  body[data-page="result"] .result-meta-card span {
    font-size: 11px;
  }

  body[data-page="result"] .action-row {
    margin-top: 16px;
    flex-direction: column;
  }

  body[data-page="result"] .action-row .button {
    width: 100%;
    justify-content: center;
  }

  body[data-page="result"] .audio-player-head,
  body[data-page="result"] .poster-panel .mini-heading {
    flex-direction: column;
  }

  body[data-page="result"] .poster-panel .segmented-row.compact {
    width: 100%;
  }

  body[data-page="result"] .poster-panel .segmented-row.compact .seg-chip {
    flex: 1;
    min-width: 0;
  }

  body[data-page="result"] .media-stage {
    margin-top: 14px;
  }

  .site-header {
    top: 8px;
    padding-top: 8px;
  }

  .nav-shell {
    padding: 12px 14px;
    gap: 12px;
    border-radius: 20px;
  }

  .brand {
    min-width: 0;
    gap: 10px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
    border-radius: 12px;
  }

  .brand-text {
    font-size: 13px;
    letter-spacing: 0.12em;
  }

  .nav-actions {
    width: 100%;
    justify-content: space-between;
    gap: 8px;
  }

  .nav-actions .meta-pill {
    min-height: 32px;
    padding: 6px 12px;
  }

  .nav-actions .button.ghost,
  .nav-actions .button.primary {
    min-height: 42px;
    padding: 0 14px;
    font-size: 13px;
  }

  .page-main {
    padding-top: 18px;
  }

  .footer-inner {
    gap: 14px;
  }

  .footer-copy {
    gap: 6px;
  }

  .footer-copy strong {
    font-size: 14px;
  }

  .footer-copy span {
    font-size: 12px;
    line-height: 1.7;
  }

  .footer-socials {
    width: 100%;
    justify-content: flex-start;
    gap: 10px;
  }

  .footer-socials a {
    width: 40px;
    height: 40px;
  }

  .plaza-pagination {
    gap: 10px;
    margin-top: 18px;
  }

  .plaza-page-numbers {
    gap: 8px;
  }

  .plaza-pagination .button,
  .plaza-page-numbers .button,
  .plaza-page-numbers .icon-button {
    min-height: 40px;
    padding: 0 12px;
    border-radius: 14px;
  }

  .generation-ritual {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .hero-search-row {
    align-items: stretch;
  }

  .hero-search-row,
  .segmented-row {
    flex-direction: column;
  }

  .chain-tab,
  .seg-chip,
  .button,
  .icon-button {
    width: 100%;
  }

  .result-meta-grid {
    grid-template-columns: 1fr;
  }

  .result-meta-split {
    grid-template-columns: 1fr;
  }

  .hero-aside,
  .album-art-stage {
    min-height: auto;
  }

  .album-art-stage {
    padding: 16px;
  }
}