@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@500;600;700&family=Space+Mono:wght@400;700&display=swap");

:root {
  color-scheme: light;
  --ink: #18201f;
  --muted: #66706e;
  --line: #d8dfd9;
  --paper: #f4f7f2;
  --panel: #fffef8;
  --charcoal: #17201f;
  --ruby: #d85c4a;
  --teal: #167f8f;
  --brass: #c4922f;
  --green: #496f49;
  --violet: #6757a6;
  --shadow: 0 16px 42px rgba(34, 54, 51, 0.11);
  font-family: Inter, "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(219, 238, 242, 0.5), rgba(244, 247, 242, 0) 420px),
    var(--paper);
  color: var(--ink);
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  align-items: center;
  background: rgba(244, 247, 242, 0.92);
  border-bottom: 1px solid rgba(24, 32, 31, 0.09);
  display: flex;
  gap: 14px;
  justify-content: space-between;
  left: 0;
  padding: 14px clamp(18px, 4vw, 54px);
  position: sticky;
  right: 0;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
}

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

.brand-mark {
  align-items: center;
  background: linear-gradient(135deg, var(--teal), var(--violet));
  border-radius: 8px;
  color: #fffef8;
  display: inline-flex;
  font-weight: 800;
  height: 42px;
  justify-content: center;
  width: 42px;
}

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

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
  margin-top: 3px;
}

.main-nav {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: flex-end;
  margin-left: auto;
}

.main-nav a,
.tab {
  border-radius: 999px;
  color: #33403d;
  padding: 9px 13px;
}

.main-nav a:hover,
.tab:hover {
  background: rgba(22, 127, 143, 0.1);
}

.public-auth-slot {
  align-items: center;
  display: flex;
  flex: 0 0 auto;
}

.site-search-slot {
  align-items: center;
  display: flex;
  flex: 0 0 auto;
}

.locale-switcher {
  align-items: center;
  display: flex;
  flex: 0 0 auto;
  gap: 4px;
}

.locale-switcher a {
  align-items: center;
  border: 1px solid rgba(22, 127, 143, 0.26);
  border-radius: 999px;
  color: #1d5261;
  display: inline-flex;
  font-size: 12px;
  font-weight: 800;
  justify-content: center;
  letter-spacing: 0;
  min-height: 36px;
  min-width: 38px;
  padding: 0 10px;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.locale-switcher a:hover {
  background: rgba(22, 127, 143, 0.1);
  border-color: rgba(92, 73, 216, 0.46);
  color: var(--violet);
  transform: translateY(-1px);
}

.locale-switcher a.active {
  background: rgba(22, 127, 143, 0.16);
  border-color: rgba(92, 73, 216, 0.5);
  color: var(--violet);
}

.content-empty {
  align-items: flex-start;
  background: rgba(12, 29, 42, 0.05);
  border: 1px dashed rgba(21, 94, 117, 0.32);
  display: flex;
  flex-direction: column;
  gap: 12px;
  grid-column: 1 / -1;
  padding: clamp(24px, 4vw, 42px);
}

.content-empty h2,
.content-empty p {
  margin: 0;
}

.site-search-button {
  align-items: center;
  background:
    radial-gradient(circle at 24% 18%, rgba(255, 255, 255, 0.9), transparent 8px),
    linear-gradient(135deg, rgba(7, 22, 51, 0.95), rgba(21, 94, 117, 0.88));
  border: 1px solid rgba(22, 127, 143, 0.24);
  border-radius: 999px;
  color: #fffef8;
  cursor: pointer;
  display: inline-flex;
  gap: 7px;
  font-size: 13px;
  font-weight: 900;
  min-height: 40px;
  padding: 9px 14px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.site-search-button span {
  font-size: 20px;
  line-height: 0.8;
}

.site-search-button:hover {
  border-color: rgba(103, 232, 249, 0.72);
  box-shadow: 0 0 0 1px rgba(103, 232, 249, 0.16), 0 16px 34px rgba(22, 127, 143, 0.18);
  transform: translateY(-1px);
}

.public-auth-button {
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.9), transparent 10px),
    linear-gradient(135deg, #0b1b3e, #184c72 48%, #6d5df7);
  border: 1px solid rgba(80, 211, 238, 0.55);
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(24, 76, 114, 0.18);
  color: #fffef8;
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
  min-height: 40px;
  padding: 10px 18px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.public-auth-button:hover {
  border-color: rgba(255, 217, 138, 0.8);
  box-shadow: 0 0 0 1px rgba(255, 217, 138, 0.18), 0 18px 42px rgba(109, 93, 247, 0.22);
  transform: translateY(-1px);
}

.public-auth-button.signed {
  align-items: center;
  display: inline-flex;
  gap: 8px;
  max-width: 180px;
}

.public-auth-button.signed span {
  align-items: center;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  display: inline-flex;
  height: 22px;
  justify-content: center;
  width: 22px;
}

.public-auth-button.signed strong {
  display: block;
  max-width: 120px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.auth-modal-open {
  overflow: hidden;
}

.public-auth-modal[hidden] {
  display: none;
}

.public-auth-modal {
  inset: 0;
  position: fixed;
  z-index: 80;
}

.public-auth-backdrop {
  background:
    radial-gradient(circle at 16% 20%, rgba(45, 212, 191, 0.26), transparent 28%),
    radial-gradient(circle at 82% 22%, rgba(139, 92, 246, 0.28), transparent 30%),
    rgba(2, 6, 23, 0.72);
  inset: 0;
  position: absolute;
  backdrop-filter: blur(10px);
}

.public-auth-dialog {
  background:
    linear-gradient(150deg, rgba(4, 13, 31, 0.96), rgba(9, 31, 58, 0.94)),
    radial-gradient(circle at 84% 14%, rgba(103, 232, 249, 0.16), transparent 30%);
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 24px;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.45);
  color: #f8fafc;
  display: grid;
  gap: 18px;
  left: 50%;
  max-height: calc(100vh - 48px);
  max-width: min(920px, calc(100vw - 32px));
  overflow: auto;
  padding: clamp(22px, 4vw, 34px);
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

.public-auth-dialog::before {
  background:
    linear-gradient(90deg, transparent, rgba(103, 232, 249, 0.4), transparent),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.09) 0 1px, transparent 1px 64px);
  content: "";
  height: 1px;
  left: 24px;
  opacity: 0.75;
  position: absolute;
  right: 24px;
  top: 16px;
}

.public-auth-close {
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  font-size: 24px;
  height: 38px;
  justify-content: center;
  justify-self: end;
  line-height: 1;
  width: 38px;
}

.public-auth-copy h2 {
  font-size: clamp(28px, 4.5vw, 46px);
  line-height: 1.05;
  margin: 0 0 12px;
}

.public-auth-copy p {
  color: rgba(226, 232, 240, 0.72);
  line-height: 1.75;
  margin: 0;
  max-width: 660px;
}

.wechat-login-card,
.public-auth-current {
  align-items: center;
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.86), rgba(30, 64, 90, 0.54)),
    radial-gradient(circle at 92% 20%, rgba(255, 217, 138, 0.16), transparent 28%);
  border: 1px solid rgba(103, 232, 249, 0.18);
  border-radius: 18px;
  display: grid;
  gap: 18px;
  grid-template-columns: 126px minmax(0, 1fr);
  padding: 18px;
}

.qr-placeholder {
  background:
    linear-gradient(135deg, rgba(236, 254, 255, 0.92), rgba(199, 210, 254, 0.88));
  border-radius: 14px;
  box-shadow: inset 0 0 0 8px rgba(2, 6, 23, 0.08);
  display: grid;
  gap: 9px;
  grid-template-columns: repeat(2, 1fr);
  height: 126px;
  padding: 18px;
  width: 126px;
}

.qr-placeholder i {
  background:
    linear-gradient(135deg, #071633, #155e75);
  border-radius: 4px;
  display: block;
}

.wechat-login-card strong,
.public-auth-current strong {
  display: block;
  font-size: clamp(22px, 3vw, 30px);
  margin-bottom: 8px;
}

.wechat-login-card p,
.public-auth-current p {
  color: rgba(226, 232, 240, 0.72);
  line-height: 1.7;
  margin: 0 0 14px;
}

.wechat-login-card button,
.public-auth-current button,
.public-auth-form button {
  background: linear-gradient(135deg, #0ea5e9, #6366f1, #8b5cf6);
  border: 0;
  border-radius: 999px;
  color: #fff;
  cursor: pointer;
  font-weight: 900;
  min-height: 42px;
  padding: 10px 16px;
}

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

.public-auth-form {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  display: grid;
  gap: 10px;
  padding: 16px;
}

.public-auth-form h3 {
  font-size: 17px;
  margin: 0 0 4px;
}

.auth-flow-shell {
  align-items: stretch;
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1.08fr) minmax(260px, 0.92fr);
}

.public-auth-form.auth-form-panel {
  gap: 13px;
  min-height: 100%;
  padding: clamp(20px, 3vw, 28px);
}

.public-auth-form.auth-form-panel .eyebrow {
  color: #67e8f9;
  font-family: "Space Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.09em;
  margin: 0;
}

.public-auth-form.auth-form-panel h3 {
  color: #f8fafc;
  font-size: clamp(24px, 3vw, 32px);
  margin: 0 0 8px;
}

.auth-route-panel {
  display: grid;
  gap: 14px;
}

.oauth-login-card,
.auth-switch-card {
  background:
    linear-gradient(145deg, rgba(15, 23, 42, 0.86), rgba(30, 64, 90, 0.46)),
    radial-gradient(circle at 88% 12%, rgba(139, 92, 246, 0.18), transparent 32%);
  border: 1px solid rgba(103, 232, 249, 0.18);
  border-radius: 18px;
}

.oauth-login-card {
  align-items: start;
  display: grid;
  gap: 16px;
  grid-template-columns: 48px minmax(0, 1fr);
  padding: 20px;
}

.google-mark {
  align-items: center;
  background: #f8fafc;
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
  color: #4285f4;
  display: inline-flex;
  font-family: Arial, sans-serif;
  font-size: 23px;
  font-weight: 700;
  height: 48px;
  justify-content: center;
  width: 48px;
}

.oauth-login-card strong {
  color: #f8fafc;
  display: block;
  font-size: 19px;
  margin-bottom: 8px;
}

.oauth-login-card p {
  color: rgba(226, 232, 240, 0.72);
  font-size: 13px;
  line-height: 1.65;
  margin: 0 0 16px;
}

.oauth-login-card button {
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 999px;
  color: #172554;
  cursor: pointer;
  font-weight: 800;
  min-height: 42px;
  padding: 10px 16px;
}

.auth-switch-card {
  align-content: center;
  display: grid;
  gap: 10px;
  min-height: 120px;
  padding: 18px 20px;
}

.auth-switch-card span {
  color: #94a3b8;
  font-size: 13px;
}

.auth-switch-card button {
  background: transparent;
  border: 0;
  color: #67e8f9;
  cursor: pointer;
  font-weight: 800;
  justify-self: start;
  padding: 0;
}

.auth-switch-card button:hover,
.oauth-login-card button:hover {
  filter: brightness(1.07);
  transform: translateY(-1px);
}

.public-auth-form label {
  color: rgba(226, 232, 240, 0.74);
  display: grid;
  font-size: 12px;
  font-weight: 800;
  gap: 6px;
}

.public-auth-form input {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  color: #fff;
  min-height: 42px;
  padding: 9px 11px;
}

.public-auth-form input::placeholder {
  color: rgba(226, 232, 240, 0.42);
}

.public-auth-message {
  color: #67e8f9;
  margin: 0;
}

.public-auth-message.error {
  color: #fda4af;
}

.public-auth-current {
  grid-template-columns: 74px minmax(0, 1fr) auto;
}

.public-auth-current > span {
  align-items: center;
  background: linear-gradient(135deg, #22d3ee, #8b5cf6);
  border-radius: 20px;
  display: inline-flex;
  font-size: 28px;
  font-weight: 900;
  height: 74px;
  justify-content: center;
  width: 74px;
}

@media (max-width: 700px) {
  .auth-flow-shell {
    grid-template-columns: 1fr;
  }

  .auth-route-panel {
    grid-template-columns: 1fr;
  }
}

.search-modal-open {
  overflow: hidden;
}

.site-search-modal[hidden] {
  display: none;
}

.site-search-modal {
  inset: 0;
  position: fixed;
  z-index: 78;
}

.site-search-backdrop {
  background:
    radial-gradient(circle at 20% 18%, rgba(34, 211, 238, 0.2), transparent 28%),
    radial-gradient(circle at 82% 16%, rgba(255, 217, 138, 0.14), transparent 26%),
    rgba(2, 6, 23, 0.68);
  inset: 0;
  position: absolute;
  backdrop-filter: blur(9px);
}

.site-search-dialog {
  background:
    linear-gradient(145deg, rgba(5, 14, 33, 0.97), rgba(9, 31, 58, 0.95)),
    radial-gradient(circle at 86% 20%, rgba(139, 92, 246, 0.16), transparent 28%);
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 24px;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.46);
  color: #f8fafc;
  display: grid;
  gap: 18px;
  left: 50%;
  max-height: calc(100vh - 48px);
  max-width: min(760px, calc(100vw - 32px));
  overflow: auto;
  padding: clamp(22px, 4vw, 34px);
  position: absolute;
  top: 80px;
  transform: translateX(-50%);
  width: 100%;
}

.site-search-close {
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  font-size: 24px;
  height: 38px;
  justify-content: center;
  justify-self: end;
  line-height: 1;
  width: 38px;
}

.site-search-dialog h2 {
  font-size: clamp(26px, 4vw, 42px);
  margin: 0;
}

.site-search-input {
  display: grid;
  gap: 8px;
}

.site-search-input span {
  color: rgba(226, 232, 240, 0.72);
  font-size: 12px;
  font-weight: 900;
}

.site-search-input input {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(103, 232, 249, 0.24);
  border-radius: 16px;
  color: #fff;
  font-size: 18px;
  min-height: 54px;
  outline: none;
  padding: 12px 16px;
}

.site-search-input input:focus {
  border-color: rgba(255, 217, 138, 0.72);
  box-shadow: 0 0 0 3px rgba(255, 217, 138, 0.12);
}

.site-search-results {
  display: grid;
  gap: 10px;
}

.site-search-results > p {
  color: rgba(226, 232, 240, 0.7);
  margin: 0;
}

.site-search-result {
  align-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  display: grid;
  gap: 14px;
  grid-template-columns: 82px minmax(0, 1fr);
  padding: 10px;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.site-search-result:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(103, 232, 249, 0.35);
  transform: translateY(-1px);
}

.site-search-result img {
  aspect-ratio: 1;
  border-radius: 12px;
  height: 82px;
  object-fit: cover;
  width: 82px;
}

.site-search-result small,
.site-search-result em {
  color: rgba(226, 232, 240, 0.62);
  display: block;
  font-style: normal;
  line-height: 1.5;
}

.site-search-result strong {
  display: block;
  font-size: 18px;
  line-height: 1.35;
  margin: 3px 0;
}

.admin-link {
  background: var(--charcoal);
  color: #fff7e8 !important;
}

.hero {
  min-height: min(760px, calc(100vh - 70px));
  overflow: hidden;
  position: relative;
}

.hero img {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(10, 17, 17, 0.92), rgba(10, 17, 17, 0.68) 42%, rgba(10, 17, 17, 0.18) 74%),
    linear-gradient(180deg, rgba(22, 127, 143, 0.22), rgba(216, 92, 74, 0.12));
  inset: 0;
  position: absolute;
}

.hero-content {
  color: #fffef8;
  max-width: 820px;
  padding: clamp(88px, 11vw, 150px) clamp(22px, 6vw, 82px) 90px;
  position: relative;
  z-index: 2;
}

.eyebrow {
  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(34px, 5.2vw, 68px);
  line-height: 1.05;
  margin: 0 0 18px;
  max-width: 760px;
}

.hero-copy {
  color: rgba(255, 254, 248, 0.84);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.7;
  max-width: 680px;
}

.hero-meta,
.hero-digest {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-meta {
  margin-bottom: 18px;
}

.hero-meta span,
.hero-digest span {
  border: 1px solid rgba(255, 254, 248, 0.28);
  border-radius: 999px;
  color: rgba(255, 254, 248, 0.9);
  font-size: 12px;
  font-weight: 800;
  padding: 8px 11px;
}

.hero-meta span:first-child {
  background: rgba(216, 92, 74, 0.92);
  border-color: rgba(216, 92, 74, 0.92);
  color: #fffef8;
}

.hero-digest {
  margin-top: 26px;
}

.hero .eyebrow {
  color: #f2c451;
}

.admin h1 {
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1.05;
  margin: 0 0 12px;
}

.hero-actions,
.admin-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 7px;
  cursor: pointer;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 44px;
  padding: 11px 17px;
}

.button.primary {
  background: var(--teal);
  color: white;
}

.button.primary:hover {
  background: #0f6875;
}

.button.secondary {
  border-color: rgba(255, 254, 248, 0.5);
  color: #fffef8;
}

.immersive-hero {
  background:
    radial-gradient(circle at 72% 28%, rgba(242, 196, 81, 0.18), transparent 28%),
    radial-gradient(circle at 18% 18%, rgba(22, 127, 143, 0.28), transparent 30%),
    #0d1719;
  min-height: min(860px, calc(100vh - 70px));
}

.immersive-hero > img {
  filter: saturate(1.16) contrast(1.08) brightness(0.82);
  opacity: 0.76;
  transform: scale(1.015);
}

.immersive-hero .hero-overlay {
  background:
    linear-gradient(90deg, rgba(3, 6, 14, 0.91), rgba(5, 9, 20, 0.68) 42%, rgba(7, 10, 24, 0.24) 74%),
    radial-gradient(circle at 76% 42%, rgba(96, 165, 250, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(6, 8, 18, 0.12), rgba(3, 5, 12, 0.76));
}

.hero-orbit,
.hero-staff {
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.hero-orbit::before,
.hero-orbit::after {
  border: 1px solid rgba(255, 254, 248, 0.13);
  border-radius: 50%;
  content: "";
  position: absolute;
}

.hero-orbit::before {
  animation: slow-spin 26s linear infinite;
  box-shadow: inset 0 0 34px rgba(22, 127, 143, 0.18);
  height: min(62vw, 700px);
  right: -10vw;
  top: 8%;
  width: min(62vw, 700px);
}

.hero-orbit::after {
  animation: slow-spin 38s linear infinite reverse;
  border-color: rgba(242, 196, 81, 0.18);
  height: min(42vw, 470px);
  right: 2vw;
  top: 20%;
  width: min(42vw, 470px);
}

.hero-staff {
  background:
    radial-gradient(circle at 32% 68%, rgba(255, 254, 248, 0.52) 0 1px, transparent 2px),
    radial-gradient(circle at 58% 22%, rgba(242, 196, 81, 0.62) 0 1px, transparent 2px),
    radial-gradient(circle at 82% 74%, rgba(216, 92, 74, 0.42) 0 1px, transparent 2px),
    repeating-linear-gradient(178deg, transparent 0 25px, rgba(255, 254, 248, 0.055) 26px 27px, transparent 28px 54px);
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 88%, transparent);
  opacity: 0.9;
}

.hero-grid {
  align-items: center;
  display: grid;
  gap: clamp(28px, 5vw, 72px);
  grid-template-columns: minmax(0, 0.96fr) minmax(300px, 420px);
  min-height: inherit;
  padding: clamp(76px, 9vw, 126px) clamp(22px, 6vw, 82px) 124px;
  position: relative;
  z-index: 2;
}

.immersive-hero .hero-content {
  max-width: 820px;
  padding: 0;
}

.immersive-hero .hero h1,
.immersive-hero h1 {
  font-size: clamp(34px, 4.6vw, 62px);
  max-width: 720px;
  text-shadow: 0 18px 44px rgba(0, 0, 0, 0.32);
}

.immersive-hero .hero-copy {
  max-width: 620px;
}

.hero-feature-card {
  background:
    linear-gradient(160deg, rgba(255, 254, 248, 0.12), rgba(255, 254, 248, 0.05)),
    rgba(9, 18, 21, 0.58);
  border: 1px solid rgba(255, 254, 248, 0.16);
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.32);
  color: #fffef8;
  min-height: 405px;
  overflow: hidden;
  padding: 18px;
  position: relative;
  transform: translateY(12px);
  backdrop-filter: blur(18px);
}

.hero-feature-card::before {
  background:
    linear-gradient(90deg, transparent, rgba(255, 254, 248, 0.5), transparent),
    linear-gradient(180deg, rgba(22, 127, 143, 0), rgba(22, 127, 143, 0.22));
  content: "";
  height: 130%;
  left: -80%;
  opacity: 0.5;
  position: absolute;
  top: -15%;
  transform: rotate(18deg);
  width: 40%;
  animation: scan-light 7s ease-in-out infinite;
}

.hero-feature-cover {
  aspect-ratio: 1;
  border: 1px solid rgba(255, 254, 248, 0.2);
  border-radius: 8px;
  display: block;
  object-fit: cover;
  position: relative;
  width: 100%;
  z-index: 1;
}

.hero-vinyl {
  aspect-ratio: 1;
  background:
    radial-gradient(circle at center, #0d1719 0 8%, rgba(242, 196, 81, 0.9) 9% 12%, #111d20 13% 23%, rgba(255, 254, 248, 0.12) 24% 24.8%, transparent 25.5% 38%, rgba(255, 254, 248, 0.08) 39% 39.8%, transparent 40.5%),
    conic-gradient(from 120deg, rgba(22, 127, 143, 0.55), rgba(216, 92, 74, 0.35), rgba(242, 196, 81, 0.28), rgba(22, 127, 143, 0.55));
  border-radius: 50%;
  filter: drop-shadow(0 24px 40px rgba(0, 0, 0, 0.28));
  margin: 18px auto 32px;
  max-width: 300px;
  width: 82%;
  animation: slow-spin 22s linear infinite;
}

.hero-feature-copy {
  position: relative;
  z-index: 1;
}

.hero-feature-copy span {
  color: #f2c451;
  display: block;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.hero-feature-copy strong {
  display: block;
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.18;
}

.hero-feature-copy p {
  color: rgba(255, 254, 248, 0.7);
  line-height: 1.75;
  margin: 12px 0 0;
}

.immersive-hero .hero-digest {
  bottom: 24px;
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  left: clamp(22px, 6vw, 82px);
  margin: 0;
  position: absolute;
  right: clamp(22px, 6vw, 82px);
  z-index: 3;
}

.immersive-hero .hero-digest a {
  background: rgba(255, 254, 248, 0.08);
  border: 1px solid rgba(255, 254, 248, 0.15);
  border-radius: 8px;
  color: rgba(255, 254, 248, 0.9);
  font-weight: 900;
  min-height: 68px;
  padding: 16px;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
  backdrop-filter: blur(14px);
}

.immersive-hero .hero-digest a:hover {
  background: rgba(255, 254, 248, 0.14);
  border-color: rgba(242, 196, 81, 0.5);
  transform: translateY(-4px);
}

.immersive-hero .hero-digest span {
  border: 0;
  color: #f2c451;
  display: block;
  font-size: 12px;
  margin-bottom: 8px;
  padding: 0;
}

.signal-strip {
  border-bottom: 1px solid rgba(24, 32, 31, 0.08);
  color: rgba(24, 32, 31, 0.56);
  display: block;
  margin: -24px clamp(-54px, -4vw, -18px) 24px;
  overflow: hidden;
  padding: 12px clamp(18px, 4vw, 54px);
  white-space: nowrap;
}

.signal-group {
  display: flex;
  flex: 0 0 auto;
  gap: 28px;
  min-width: max-content;
  padding-right: 28px;
}

.signal-group span {
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

@keyframes slow-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes scan-light {
  0%,
  46% {
    left: -80%;
  }
  68%,
  100% {
    left: 138%;
  }
}

.text-link {
  color: var(--teal);
  font-weight: 900;
}

.text-link.on-dark {
  color: #f2c451;
}

.strategy-band {
  background: #fffef8;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  padding: 24px clamp(18px, 4vw, 54px);
}

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

.strategy-grid article {
  border-left: 3px solid var(--teal);
  min-height: 150px;
  padding: 12px 20px;
}

.strategy-grid span {
  color: var(--ruby);
  font-weight: 900;
}

.strategy-grid h2 {
  font-size: 22px;
  margin: 12px 0 8px;
}

.strategy-grid p,
.section-copy,
.awards-shell p,
.site-footer span {
  color: var(--muted);
  line-height: 1.8;
}

.strategy-grid p {
  color: var(--muted);
  margin: 0;
}

.section {
  padding: clamp(56px, 8vw, 104px) clamp(18px, 4vw, 54px);
}

.section-head {
  align-items: end;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 28px;
}

.section h2 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.1;
  margin: 0;
}

.page-hero {
  background: #17201f;
  color: #fffef8;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(70px, 10vw, 120px) clamp(18px, 4vw, 54px);
  position: relative;
}

.page-hero > *,
.page-awards-hero > * {
  position: relative;
  z-index: 1;
}

.page-hero::before,
.page-awards-hero::before {
  background:
    radial-gradient(circle at 12% 34%, rgba(242, 196, 81, 0.18) 0 2px, transparent 3px),
    radial-gradient(circle at 72% 22%, rgba(255, 254, 248, 0.16) 0 1px, transparent 2px),
    radial-gradient(circle at 86% 68%, rgba(216, 92, 74, 0.14) 0 2px, transparent 3px),
    repeating-linear-gradient(0deg, transparent 0 20px, rgba(255, 254, 248, 0.055) 21px 22px, transparent 23px 42px),
    repeating-linear-gradient(90deg, transparent 0 74px, rgba(22, 127, 143, 0.08) 75px 76px, transparent 77px 148px);
  content: "";
  inset: 0;
  opacity: 0.9;
  position: absolute;
  z-index: 0;
}

.page-hero::after,
.page-awards-hero::after {
  background:
    radial-gradient(circle at center, transparent 0 32%, rgba(255, 254, 248, 0.09) 33% 33.6%, transparent 34% 43%, rgba(255, 254, 248, 0.06) 44% 44.5%, transparent 45%),
    linear-gradient(135deg, rgba(22, 127, 143, 0.28), transparent 58%);
  border-radius: 50%;
  content: "";
  height: 520px;
  opacity: 0.72;
  position: absolute;
  right: clamp(-220px, -10vw, -80px);
  top: 50%;
  transform: translateY(-50%);
  width: 520px;
  z-index: 0;
}

.page-hero h1,
.page-awards-hero h1 {
  font-size: clamp(42px, 7vw, 86px);
  line-height: 1;
  margin: 0 0 18px;
}

.page-hero p,
.page-awards-hero p {
  color: rgba(255, 254, 248, 0.76);
  font-size: 19px;
  line-height: 1.8;
  max-width: 760px;
}

.compact-hero {
  background:
    linear-gradient(135deg, rgba(22, 127, 143, 0.26), rgba(216, 92, 74, 0.08) 48%, transparent),
    #17201f;
}

.news-pattern::before {
  background:
    radial-gradient(circle at 18% 68%, rgba(242, 196, 81, 0.18) 0 2px, transparent 3px),
    radial-gradient(circle at 76% 28%, rgba(216, 92, 74, 0.16) 0 2px, transparent 3px),
    repeating-linear-gradient(0deg, transparent 0 18px, rgba(255, 254, 248, 0.06) 19px 20px, transparent 21px 38px),
    repeating-linear-gradient(135deg, transparent 0 46px, rgba(22, 127, 143, 0.09) 47px 48px, transparent 49px 92px);
}

.news-pattern::after {
  background:
    radial-gradient(circle at 50% 50%, transparent 0 30%, rgba(242, 196, 81, 0.1) 31% 31.8%, transparent 32.6% 42%, rgba(255, 254, 248, 0.08) 43% 43.7%, transparent 44.5%),
    conic-gradient(from 210deg, rgba(22, 127, 143, 0.22), rgba(216, 92, 74, 0.08), transparent, rgba(242, 196, 81, 0.12));
}

.news-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.news-pills span {
  border: 1px solid rgba(255, 254, 248, 0.3);
  border-radius: 999px;
  color: rgba(255, 254, 248, 0.92);
  font-size: 13px;
  font-weight: 900;
  padding: 8px 12px;
}

.tinted {
  background: #e9f2ef;
}

.featured-layout {
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
}

.lead-story,
.story-card,
.content-card,
.review-card,
.composer-panel,
.metric,
.admin-board section,
.editor-form,
.admin-list,
.nominee-board {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.lead-story {
  align-items: center;
  display: grid;
  gap: clamp(22px, 4vw, 38px);
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1fr);
  min-height: 420px;
  padding: clamp(26px, 4vw, 46px);
}

.album-cover {
  aspect-ratio: 1;
  background: #e9f2ef;
  border: 1px solid rgba(24, 32, 31, 0.08);
  border-radius: 8px;
  box-shadow: 0 18px 38px rgba(24, 32, 31, 0.16);
  display: block;
  object-fit: cover;
  width: 116px;
}

.album-cover.large {
  width: 100%;
}

.album-cover.detail {
  width: min(420px, 100%);
}

.story-copy {
  min-width: 0;
}

.tag {
  background: rgba(22, 127, 143, 0.12);
  border-radius: 999px;
  color: var(--teal);
  display: inline-flex;
  font-size: 12px;
  font-weight: 800;
  padding: 7px 10px;
}

.lead-story h3 {
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.05;
  margin: 24px 0 18px;
}

.lead-story p,
.story-card p,
.content-card p,
.review-card p,
.composer-panel p,
.admin-list p,
.nominee-board p {
  color: var(--muted);
  line-height: 1.75;
}

.story-list,
.review-stack,
#taskList,
.linkage-list,
.admin-list,
.nominee-board {
  display: grid;
  gap: 14px;
}

.story-card,
.content-card,
.review-card {
  padding: 20px;
}

.story-card {
  align-items: start;
  display: grid;
  gap: 16px;
  grid-template-columns: 116px minmax(0, 1fr);
}

.album-page-grid,
.feature-list,
.review-page-list {
  display: grid;
  gap: 20px;
}

.album-page-card,
.feature-row,
.review-page-card,
.composer-page-card,
.role-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: clamp(20px, 3vw, 34px);
}

.album-page-card {
  display: grid;
  gap: clamp(22px, 4vw, 42px);
  grid-template-columns: minmax(180px, 300px) minmax(0, 1fr);
}

.album-detail-hero {
  align-items: center;
  background:
    linear-gradient(135deg, rgba(22, 127, 143, 0.24), transparent),
    #17201f;
  color: #fffef8;
  display: grid;
  gap: clamp(28px, 5vw, 56px);
  grid-template-columns: minmax(240px, 420px) minmax(0, 1fr);
  padding: clamp(56px, 8vw, 108px) clamp(18px, 4vw, 54px);
}

.album-detail-hero h1 {
  font-size: clamp(36px, 6vw, 78px);
  line-height: 1.02;
  margin: 18px 0;
}

.album-detail-hero p {
  color: rgba(255, 254, 248, 0.78);
  font-size: 18px;
  line-height: 1.8;
  max-width: 820px;
}

.article-detail-hero {
  align-items: center;
  background:
    radial-gradient(circle at 78% 22%, rgba(129, 97, 255, 0.28), transparent 34%),
    linear-gradient(135deg, rgba(22, 127, 143, 0.28), transparent),
    #17201f;
  color: #fffef8;
  display: grid;
  gap: clamp(20px, 4vw, 40px);
  grid-template-columns: minmax(0, 1fr) minmax(220px, 360px);
  min-height: 420px;
  padding: clamp(38px, 6vw, 68px) clamp(18px, 4vw, 54px);
}

.article-detail-hero h1 {
  font-size: clamp(30px, 4.2vw, 58px);
  line-height: 1.08;
  margin: 14px 0;
  max-width: 900px;
}

.article-detail-hero p {
  color: rgba(255, 254, 248, 0.78);
  font-size: 16px;
  line-height: 1.7;
  max-width: 760px;
}

.article-detail-cover {
  aspect-ratio: 16 / 10;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  object-fit: cover;
  width: 100%;
}

.article-detail-cover.review-detail-cover {
  aspect-ratio: 1;
  background: #020617;
  object-fit: contain;
  padding: 10px;
}

.article-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.article-detail-meta span {
  border: 1px solid rgba(255, 254, 248, 0.22);
  border-radius: 999px;
  color: rgba(255, 254, 248, 0.8);
  font-size: 13px;
  font-weight: 800;
  padding: 8px 12px;
}

.article-detail-layout {
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  padding-top: clamp(32px, 5vw, 62px);
}

.article-detail-main .article-body {
  font-size: 17px;
}

.article-detail-side {
  align-self: start;
  position: sticky;
  top: 92px;
}

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

.album-meta-grid.compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 16px 0;
}

.album-meta-grid span {
  border: 1px solid rgba(255, 254, 248, 0.22);
  border-radius: 8px;
  color: rgba(255, 254, 248, 0.86);
  display: grid;
  gap: 5px;
  padding: 12px;
}

.album-page-card .album-meta-grid span {
  border-color: var(--line);
  color: var(--muted);
}

.album-meta-grid strong {
  color: var(--teal);
  font-size: 12px;
}

.album-detail-body {
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
}

.detail-panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: clamp(22px, 4vw, 38px);
}

.track-list {
  counter-reset: tracks;
  display: grid;
  gap: 10px;
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
}

.track-list li {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  counter-increment: tracks;
  display: grid;
  gap: 12px;
  grid-template-columns: 44px minmax(0, 1fr);
  padding: 12px;
}

.track-list li::before {
  color: var(--teal);
  content: counter(tracks, decimal-leading-zero);
  font-weight: 900;
}

.wide-field {
  grid-column: span 2;
}

.feature-row {
  display: grid;
  gap: 24px;
  grid-template-columns: 220px minmax(0, 1fr);
}

.feature-row h2 a,
.composer-page-card h2 a,
.content-card h3 a,
.review-card h3 a,
.review-page-card h2 a,
.album-page-card h2 a,
.story-copy h3 a {
  color: inherit;
  text-decoration: none;
}

.feature-row h2 a:hover,
.composer-page-card h2 a:hover,
.content-card h3 a:hover,
.review-card h3 a:hover,
.review-page-card h2 a:hover,
.album-page-card h2 a:hover,
.story-copy h3 a:hover {
  color: var(--teal);
}

.feature-thumb {
  aspect-ratio: 4 / 3;
  background: #e9f2ef;
  border-radius: 8px;
  object-fit: cover;
  width: 100%;
}

.feature-thumb.square {
  aspect-ratio: 1;
}

.composer-page-grid,
.role-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.review-page-card {
  align-items: start;
  display: grid;
  gap: 20px;
  grid-template-columns: 120px 78px minmax(0, 1fr);
}

.article-body {
  color: var(--muted);
  line-height: 1.8;
  margin: 16px 0;
}

.article-body h2 {
  color: var(--ink);
  font-size: 22px;
  margin-top: 20px;
}

.page-awards-hero {
  isolation: isolate;
  overflow: hidden;
  padding: clamp(82px, 11vw, 140px) clamp(18px, 4vw, 54px);
  position: relative;
}

.award-timeline {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 28px;
}

.award-timeline article {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
}

.award-timeline span {
  color: var(--ruby);
  font-weight: 900;
}

.public-board {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}

.story-card h3,
.content-card h3,
.review-card h3,
.metric h3 {
  margin: 10px 0 8px;
}

.content-card {
  min-height: 230px;
}

.content-card .meta,
.review-card .meta,
.story-card .meta {
  color: var(--ruby);
  font-size: 13px;
  font-weight: 800;
}

.composer-layout,
.split-section,
.admin-board {
  display: grid;
  gap: 24px;
  grid-template-columns: 320px minmax(0, 1fr);
}

.composer-filter {
  display: grid;
  gap: 10px;
}

.composer-filter button,
.tab {
  background: transparent;
  border: 1px solid var(--line);
  cursor: pointer;
  text-align: left;
}

.composer-filter button {
  border-radius: 8px;
  padding: 14px 16px;
}

.composer-filter button.active,
.tab.active {
  background: var(--teal);
  border-color: var(--teal);
  color: #fffef8;
}

.composer-panel {
  min-height: 300px;
  padding: 30px;
}

.composer-panel h3 {
  font-size: clamp(28px, 4vw, 44px);
  margin: 0 0 10px;
}

.composer-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.composer-stats span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 12px;
}

.split-section {
  align-items: start;
}

.review-card {
  display: grid;
  gap: 10px;
  grid-template-columns: 86px minmax(0, 1fr);
}

.score {
  align-items: center;
  background: linear-gradient(135deg, var(--green), var(--teal));
  border-radius: 8px;
  color: #fff;
  display: flex;
  font-size: 28px;
  font-weight: 900;
  height: 78px;
  justify-content: center;
  width: 78px;
}

.awards {
  background: #17201f;
  color: #fffef8;
}

.awards-shell {
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
}

.awards-shell h3 {
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1;
  margin: 0 0 16px;
}

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

.award-category {
  background: rgba(255, 254, 248, 0.04);
  border: 1px solid rgba(255, 254, 248, 0.2);
  border-radius: 8px;
  padding: 20px;
}

.award-category span {
  color: #f2c451;
  display: block;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 10px;
}

.admin {
  background: #e9f2ef;
}

.admin-login {
  align-items: center;
  background:
    radial-gradient(circle at 18% 18%, rgba(72, 191, 255, 0.22), transparent 32%),
    radial-gradient(circle at 78% 28%, rgba(213, 98, 255, 0.18), transparent 34%),
    #071329;
  display: flex;
  justify-content: center;
  min-height: calc(100vh - 88px);
}

.login-card {
  background: rgba(8, 18, 38, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.3);
  color: #fff;
  max-width: 480px;
  padding: 34px;
  width: min(100%, 480px);
}

.login-card h1 {
  color: #fff;
  font-size: clamp(36px, 8vw, 64px);
  line-height: 1;
  margin: 8px 0 12px;
}

.login-form {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.login-form label {
  color: rgba(255, 255, 255, 0.72);
  display: grid;
  gap: 8px;
  font-size: 13px;
  font-weight: 800;
}

.login-form input {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: #fff;
  min-height: 48px;
  padding: 10px 12px;
}

.login-error {
  color: #ffb6c7;
  font-size: 13px;
  min-height: 18px;
}

.admin-top {
  align-items: center;
  display: flex;
  gap: 20px;
  justify-content: space-between;
  margin-bottom: 24px;
}

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

.admin-userbar span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.admin-view {
  display: none;
}

.admin-view.active {
  display: block;
}

.metric {
  padding: 22px;
}

.metric strong {
  display: block;
  font-size: 42px;
  line-height: 1;
}

.admin-board {
  margin-top: 20px;
}

.admin-board section {
  box-shadow: none;
  padding: 22px;
}

.task,
.linkage-list p,
.admin-item,
.nominee-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  margin: 0;
  padding: 14px;
}

.task strong,
.linkage-list strong {
  display: block;
  margin-bottom: 6px;
}

.editor-form {
  box-shadow: none;
  display: grid;
  gap: 16px;
  grid-template-columns: 150px minmax(210px, 1fr) minmax(240px, 1fr) minmax(180px, 0.8fr) 150px;
  margin-bottom: 20px;
  padding: 20px;
}

.rich-form {
  grid-template-columns: repeat(4, minmax(160px, 1fr)) 150px;
}

.account-form {
  grid-template-columns: repeat(5, minmax(140px, 1fr)) 150px;
}

.editor-form.compact {
  grid-template-columns: 260px minmax(260px, 1fr) 150px;
}

.editor-form label {
  color: var(--muted);
  display: grid;
  gap: 7px;
  font-size: 13px;
  font-weight: 800;
}

.editor-form input,
.editor-form select,
.editor-form textarea {
  background: #fffef8;
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 44px;
  padding: 10px 12px;
  width: 100%;
}

.media-field {
  display: grid;
  gap: 8px;
  grid-template-columns: minmax(0, 1fr) 94px;
}

.media-field button {
  background: #fffef8;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  min-height: 44px;
  padding: 8px 10px;
}

.editor-form select[name="coverPosition"] {
  cursor: pointer;
}

.field-hint {
  color: var(--muted);
  min-height: 16px;
}

.editor-form textarea {
  min-height: 44px;
  resize: vertical;
}

.editor-form button {
  align-self: end;
}

.rich-editor-block {
  grid-column: 1 / -1;
}

.editor-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 8px;
}

.editor-toolbar button {
  background: #fffef8;
  border: 1px solid var(--line);
  border-radius: 7px;
  cursor: pointer;
  min-height: 36px;
  padding: 7px 12px;
}

.rich-editor {
  background: #fffef8;
  border: 1px solid var(--line);
  border-radius: 8px;
  line-height: 1.8;
  min-height: 220px;
  outline: none;
  padding: 16px;
}

.source-editor {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  color: #fff;
  font-family: "SFMono-Regular", Consolas, monospace;
  line-height: 1.7;
  min-height: 320px;
  padding: 16px;
  resize: vertical;
  width: 100%;
}

.rich-editor:empty::before {
  color: #9aa39f;
  content: "可直接粘贴 Word 内容，保留基础标题、列表、加粗和段落格式";
}

.admin-list,
.nominee-board {
  box-shadow: none;
  padding: 16px;
}

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

.admin-actions,
.account-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.admin-action-link {
  align-items: center;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  display: inline-flex;
  font-size: 13px;
  font-weight: 800;
  min-height: 38px;
  padding: 9px 12px;
  text-decoration: none;
}

.admin-action-link:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.admin-item button,
.nominee-item button {
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  min-width: 72px;
  padding: 9px 12px;
}

.admin-item button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.form-message {
  align-self: end;
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
  margin: 0;
}

.form-message.error {
  color: #d85c4a;
}

.nominee-category {
  display: grid;
  gap: 10px;
}

.nominee-category h3 {
  margin: 12px 0 0;
}

.nominee-item {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.site-footer {
  align-items: center;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 12px;
  justify-content: space-between;
  padding: 26px clamp(18px, 4vw, 54px);
}

@media (max-width: 980px) {
  .site-header,
  .admin-top,
  .section-head,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .strategy-grid,
  .card-grid,
  .metric-grid,
  .hero-grid,
  .featured-layout,
  .album-page-card,
  .album-detail-hero,
  .album-detail-body,
  .article-detail-hero,
  .article-detail-layout,
  .feature-row,
  .composer-page-grid,
  .review-page-card,
  .award-timeline,
  .role-grid,
  .composer-layout,
  .split-section,
  .awards-shell,
  .admin-board,
  .editor-form,
  .rich-form,
  .editor-form.compact {
    grid-template-columns: 1fr;
  }

  .article-detail-side {
    position: static;
  }

  .hero {
    min-height: 720px;
  }

  .immersive-hero {
    min-height: auto;
  }

  .immersive-hero > img {
    opacity: 0.34;
  }

  .hero-grid {
    padding-bottom: 26px;
  }

  .immersive-hero .hero-content {
    padding: 0;
  }

  .hero-feature-card {
    min-height: auto;
  }

  .immersive-hero .hero-digest {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 0;
    padding: 0 clamp(22px, 6vw, 82px) 28px;
    position: relative;
    inset: auto;
  }

  .award-categories {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .main-nav {
    justify-content: flex-start;
  }

  .hero-content {
    padding-top: 74px;
  }

  .immersive-hero .hero-content {
    padding-top: 0;
  }

  .hero-grid {
    padding-top: 58px;
  }

  .immersive-hero h1 {
    font-size: clamp(34px, 12vw, 48px);
  }

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

  .lead-story {
    min-height: auto;
  }

  .lead-story,
  .story-card {
    grid-template-columns: 1fr;
  }

  .story-card .album-cover {
    width: min(220px, 100%);
  }

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

  .score {
    height: 58px;
    width: 70px;
  }

  .admin-item,
  .nominee-item {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Nova-style visual skin: dark glass, luminous depth, content unchanged. */
:root {
  color-scheme: dark;
  --ink: #f8fafc;
  --muted: rgba(248, 250, 252, 0.66);
  --line: rgba(255, 255, 255, 0.1);
  --paper: #030405;
  --panel: rgba(11, 11, 16, 0.72);
  --charcoal: #050608;
  --ruby: #fb7185;
  --teal: #8b5cf6;
  --brass: #c4b5fd;
  --green: #22d3ee;
  --violet: #6366f1;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
}

@keyframes fadeSlideIn {
  0% {
    filter: blur(4px);
    opacity: 0;
    transform: translateY(22px);
  }
  100% {
    filter: blur(0);
    opacity: 1;
    transform: translateY(0);
  }
}

body {
  background:
    radial-gradient(circle at 18% 10%, rgba(99, 102, 241, 0.24), transparent 26rem),
    radial-gradient(circle at 86% 18%, rgba(139, 92, 246, 0.22), transparent 28rem),
    radial-gradient(circle at 50% 86%, rgba(34, 211, 238, 0.12), transparent 30rem),
    #030405;
  color: var(--ink);
}

body::before {
  background:
    linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px);
  background-size: 72px 72px;
  content: "";
  inset: 0;
  mask-image: linear-gradient(180deg, #000, transparent 76%);
  opacity: 0.46;
  pointer-events: none;
  position: fixed;
  z-index: -2;
}

.site-header {
  background: rgba(0, 0, 0, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 15px clamp(18px, 4vw, 54px);
  backdrop-filter: blur(24px);
}

.brand {
  color: #fff;
}

.brand-mark {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  box-shadow: 0 0 30px rgba(139, 92, 246, 0.35);
}

.brand small {
  color: rgba(255, 255, 255, 0.58);
}

.main-nav a,
.tab {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 700;
}

.main-nav a:hover,
.tab:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.hero,
.immersive-hero {
  background: transparent;
  min-height: min(860px, calc(100vh - 70px));
}

.immersive-hero > img {
  filter: saturate(0.72) brightness(0.48) contrast(1.08);
  opacity: 0.28;
}

.immersive-hero .hero-overlay {
  background:
    linear-gradient(180deg, rgba(3, 4, 5, 0.44), rgba(3, 4, 5, 0.9)),
    radial-gradient(circle at 34% 32%, rgba(99, 102, 241, 0.26), transparent 32%),
    radial-gradient(circle at 76% 32%, rgba(139, 92, 246, 0.32), transparent 34%);
}

.hero-staff {
  background:
    radial-gradient(circle at 20% 28%, rgba(255, 255, 255, 0.75) 0 1px, transparent 2px),
    radial-gradient(circle at 66% 20%, rgba(196, 181, 253, 0.8) 0 1px, transparent 2px),
    radial-gradient(circle at 84% 70%, rgba(34, 211, 238, 0.54) 0 1px, transparent 2px),
    repeating-linear-gradient(178deg, transparent 0 30px, rgba(255, 255, 255, 0.05) 31px 32px, transparent 33px 60px);
}

.hero-orbit::before,
.hero-orbit::after {
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 0 50px rgba(99, 102, 241, 0.16), 0 0 64px rgba(139, 92, 246, 0.16);
}

.hero-grid {
  margin: 0 auto;
  max-width: 1180px;
  padding-left: 24px;
  padding-right: 24px;
}

.hero-content,
.hero-feature-card,
.strategy-grid article,
.section-head,
.featured-layout,
.card-grid,
.composer-layout,
.split-section,
.awards-shell,
.album-page-grid,
.feature-list,
.review-page-list,
.composer-page-grid,
.award-timeline,
.nominee-board,
.admin-top,
.metric-grid,
.admin-board,
.editor-form,
.admin-list,
.role-grid {
  animation: fadeSlideIn 0.9s ease-out both;
}

.hero h1,
.immersive-hero h1 {
  color: #fff;
  font-size: clamp(34px, 4.8vw, 62px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.08;
  max-width: 700px;
}

.hero-copy {
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(16px, 1.7vw, 20px);
  max-width: 560px;
}

.eyebrow,
.hero .eyebrow {
  color: #c4b5fd;
  font-weight: 800;
}

.hero-meta span,
.hero-digest span {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(14px);
}

.hero-meta span:first-child {
  background: linear-gradient(135deg, #4338ca, #6366f1, #8b5cf6);
  border-color: rgba(255, 255, 255, 0.16);
}

.button {
  border-radius: 999px;
  min-height: 52px;
  overflow: hidden;
  padding: 13px 22px;
  position: relative;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button::before {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0));
  border-radius: inherit;
  content: "";
  inset: 1px;
  pointer-events: none;
  position: absolute;
}

.button.primary {
  background:
    radial-gradient(65% 65% at 50% 100%, rgba(199, 210, 254, 0.34), transparent 70%),
    linear-gradient(135deg, #4338ca, #6366f1, #8b5cf6);
  box-shadow: 0 12px 38px rgba(99, 102, 241, 0.38);
  color: #fff;
}

.button.primary:hover,
.button:hover {
  background:
    radial-gradient(65% 65% at 50% 100%, rgba(199, 210, 254, 0.42), transparent 70%),
    linear-gradient(135deg, #4f46e5, #7c3aed, #a855f7);
  box-shadow: 0 18px 48px rgba(99, 102, 241, 0.5);
  transform: translateY(-2px);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.hero-feature-card,
.lead-story,
.story-card,
.content-card,
.review-card,
.composer-panel,
.metric,
.admin-board section,
.editor-form,
.admin-list,
.nominee-board,
.album-page-card,
.feature-row,
.review-page-card,
.composer-page-card,
.role-card,
.detail-panel,
.award-timeline article,
.award-category {
  background: rgba(11, 11, 16, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  box-shadow: var(--shadow);
  color: #fff;
  backdrop-filter: blur(22px);
}

.hero-feature-card {
  border-radius: 24px;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.48), 0 0 0 1px rgba(255, 255, 255, 0.06);
  transform: translateY(20px) scale(0.96);
}

.hero-feature-card::after {
  background: linear-gradient(90deg, rgba(99, 102, 241, 0), rgba(99, 102, 241, 0.26), rgba(99, 102, 241, 0));
  content: "";
  height: 1px;
  left: 14%;
  position: absolute;
  right: 14%;
  top: 54%;
}

.hero-feature-cover {
  border-radius: 18px;
}

.hero-feature-card.visual-only {
  aspect-ratio: 0.86;
  display: flex;
  min-height: 0;
  padding: 14px;
}

.hero-feature-card.visual-only::after {
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.28), transparent 22%),
    linear-gradient(180deg, transparent 46%, rgba(3, 4, 8, 0.36));
  inset: 14px;
  height: auto;
  left: 14px;
  pointer-events: none;
  right: 14px;
  top: 14px;
  border-radius: 20px;
  z-index: 2;
}

.hero-feature-link {
  border-radius: 20px;
  display: block;
  min-height: 100%;
  overflow: hidden;
  position: relative;
  width: 100%;
  z-index: 1;
}

.hero-feature-link::before {
  background: linear-gradient(115deg, transparent 0 34%, rgba(255, 255, 255, 0.42) 48%, transparent 62% 100%);
  content: "";
  inset: -18%;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  transform: translateX(-62%) rotate(6deg);
  transition: opacity 0.32s ease, transform 0.72s ease;
  z-index: 3;
}

.hero-feature-card.visual-only .hero-feature-cover {
  border: 0;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 0.5s ease, filter 0.5s ease;
}

.hero-feature-card.visual-only:hover .hero-feature-cover {
  filter: saturate(1.08) brightness(0.92);
  transform: scale(1.045);
}

.hero-feature-card.visual-only:hover .hero-feature-link::before {
  opacity: 0.62;
  transform: translateX(62%) rotate(6deg);
}

.hero-feature-copy span,
.award-category span,
.content-card .meta,
.review-card .meta,
.story-card .meta {
  color: #c4b5fd;
}

.immersive-hero .hero-digest {
  gap: 14px;
  margin: 0 auto;
  max-width: 1128px;
}

.immersive-hero .hero-digest a {
  background: rgba(11, 11, 16, 0.68);
  border-color: rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  min-height: 78px;
  padding: 18px;
}

.immersive-hero .hero-digest a:hover {
  border-color: rgba(196, 181, 253, 0.5);
  box-shadow: 0 18px 42px rgba(99, 102, 241, 0.2);
}

.immersive-hero .hero-digest span {
  color: #c4b5fd;
}

.strategy-band,
.tinted,
.section,
.awards,
.admin {
  background: transparent;
  color: #fff;
}

.strategy-band {
  border-bottom: 0;
  padding-bottom: clamp(48px, 7vw, 86px);
}

.signal-strip {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.44);
}

.strategy-grid,
.section-head,
.featured-layout,
.card-grid,
.composer-layout,
.split-section,
.awards-shell,
.site-footer,
.album-page-grid,
.feature-list,
.review-page-list,
.composer-page-grid,
.award-timeline,
.nominee-board,
.admin-top,
.metric-grid,
.admin-board,
.role-grid,
.editor-form,
.admin-list,
.podcast-home {
  margin-left: auto;
  margin-right: auto;
  max-width: 1128px;
}

.strategy-grid article {
  border-left: 0;
  padding: 24px;
}

.strategy-grid span {
  color: #c4b5fd;
}

.strategy-grid p,
.section-copy,
.awards-shell p,
.site-footer span,
.lead-story p,
.story-card p,
.content-card p,
.review-card p,
.composer-panel p,
.admin-list p,
.nominee-board p,
.article-body,
.page-hero p,
.page-awards-hero p,
.album-detail-hero p {
  color: rgba(255, 255, 255, 0.66);
}

.section {
  padding-top: clamp(70px, 9vw, 120px);
  padding-bottom: clamp(70px, 9vw, 120px);
}

.section-head {
  color: #fff;
  margin-bottom: 34px;
}

.section h2,
.page-hero h1,
.page-awards-hero h1,
.album-detail-hero h1 {
  color: #fff;
  font-weight: 700;
  letter-spacing: 0;
}

.text-link {
  color: rgba(255, 255, 255, 0.62);
}

.text-link:hover {
  color: #fff;
}

.featured-layout {
  align-items: stretch;
}

.lead-story {
  min-height: 520px;
}

#news .story-list {
  grid-template-rows: repeat(3, minmax(0, 1fr));
  height: 100%;
}

#news .lead-story,
#news .story-card {
  height: 100%;
}

#news .story-card {
  align-items: center;
  min-height: 0;
}

#news .lead-story h3 {
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.12;
}

#news .lead-story p,
#news .story-card p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
}

#news .lead-story p {
  -webkit-line-clamp: 4;
}

#news .story-card p {
  -webkit-line-clamp: 2;
}

.album-cover,
.feature-thumb {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.38);
}

.tag {
  background: rgba(99, 102, 241, 0.16);
  color: #c4b5fd;
}

.composer-filter button,
.tab,
.track-list li,
.composer-stats span,
.task,
.linkage-list p,
.admin-item,
.nominee-item,
.editor-toolbar button,
.media-field button,
.editor-form input,
.editor-form select,
.editor-form textarea,
.rich-editor {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.composer-filter button.active,
.tab.active {
  background: linear-gradient(135deg, #4338ca, #6366f1, #8b5cf6);
  border-color: rgba(255, 255, 255, 0.14);
}

.score {
  background:
    radial-gradient(65% 65% at 50% 100%, rgba(199, 210, 254, 0.28), transparent 70%),
    linear-gradient(135deg, #4338ca, #6366f1, #8b5cf6);
  border-radius: 18px;
}

.awards {
  position: relative;
}

.awards::before {
  background:
    radial-gradient(circle at 20% 10%, rgba(99, 102, 241, 0.2), transparent 24rem),
    radial-gradient(circle at 86% 40%, rgba(139, 92, 246, 0.18), transparent 28rem);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

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

.page-hero,
.page-awards-hero,
.album-detail-hero {
  background:
    radial-gradient(circle at 20% 20%, rgba(99, 102, 241, 0.24), transparent 26rem),
    radial-gradient(circle at 80% 26%, rgba(139, 92, 246, 0.18), transparent 26rem),
    rgba(3, 4, 5, 0.88);
}

.album-meta-grid span,
.album-page-card .album-meta-grid span {
  background: rgba(255, 255, 255, 0.035);
  border-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
}

.album-meta-grid strong,
.track-list li::before {
  color: #c4b5fd;
}

.article-body h2 {
  color: #fff;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
}

@media (max-width: 980px) {
  .hero h1,
  .immersive-hero h1 {
    font-size: clamp(36px, 8.5vw, 58px);
  }

  .hero-feature-card {
    transform: none;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 14px 18px;
  }

  .main-nav {
    gap: 4px 8px;
  }

  .main-nav a {
    padding: 7px 8px;
  }

  .hero-grid {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero h1,
  .immersive-hero h1 {
    font-size: clamp(32px, 10vw, 44px);
  }

  #news .lead-story {
    min-height: auto;
  }

  #news .story-list {
    grid-template-rows: none;
  }

  .section {
    padding-left: 18px;
    padding-right: 18px;
  }
}

.hero-aurora {
  filter: saturate(1.18);
  inset: -22% -12% -10%;
  mix-blend-mode: screen;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.hero-aurora::before {
  animation: auroraDrift 16s ease-in-out infinite alternate;
  background:
    radial-gradient(ellipse at 38% 34%, rgba(139, 92, 246, 0.44), transparent 34%),
    radial-gradient(ellipse at 66% 38%, rgba(99, 102, 241, 0.34), transparent 32%),
    radial-gradient(ellipse at 54% 62%, rgba(34, 211, 238, 0.16), transparent 34%);
  content: "";
  filter: blur(38px);
  inset: 2% 0 8%;
  opacity: 0.9;
  position: absolute;
  transform: translate3d(0, 0, 0) scale(1.02);
}

.hero-aurora span {
  animation: auroraRipple 18s ease-in-out infinite;
  background:
    repeating-radial-gradient(
      ellipse at center,
      transparent 0 8%,
      rgba(196, 181, 253, 0.08) 8.5% 9%,
      transparent 9.5% 15%,
      rgba(99, 102, 241, 0.12) 15.4% 16%,
      transparent 16.6% 25%
    ),
    radial-gradient(ellipse at center, rgba(139, 92, 246, 0.3), rgba(99, 102, 241, 0.1) 42%, transparent 68%);
  border-radius: 50%;
  height: 44vmax;
  left: 50%;
  mask-image: radial-gradient(ellipse at center, #000 0 58%, transparent 76%);
  opacity: 0.78;
  position: absolute;
  top: 48%;
  transform: translate(-50%, -50%) rotate(-8deg) scale(1);
  width: 112vmax;
}

.hero-aurora span:nth-child(2) {
  animation-delay: -5s;
  animation-duration: 22s;
  height: 36vmax;
  opacity: 0.48;
  top: 38%;
  transform: translate(-50%, -50%) rotate(7deg) scale(0.9);
  width: 92vmax;
}

.hero-aurora span:nth-child(3) {
  animation-delay: -9s;
  animation-duration: 26s;
  height: 52vmax;
  left: 58%;
  opacity: 0.34;
  top: 56%;
  transform: translate(-50%, -50%) rotate(14deg) scale(1.06);
  width: 122vmax;
}

.hero-aurora span:nth-child(4) {
  animation-delay: -13s;
  animation-duration: 30s;
  height: 28vmax;
  left: 44%;
  opacity: 0.5;
  top: 30%;
  transform: translate(-50%, -50%) rotate(-16deg) scale(0.82);
  width: 76vmax;
}

.immersive-hero > img {
  opacity: 0.16;
}

.immersive-hero .hero-overlay {
  background:
    linear-gradient(180deg, rgba(3, 4, 5, 0.1), rgba(3, 4, 5, 0.78)),
    radial-gradient(circle at 30% 30%, rgba(3, 4, 5, 0.18), transparent 34%),
    radial-gradient(circle at 74% 42%, rgba(3, 4, 5, 0.22), transparent 40%);
}

.hero-grid,
.immersive-hero .hero-digest {
  z-index: 3;
}

.hero-orbit,
.hero-staff {
  z-index: 2;
}

@keyframes auroraDrift {
  0% {
    opacity: 0.68;
    transform: translate3d(-4%, -2%, 0) scale(1);
  }
  50% {
    opacity: 0.96;
    transform: translate3d(3%, 2%, 0) scale(1.08);
  }
  100% {
    opacity: 0.74;
    transform: translate3d(7%, -1%, 0) scale(1.03);
  }
}

@keyframes auroraRipple {
  0% {
    filter: blur(0);
    transform: translate(-52%, -50%) rotate(-10deg) scale(0.9);
  }
  42% {
    filter: blur(1.5px);
    transform: translate(-48%, -52%) rotate(3deg) scale(1.08);
  }
  72% {
    filter: blur(0.4px);
    transform: translate(-50%, -47%) rotate(12deg) scale(1);
  }
  100% {
    filter: blur(0);
    transform: translate(-52%, -50%) rotate(-10deg) scale(0.9);
  }
}

@media (max-width: 640px) {
  .hero-aurora {
    inset: -16% -46% -8%;
  }

  .hero-aurora span {
    height: 68vmax;
    width: 150vmax;
  }
}

.brand-mark {
  background:
    radial-gradient(circle at 35% 28%, rgba(99, 102, 241, 0.24), transparent 44%),
    #03040c;
  border: 1px solid rgba(196, 181, 253, 0.22);
  border-radius: 12px;
  box-shadow: 0 0 28px rgba(99, 102, 241, 0.28);
  height: 46px;
  overflow: hidden;
  width: 46px;
}

.brand-mark img {
  border-radius: inherit;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.track-editor {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  display: grid;
  gap: 12px;
  padding: 14px;
}

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

.track-editor-head span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 900;
}

.track-editor-head button,
.track-row button {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  color: #fff;
  cursor: pointer;
  min-height: 38px;
  padding: 8px 12px;
}

.track-rows {
  display: grid;
  gap: 10px;
}

.track-row {
  display: grid;
  gap: 10px;
  grid-template-columns: minmax(220px, 1fr) 150px 82px;
}

.track-list li span {
  align-items: center;
  display: flex;
  gap: 12px;
  justify-content: space-between;
}

.track-list small {
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
  font-weight: 800;
}

.quill-ready .editor-toolbar {
  display: none;
}

.ql-toolbar.ql-snow,
.ql-container.ql-snow {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1) !important;
  color: #fff;
}

.ql-toolbar.ql-snow {
  border-radius: 14px 14px 0 0;
}

.ql-container.ql-snow {
  border-radius: 0 0 14px 14px;
  min-height: 280px;
}

.ql-editor {
  color: #fff;
  font-size: 15px;
  line-height: 1.8;
  min-height: 280px;
}

.ql-editor.ql-blank::before {
  color: rgba(255, 255, 255, 0.42);
  font-style: normal;
}

.ql-snow .ql-stroke {
  stroke: rgba(255, 255, 255, 0.76);
}

.ql-snow .ql-fill,
.ql-snow .ql-stroke.ql-fill {
  fill: rgba(255, 255, 255, 0.76);
}

.ql-snow .ql-picker,
.ql-snow .ql-picker-options {
  color: rgba(255, 255, 255, 0.82);
}

.ql-snow .ql-picker-options {
  background: #0b0b10;
  border-color: rgba(255, 255, 255, 0.14) !important;
}

.ql-editor img,
.article-body img {
  border-radius: 14px;
  display: block;
  height: auto;
  margin: 18px 0;
  max-width: 100%;
}

.ql-editor video,
.article-body video {
  border-radius: 14px;
  display: block;
  margin: 18px 0;
  max-width: 100%;
  width: 100%;
}

.media-embed {
  background: rgba(6, 13, 30, 0.06);
  border: 1px solid var(--line);
  border-radius: 8px;
  margin: 22px 0;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.media-embed::before {
  content: "";
  display: block;
  padding-top: 56.25%;
}

.media-embed.compact::before {
  padding-top: 96px;
}

.media-embed.apple-music::before {
  padding-top: 175px;
}

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

.immersive-hero {
  isolation: isolate;
}

.immersive-hero::before,
.immersive-hero::after {
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.immersive-hero::before {
  animation: starSeaDrift 34s linear infinite;
  background:
    radial-gradient(circle at 8% 18%, rgba(255, 255, 255, 0.9) 0 1px, transparent 1.8px),
    radial-gradient(circle at 18% 74%, rgba(196, 181, 253, 0.88) 0 1px, transparent 2px),
    radial-gradient(circle at 32% 36%, rgba(125, 211, 252, 0.85) 0 1px, transparent 2px),
    radial-gradient(circle at 48% 68%, rgba(255, 255, 255, 0.76) 0 1px, transparent 1.7px),
    radial-gradient(circle at 68% 24%, rgba(232, 121, 249, 0.75) 0 1px, transparent 2px),
    radial-gradient(circle at 82% 62%, rgba(255, 255, 255, 0.86) 0 1px, transparent 1.8px),
    radial-gradient(circle at 94% 32%, rgba(147, 197, 253, 0.8) 0 1px, transparent 2px);
  background-size: 680px 680px;
  opacity: 0.72;
  z-index: 1;
}

.immersive-hero::after {
  animation: starWaveFloat 18s ease-in-out infinite alternate;
  background:
    repeating-radial-gradient(ellipse at 54% 58%, transparent 0 8%, rgba(147, 197, 253, 0.12) 8.4% 8.9%, transparent 9.3% 15%),
    repeating-linear-gradient(165deg, transparent 0 28px, rgba(196, 181, 253, 0.09) 29px 31px, transparent 32px 72px);
  filter: blur(0.4px);
  mask-image: linear-gradient(180deg, transparent 8%, #000 28%, #000 86%, transparent);
  opacity: 0.88;
  transform: translateY(0) scale(1.04);
  z-index: 1;
}

.immersive-hero > img {
  filter: grayscale(0.08) brightness(0.46) saturate(0.9);
  opacity: 0.36;
}

.immersive-hero .hero-overlay {
  background:
    linear-gradient(90deg, rgba(3, 4, 8, 0.88), rgba(8, 9, 18, 0.72) 48%, rgba(10, 12, 22, 0.48)),
    linear-gradient(180deg, rgba(38, 38, 48, 0.3), rgba(3, 4, 8, 0.86)),
    rgba(36, 38, 46, 0.26);
  z-index: 1;
}

.hero-content,
.hero-feature-copy,
.story-copy {
  text-shadow: 0 12px 34px rgba(0, 0, 0, 0.38);
}

.signal-strip {
  align-items: center;
  border-bottom: 0;
  color: rgba(255, 255, 255, 0.58);
  --signal-gap: clamp(22px, 4vw, 54px);
  margin-bottom: 30px;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  position: relative;
}

.signal-track {
  --signal-cycle-start: -100%;
  --signal-cycle-end: 100vw;
  animation: signalGlide 18s linear infinite;
  display: flex;
  transform: translateX(var(--signal-cycle-start));
  width: max-content;
  will-change: transform;
}

.signal-group {
  gap: var(--signal-gap);
  justify-content: space-around;
  padding-right: var(--signal-gap);
}

.signal-strip::before,
.signal-strip::after {
  background: linear-gradient(90deg, transparent, rgba(147, 197, 253, 0.42), transparent);
  content: "";
  height: 1px;
  left: 18%;
  position: absolute;
  right: 18%;
}

.signal-strip::before {
  top: 0;
}

.signal-strip::after {
  bottom: 0;
}

.signal-group span {
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(13px, 1.45vw, 18px);
  letter-spacing: 0.08em;
  text-shadow:
    0 0 16px rgba(99, 102, 241, 0.52),
    0 0 26px rgba(34, 211, 238, 0.24);
}

.signal-group span:nth-child(2n) {
  color: rgba(196, 181, 253, 0.9);
}

.signal-group span:nth-child(3n) {
  color: rgba(125, 211, 252, 0.86);
}

@keyframes starSeaDrift {
  to {
    background-position: 680px -680px;
  }
}

@keyframes starWaveFloat {
  0% {
    opacity: 0.64;
    transform: translate3d(-2%, 2%, 0) scale(1.02) rotate(-1deg);
  }
  100% {
    opacity: 0.94;
    transform: translate3d(2%, -2%, 0) scale(1.08) rotate(1.5deg);
  }
}

@keyframes signalGlide {
  from {
    transform: translateX(var(--signal-cycle-start));
  }
  to {
    transform: translateX(var(--signal-cycle-end));
  }
}

@media (prefers-reduced-motion: reduce) {
  .signal-track {
    animation: none;
  }
}

.article-body > iframe,
.rich-editor > iframe {
  border: 0;
  border-radius: 8px;
  display: block;
  min-height: 360px;
  width: 100%;
}

.rich-editor .media-embed {
  background: rgba(22, 127, 143, 0.08);
}

.tinymce-ready .editor-toolbar {
  display: none;
}

.tinymce-ready .rich-editor {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0 0 14px 14px;
  min-height: 320px;
}

.tox.tox-tinymce-inline .tox-editor-header {
  background: rgba(11, 11, 16, 0.96) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 14px !important;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.42) !important;
}

.tox .tox-toolbar,
.tox .tox-toolbar__overflow,
.tox .tox-toolbar__primary {
  background: rgba(11, 11, 16, 0.96) !important;
}

.tox .tox-tbtn,
.tox .tox-split-button {
  color: rgba(255, 255, 255, 0.78) !important;
}

.tox .tox-tbtn svg {
  fill: rgba(255, 255, 255, 0.78) !important;
}

.tox .tox-tbtn:hover,
.tox .tox-tbtn--enabled {
  background: rgba(99, 102, 241, 0.26) !important;
}

.tox .tox-edit-area__iframe {
  background: rgba(11, 11, 16, 0.7) !important;
}

@media (max-width: 760px) {
  .track-row {
    grid-template-columns: 1fr;
  }
}

.immersive-hero {
  background:
    radial-gradient(circle at 72% 18%, rgba(255, 208, 120, 0.18), transparent 22%),
    radial-gradient(circle at 22% 26%, rgba(64, 210, 255, 0.22), transparent 28%),
    linear-gradient(180deg, #030914 0%, #071a2a 52%, #062239 76%, #031018 100%);
}

.hero > img {
  z-index: 0;
}

.immersive-hero > img {
  filter: grayscale(0.1) brightness(0.34) contrast(1.08) saturate(0.88);
  opacity: 0.32;
}

.immersive-hero .hero-overlay {
  background:
    linear-gradient(90deg, rgba(3, 7, 14, 0.94), rgba(6, 14, 24, 0.82) 44%, rgba(8, 17, 30, 0.62)),
    linear-gradient(180deg, rgba(40, 44, 55, 0.46), rgba(3, 7, 14, 0.92)),
    rgba(28, 31, 39, 0.46);
  z-index: 1;
}

.cosmos-field,
.cosmos-wave {
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.cosmos-field {
  animation: cosmosDrift 42s linear infinite;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.95) 0 1px, transparent 1.8px),
    radial-gradient(circle at 28% 36%, rgba(104, 221, 255, 0.9) 0 1px, transparent 2px),
    radial-gradient(circle at 44% 16%, rgba(255, 220, 154, 0.82) 0 1px, transparent 2px),
    radial-gradient(circle at 62% 42%, rgba(255, 255, 255, 0.84) 0 1px, transparent 1.8px),
    radial-gradient(circle at 78% 21%, rgba(190, 170, 255, 0.82) 0 1px, transparent 2px),
    radial-gradient(circle at 88% 62%, rgba(104, 221, 255, 0.86) 0 1px, transparent 2px);
  background-size: 720px 720px;
  opacity: 0.88;
}

.cosmos-wave {
  animation: oceanPulse 16s ease-in-out infinite alternate;
  background:
    repeating-radial-gradient(ellipse at 48% 82%, transparent 0 7%, rgba(91, 210, 255, 0.16) 7.5% 8%, transparent 8.5% 13%),
    repeating-linear-gradient(173deg, transparent 0 34px, rgba(90, 216, 255, 0.12) 35px 37px, transparent 38px 78px),
    linear-gradient(180deg, transparent 42%, rgba(9, 76, 116, 0.22) 72%, rgba(28, 184, 196, 0.24));
  filter: blur(0.3px);
  mask-image: linear-gradient(180deg, transparent 18%, rgba(0, 0, 0, 0.86) 48%, #000 100%);
}

.cosmos-note,
.cosmos-game {
  color: rgba(255, 246, 214, 0.72);
  font-size: clamp(24px, 4vw, 54px);
  font-weight: 900;
  position: absolute;
  text-shadow: 0 0 24px rgba(90, 216, 255, 0.42);
}

.cosmos-note:nth-child(1) {
  animation: musicFloat 9s ease-in-out infinite;
  right: 18%;
  top: 24%;
}

.cosmos-note:nth-child(2) {
  animation: musicFloat 12s ease-in-out infinite reverse;
  left: 42%;
  top: 68%;
}

.cosmos-game:nth-child(3) {
  animation: musicFloat 11s ease-in-out infinite;
  color: rgba(104, 221, 255, 0.8);
  left: 18%;
  top: 30%;
}

.cosmos-game:nth-child(4) {
  animation: musicFloat 13s ease-in-out infinite reverse;
  color: rgba(255, 189, 110, 0.76);
  right: 34%;
  top: 54%;
}

.hero-staff {
  background:
    radial-gradient(circle at 26% 68%, rgba(255, 254, 248, 0.56) 0 1px, transparent 2px),
    radial-gradient(circle at 74% 28%, rgba(255, 205, 120, 0.7) 0 1px, transparent 2px),
    repeating-linear-gradient(176deg, transparent 0 23px, rgba(255, 254, 248, 0.085) 24px 25px, transparent 26px 50px);
  opacity: 0.74;
}

.award-status-panel {
  background: rgba(255, 254, 248, 0.08);
  border: 1px solid rgba(255, 254, 248, 0.18);
  border-radius: 8px;
  display: grid;
  gap: 8px;
  margin-top: 28px;
  max-width: 760px;
  padding: 18px 20px;
  position: relative;
  z-index: 1;
  backdrop-filter: blur(14px);
}

.award-status-panel span {
  color: #ffd98a;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.award-status-panel strong {
  color: #fffef8;
  font-size: clamp(18px, 2.5vw, 28px);
  line-height: 1.35;
}

.award-status-panel p {
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.7;
  margin: 0;
}

.award-auth-panel {
  margin-top: 18px;
  max-width: 1040px;
  position: relative;
  z-index: 2;
}

.award-auth-card {
  align-items: end;
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.78), rgba(30, 41, 59, 0.5)),
    radial-gradient(circle at 88% 20%, rgba(34, 211, 238, 0.16), transparent 32%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  color: #fff;
  display: grid;
  gap: 16px;
  grid-template-columns: minmax(260px, 1fr) minmax(200px, 0.62fr) minmax(200px, 0.62fr);
  padding: clamp(18px, 3vw, 26px);
  backdrop-filter: blur(18px);
}

.award-auth-card.compact {
  align-items: center;
  grid-template-columns: minmax(0, 1fr) auto;
}

.award-auth-card span {
  color: #67e8f9;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.award-auth-card strong {
  display: block;
  font-size: clamp(20px, 3vw, 30px);
  margin-top: 6px;
}

.award-auth-card p {
  color: rgba(226, 232, 240, 0.72);
  line-height: 1.7;
  margin: 8px 0 0;
}

.award-auth-form {
  display: grid;
  gap: 10px;
}

.award-auth-form label {
  color: rgba(226, 232, 240, 0.72);
  display: grid;
  font-size: 12px;
  font-weight: 800;
  gap: 6px;
}

.award-auth-form input {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  color: #fff;
  min-height: 42px;
  padding: 9px 11px;
}

.award-auth-form input::placeholder {
  color: rgba(226, 232, 240, 0.42);
}

.award-auth-form button,
.award-auth-card.compact button {
  background: linear-gradient(135deg, #4338ca, #6366f1, #8b5cf6);
  border: 0;
  border-radius: 999px;
  color: #fff;
  cursor: pointer;
  font-weight: 900;
  min-height: 42px;
  padding: 10px 14px;
}

.award-auth-message {
  color: #67e8f9;
  grid-column: 1 / -1;
  margin: 0;
}

.award-auth-message.error {
  color: #fda4af;
}

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

.award-timeline article strong {
  color: var(--teal);
  display: block;
  margin-top: 16px;
}

.award-section-head {
  align-items: end;
  display: flex;
  gap: 22px;
  justify-content: space-between;
  margin: 48px 0 22px;
}

.award-section-head h2 {
  font-size: clamp(28px, 4vw, 46px);
  margin: 0;
}

.award-section-head p {
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
  max-width: 520px;
}

.award-category-block {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  margin-bottom: 22px;
  padding: clamp(18px, 3vw, 30px);
}

.nominee-category-head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 18px;
}

.nominee-category-head span {
  color: var(--ruby);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.nominee-category-head h3 {
  font-size: clamp(24px, 3vw, 36px);
  margin: 8px 0;
}

.nominee-category-head p {
  color: var(--muted);
  margin: 0;
}

.award-nominee-grid,
.jury-panel,
.award-archive,
.award-admin-grid {
  display: grid;
  gap: 16px;
}

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

.award-nominee-card {
  align-content: start;
  background: #f7faf6;
  border: 1px solid rgba(24, 32, 31, 0.1);
  border-radius: 8px;
  display: grid;
  overflow: hidden;
}

.award-nominee-card img,
.nominee-placeholder {
  aspect-ratio: 4 / 3;
  display: block;
  object-fit: cover;
  width: 100%;
}

.nominee-placeholder {
  align-items: center;
  background:
    radial-gradient(circle at 70% 30%, rgba(255, 219, 137, 0.34), transparent 34%),
    linear-gradient(135deg, #071329, #0b5870);
  color: rgba(255, 254, 248, 0.8);
  display: flex;
  font-size: 32px;
  font-weight: 900;
  justify-content: center;
}

.award-nominee-card > div {
  display: grid;
  gap: 8px;
  padding: 14px;
}

.award-nominee-card strong {
  font-size: 17px;
  line-height: 1.35;
}

.award-nominee-card span,
.award-nominee-card p,
.vote-row small {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
  margin: 0;
}

.vote-row {
  align-items: center;
  display: flex;
  gap: 10px;
  justify-content: space-between;
  margin-top: 8px;
}

.vote-row button,
.jury-card button {
  background: var(--charcoal);
  border: 0;
  border-radius: 999px;
  color: #fffef8;
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
  padding: 8px 12px;
}

.vote-row button:disabled {
  background: rgba(24, 32, 31, 0.18);
  color: rgba(24, 32, 31, 0.5);
  cursor: not-allowed;
}

.empty-award {
  border: 1px dashed var(--line);
  border-radius: 8px;
  color: var(--muted);
  margin: 0;
  padding: 18px;
}

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

.jury-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 14px;
  grid-template-columns: 84px minmax(0, 1fr);
  padding: 18px;
}

.jury-card img,
.jury-avatar {
  aspect-ratio: 1;
  border-radius: 8px;
  object-fit: cover;
  width: 84px;
}

.jury-avatar {
  align-items: center;
  background: linear-gradient(135deg, var(--teal), var(--violet));
  color: #fffef8;
  display: flex;
  font-size: 30px;
  font-weight: 900;
  justify-content: center;
}

.jury-card h3 {
  margin: 0 0 4px;
}

.jury-card strong {
  color: var(--ruby);
  display: block;
  margin-bottom: 8px;
}

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

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

.award-archive article {
  background: #edf6f4;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
}

.award-archive span {
  color: var(--teal);
  font-size: 28px;
  font-weight: 900;
}

.award-admin-grid {
  align-items: start;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  margin-bottom: 24px;
}

.award-admin-grid .editor-form {
  margin: 0;
}

.award-settings-form {
  margin-bottom: 24px;
}

.award-settings-head {
  align-items: start;
  display: flex;
  gap: 18px;
  justify-content: space-between;
}

.award-settings-head h2 {
  margin-bottom: 8px;
}

.award-switch-status {
  background: rgba(34, 211, 238, 0.12);
  border: 1px solid rgba(34, 211, 238, 0.28);
  border-radius: 999px;
  color: #67e8f9;
  flex: 0 0 auto;
  font-size: 12px;
  font-weight: 900;
  padding: 8px 12px;
}

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

.award-settings-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

@keyframes cosmosDrift {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 720px 420px;
  }
}

@keyframes oceanPulse {
  from {
    opacity: 0.58;
    transform: translateY(16px) scale(1.02);
  }

  to {
    opacity: 0.95;
    transform: translateY(-8px) scale(1.05);
  }
}

@keyframes musicFloat {
  0%,
  100% {
    opacity: 0.42;
    transform: translateY(0) rotate(-4deg);
  }

  50% {
    opacity: 0.9;
    transform: translateY(-18px) rotate(6deg);
  }
}

@media (max-width: 980px) {
  .extended-timeline,
  .award-nominee-grid,
  .jury-panel,
  .award-archive,
  .award-admin-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .award-section-head {
    align-items: start;
    display: grid;
  }
}

@media (max-width: 640px) {
  .extended-timeline,
  .award-nominee-grid,
  .jury-panel,
  .award-archive,
  .award-admin-grid {
    grid-template-columns: 1fr;
  }

  .jury-card {
    grid-template-columns: 70px minmax(0, 1fr);
  }

  .jury-card img,
  .jury-avatar {
    width: 70px;
  }
}

.site-footer {
  align-items: center;
  background:
    radial-gradient(circle at 13% 24%, rgba(244, 114, 182, 0.2), transparent 27%),
    radial-gradient(circle at 82% 18%, rgba(34, 211, 238, 0.18), transparent 29%),
    radial-gradient(circle at 68% 82%, rgba(251, 191, 36, 0.12), transparent 24%),
    linear-gradient(135deg, #050816 0%, #111133 48%, #061f32 100%);
  border-top: 1px solid rgba(168, 85, 247, 0.32);
  color: #f7fbff;
  display: grid;
  gap: clamp(34px, 7vw, 96px);
  grid-template-columns: minmax(320px, 1fr) minmax(260px, 0.48fr);
  margin: 0;
  max-width: none;
  overflow: hidden;
  padding: clamp(56px, 8vw, 104px) clamp(24px, 7vw, 92px);
  position: relative;
  width: 100%;
}

.site-footer::before {
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.72) 0 1px, transparent 1.5px) 0 0 / 76px 76px,
    linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.08), transparent),
    repeating-linear-gradient(0deg, transparent 0 23px, rgba(255, 255, 255, 0.035) 24px 25px),
    repeating-linear-gradient(90deg, transparent 0 23px, rgba(34, 211, 238, 0.024) 24px 25px);
  content: "";
  inset: 0;
  opacity: 0.62;
  pointer-events: none;
  position: absolute;
}

.site-footer::after {
  aspect-ratio: 1;
  border: 1px solid rgba(125, 211, 252, 0.16);
  border-radius: 50%;
  box-shadow:
    inset 0 0 0 18px rgba(15, 23, 42, 0.26),
    inset 0 0 0 38px rgba(34, 211, 238, 0.05),
    0 0 58px rgba(168, 85, 247, 0.18);
  content: "";
  height: clamp(240px, 28vw, 430px);
  opacity: 0.82;
  pointer-events: none;
  position: absolute;
  right: clamp(22px, 5vw, 86px);
  top: 50%;
  transform: translateY(-50%);
}

.site-footer > * {
  position: relative;
  z-index: 1;
}

.footer-brand-block {
  display: grid;
  gap: 28px;
}

.footer-logo {
  align-items: center;
  color: #fff;
  display: inline-flex;
  gap: 20px;
  text-decoration: none;
}

.footer-logo span {
  color: inherit;
}

.footer-logo img {
  background: linear-gradient(145deg, rgba(15, 23, 42, 0.72), rgba(30, 41, 59, 0.42));
  border: 1px solid rgba(125, 211, 252, 0.2);
  border-radius: 18px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28), 0 0 36px rgba(34, 211, 238, 0.12);
  height: clamp(74px, 9vw, 112px);
  object-fit: contain;
  padding: 10px;
  width: clamp(74px, 9vw, 112px);
}

.footer-logo strong {
  color: #fff;
  display: block;
  font-size: clamp(28px, 3.2vw, 46px);
  letter-spacing: 0;
  line-height: 1;
  max-width: 560px;
  text-shadow: 0 0 24px rgba(34, 211, 238, 0.18);
}

.footer-logo small {
  color: rgba(238, 248, 255, 0.72);
  display: block;
  font-size: 13px;
  line-height: 1.7;
  margin-top: 12px;
  max-width: 560px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-links a {
  background: rgba(15, 23, 42, 0.38);
  border: 1px solid rgba(125, 211, 252, 0.18);
  border-radius: 999px;
  color: rgba(238, 248, 255, 0.86);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.02em;
  padding: 9px 13px;
  text-decoration: none;
}

.footer-links a:hover {
  border-color: rgba(34, 211, 238, 0.55);
  color: #38dff3;
}

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

.footer-chip-row span {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.18), rgba(34, 211, 238, 0.12));
  border: 1px solid rgba(216, 180, 254, 0.2);
  border-radius: 8px;
  color: rgba(241, 245, 249, 0.78);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
  padding: 7px 9px;
  text-transform: uppercase;
}

.footer-copy {
  color: rgba(238, 248, 255, 0.72);
  font-size: 14px;
  margin: 0;
}

.footer-reprint {
  border-left: 3px solid rgba(34, 211, 238, 0.6);
  color: rgba(226, 232, 240, 0.68);
  font-size: 13px;
  line-height: 1.8;
  margin: -12px 0 0;
  max-width: 720px;
  padding-left: 14px;
}

.footer-social-block {
  justify-self: center;
}

.footer-social-block h2 {
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  letter-spacing: 0.16em;
  margin: 0 0 22px;
  text-transform: uppercase;
}

.footer-social-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(82px, 1fr));
}

.footer-social-grid a {
  align-items: center;
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.8), rgba(30, 41, 59, 0.42)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 7px);
  border: 1px solid rgba(34, 211, 238, 0.34);
  border-radius: 12px;
  color: #67e8f9;
  display: flex;
  font-size: 20px;
  font-weight: 900;
  justify-content: center;
  min-height: 62px;
  padding: 0 18px;
  text-decoration: none;
  transition: background 0.24s ease, box-shadow 0.24s ease, transform 0.24s ease;
}

.footer-social-grid a:hover {
  background: rgba(34, 211, 238, 0.12);
  box-shadow: 0 0 26px rgba(34, 211, 238, 0.24);
  transform: translateY(-3px);
}

.footer-social-grid span {
  color: inherit;
  line-height: 1;
}

.link-editor {
  display: grid;
  gap: 12px;
}

.link-rows {
  display: grid;
  gap: 10px;
}

.link-row {
  display: grid;
  gap: 10px;
  grid-template-columns: minmax(140px, 0.8fr) minmax(82px, 0.36fr) minmax(220px, 1.3fr) auto;
}

[data-link-editor="navLinks"] .link-row {
  grid-template-columns: minmax(160px, 0.6fr) minmax(260px, 1.4fr) auto;
}

.link-row button {
  min-width: 74px;
}

.main-nav a {
  isolation: isolate;
  overflow: hidden;
  position: relative;
  transition: color 0.24s ease, text-shadow 0.24s ease, transform 0.24s ease;
}

.main-nav a::before {
  background:
    radial-gradient(circle at 18% 38%, rgba(255, 255, 255, 0.95) 0 1px, transparent 2px),
    radial-gradient(circle at 68% 24%, rgba(125, 211, 252, 0.9) 0 1px, transparent 2px),
    linear-gradient(110deg, transparent, rgba(34, 211, 238, 0.16), rgba(168, 85, 247, 0.18), transparent);
  content: "";
  inset: 0;
  opacity: 0;
  position: absolute;
  transform: translateX(-42%) skewX(-18deg);
  transition: opacity 0.24s ease, transform 0.46s ease;
  z-index: -1;
}

.main-nav a::after {
  background: linear-gradient(90deg, transparent, rgba(34, 211, 238, 0.9), transparent);
  bottom: 5px;
  content: "";
  height: 1px;
  left: 14px;
  opacity: 0;
  position: absolute;
  right: 14px;
  transform: scaleX(0.2);
  transition: opacity 0.24s ease, transform 0.3s ease;
}

.main-nav a:hover {
  background: rgba(15, 23, 42, 0.08);
  color: #0f8293;
  text-shadow: 0 0 18px rgba(34, 211, 238, 0.34);
  transform: translateY(-1px);
}

.main-nav a:hover::before {
  opacity: 1;
  transform: translateX(28%) skewX(-18deg);
}

.main-nav a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.immersive-hero::after {
  animation: starWaveFloat 22s ease-in-out infinite alternate;
  background:
    linear-gradient(172deg, transparent 12%, rgba(56, 189, 248, 0.11) 36%, transparent 62%),
    repeating-linear-gradient(169deg, transparent 0 42px, rgba(125, 211, 252, 0.1) 43px 45px, transparent 46px 98px),
    linear-gradient(180deg, transparent 38%, rgba(8, 77, 120, 0.24) 72%, rgba(14, 165, 233, 0.12));
  filter: blur(0.2px);
  mask-image: linear-gradient(180deg, transparent 10%, #000 34%, #000 92%, transparent);
  opacity: 0.68;
}

.hero-aurora {
  mix-blend-mode: screen;
}

.hero-aurora::before {
  animation: auroraDrift 24s ease-in-out infinite alternate;
  background:
    linear-gradient(112deg, transparent 8%, rgba(14, 165, 233, 0.18) 34%, rgba(168, 85, 247, 0.13) 52%, transparent 72%),
    radial-gradient(ellipse at 72% 70%, rgba(45, 212, 191, 0.12), transparent 36%);
  filter: blur(34px);
  opacity: 0.46;
}

.hero-aurora span,
.hero-orbit::before,
.hero-orbit::after {
  display: none;
}

.hero-staff {
  background:
    radial-gradient(circle at 22% 70%, rgba(255, 255, 255, 0.44) 0 1px, transparent 2px),
    radial-gradient(circle at 78% 28%, rgba(255, 205, 120, 0.52) 0 1px, transparent 2px),
    repeating-linear-gradient(174deg, transparent 0 34px, rgba(125, 211, 252, 0.06) 35px 36px, transparent 37px 92px);
  opacity: 0.48;
}

.cosmos-field {
  opacity: 0.76;
}

.cosmos-wave {
  background:
    repeating-linear-gradient(170deg, transparent 0 44px, rgba(90, 216, 255, 0.14) 45px 47px, transparent 48px 108px),
    linear-gradient(180deg, transparent 44%, rgba(9, 76, 116, 0.2) 74%, rgba(28, 184, 196, 0.18));
  opacity: 0.8;
}

.cosmos-note,
.cosmos-game {
  opacity: 0.62;
}

.share-panel {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 14px;
  margin-top: 22px;
  position: relative;
  z-index: 4;
}

.share-panel > span {
  color: rgba(226, 232, 240, 0.62);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.share-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.share-actions a,
.share-actions button {
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.72), rgba(30, 41, 59, 0.42)),
    radial-gradient(circle at 18% 18%, rgba(125, 211, 252, 0.24), transparent 36%);
  border: 1px solid rgba(125, 211, 252, 0.28);
  border-radius: 999px;
  color: rgba(241, 245, 249, 0.9);
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  padding: 10px 13px;
  text-decoration: none;
  transition: border-color 0.22s ease, box-shadow 0.22s ease, color 0.22s ease, transform 0.22s ease;
}

.share-actions a:hover,
.share-actions button:hover {
  border-color: rgba(34, 211, 238, 0.68);
  box-shadow: 0 0 22px rgba(34, 211, 238, 0.16);
  color: #67e8f9;
  transform: translateY(-1px);
}

.page-share {
  margin-top: 30px;
}

.detail-share {
  margin-bottom: 22px;
}

.composer-panel {
  align-items: center;
  display: grid;
  gap: clamp(24px, 4vw, 46px);
  grid-template-columns: minmax(0, 1fr) clamp(180px, 22vw, 240px);
  overflow: hidden;
  position: relative;
}

.composer-panel::before {
  background:
    radial-gradient(circle at 86% 24%, rgba(34, 211, 238, 0.12), transparent 28%),
    radial-gradient(circle at 68% 78%, rgba(168, 85, 247, 0.1), transparent 32%);
  content: "";
  inset: 0;
  opacity: 0.8;
  pointer-events: none;
  position: absolute;
}

.composer-panel-copy,
.composer-portrait {
  position: relative;
  z-index: 1;
}

.composer-panel-copy {
  min-width: 0;
}

.composer-panel-copy p {
  max-width: 720px;
}

.composer-portrait {
  align-self: center;
  background:
    linear-gradient(145deg, rgba(15, 23, 42, 0.82), rgba(30, 41, 59, 0.46)),
    radial-gradient(circle at 28% 18%, rgba(125, 211, 252, 0.2), transparent 34%);
  border: 1px solid rgba(125, 211, 252, 0.2);
  border-radius: 18px;
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.26);
  color: rgba(241, 245, 249, 0.74);
  display: grid;
  gap: 10px;
  overflow: hidden;
  padding: 10px;
  text-decoration: none;
  transition: border-color 0.24s ease, box-shadow 0.24s ease, transform 0.24s ease;
}

.composer-portrait img {
  aspect-ratio: 4 / 5;
  border-radius: 13px;
  display: block;
  height: auto;
  object-fit: cover;
  width: 100%;
  transition: filter 0.28s ease, transform 0.28s ease;
}

.composer-portrait span {
  color: rgba(226, 232, 240, 0.78);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.composer-panel:hover .composer-portrait,
.composer-portrait:hover {
  border-color: rgba(34, 211, 238, 0.58);
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.32), 0 0 42px rgba(34, 211, 238, 0.14);
  transform: translateY(-3px);
}

.composer-panel:hover .composer-portrait img,
.composer-portrait:hover img {
  filter: brightness(1.08) saturate(1.08);
  transform: scale(1.035);
}

.composer-filter button {
  transition: border-color 0.22s ease, box-shadow 0.22s ease, color 0.22s ease, transform 0.22s ease;
}

.composer-filter button:hover {
  border-color: rgba(34, 211, 238, 0.42);
  box-shadow: 0 0 28px rgba(34, 211, 238, 0.1);
  transform: translateX(3px);
}

.award-weight-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 36px;
}

.award-weight-card,
.award-rule-panel {
  background:
    linear-gradient(145deg, rgba(11, 11, 16, 0.78), rgba(18, 24, 42, 0.7)),
    radial-gradient(circle at 18% 12%, rgba(34, 211, 238, 0.12), transparent 32%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  box-shadow: 0 24px 62px rgba(0, 0, 0, 0.2);
  color: #fff;
  backdrop-filter: blur(18px);
}

.award-weight-card {
  display: grid;
  gap: 10px;
  min-height: 210px;
  padding: 22px;
}

.award-weight-card span {
  color: #67e8f9;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 900;
  line-height: 1;
}

.award-weight-card h3 {
  margin: 0;
}

.award-weight-card p {
  color: rgba(226, 232, 240, 0.72);
  line-height: 1.7;
  margin: 0;
}

.award-rule-panel {
  align-items: start;
  display: grid;
  gap: clamp(18px, 4vw, 42px);
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 1fr);
  margin: 36px 0 8px;
  padding: clamp(22px, 4vw, 34px);
}

.award-rule-panel h2 {
  font-size: clamp(26px, 3.4vw, 42px);
  margin: 0;
}

.award-rule-panel ul {
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.award-rule-panel li {
  border-left: 3px solid rgba(34, 211, 238, 0.58);
  color: rgba(226, 232, 240, 0.78);
  line-height: 1.75;
  padding-left: 14px;
}

.nominee-category-head {
  align-items: start;
  gap: 18px;
}

.nominee-category-head > strong {
  background: rgba(34, 211, 238, 0.1);
  border: 1px solid rgba(34, 211, 238, 0.22);
  border-radius: 999px;
  color: #67e8f9;
  flex: 0 0 auto;
  font-size: 12px;
  padding: 8px 11px;
}

.award-category-block {
  background:
    linear-gradient(145deg, rgba(11, 11, 16, 0.74), rgba(20, 24, 38, 0.66)),
    radial-gradient(circle at 82% 14%, rgba(168, 85, 247, 0.12), transparent 30%);
  border-color: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  color: #fff;
}

.award-nominee-card {
  background: rgba(15, 23, 42, 0.72);
  border-color: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  color: #fff;
  transition: border-color 0.24s ease, box-shadow 0.24s ease, transform 0.24s ease;
}

.award-nominee-card:hover {
  border-color: rgba(34, 211, 238, 0.45);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.26), 0 0 28px rgba(34, 211, 238, 0.1);
  transform: translateY(-4px);
}

.award-nominee-card.winner {
  border-color: rgba(250, 204, 21, 0.52);
}

.award-nominee-media {
  overflow: hidden;
  position: relative;
}

.award-nominee-media img,
.award-nominee-media .nominee-placeholder {
  transition: filter 0.28s ease, transform 0.28s ease;
}

.award-nominee-card:hover .award-nominee-media img,
.award-nominee-card:hover .award-nominee-media .nominee-placeholder {
  filter: brightness(1.08) saturate(1.08);
  transform: scale(1.035);
}

.award-nominee-media em {
  background: rgba(3, 7, 18, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  bottom: 10px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
  left: 10px;
  padding: 6px 9px;
  position: absolute;
  text-transform: uppercase;
}

.award-nominee-card.winner .award-nominee-media em {
  background: linear-gradient(135deg, #facc15, #f97316);
  color: #111827;
}

.award-nominee-card strong {
  color: #fff;
}

.award-nominee-card span,
.award-nominee-card p,
.vote-row small {
  color: rgba(226, 232, 240, 0.68);
}

.award-score-hints {
  display: grid;
  gap: 6px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 4px 0;
}

.award-score-hints div {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 7px 8px;
}

.award-score-hints dt {
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 900;
}

.award-score-hints dd {
  color: rgba(148, 163, 184, 0.72);
  font-size: 11px;
  margin: 2px 0 0;
}

.award-archive article {
  background:
    linear-gradient(145deg, rgba(237, 246, 244, 0.94), rgba(247, 250, 246, 0.96));
}

@media (max-width: 980px) {
  .site-header {
    gap: 14px;
  }

  .site-search-slot,
  .public-auth-slot {
    justify-content: flex-end;
  }

  .site-footer {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .award-weight-grid,
  .award-rule-panel,
  .award-auth-card,
  .auth-fallback-grid,
  .award-settings-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .award-auth-card > div {
    grid-column: 1 / -1;
  }

  .composer-panel {
    grid-template-columns: 1fr;
  }

  .composer-portrait {
    align-self: auto;
    justify-self: start;
    max-width: 260px;
  }

  .footer-social-block {
    justify-self: start;
  }
}

@media (max-width: 640px) {
  .site-search-slot,
  .public-auth-slot {
    justify-content: flex-start;
  }

  .site-search-dialog {
    border-radius: 18px;
    max-height: calc(100vh - 24px);
    max-width: calc(100vw - 20px);
    padding: 20px;
    top: 12px;
  }

  .site-search-result {
    grid-template-columns: 64px minmax(0, 1fr);
  }

  .site-search-result img {
    height: 64px;
    width: 64px;
  }

  .public-auth-dialog {
    border-radius: 18px;
    max-height: calc(100vh - 24px);
    max-width: calc(100vw - 20px);
    padding: 20px;
  }

  .wechat-login-card,
  .public-auth-current,
  .auth-fallback-grid,
  .award-settings-grid {
    grid-template-columns: 1fr;
  }

  .award-settings-head {
    display: grid;
  }

  .public-auth-current > span {
    height: 58px;
    width: 58px;
  }

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

  .award-weight-grid,
  .award-rule-panel,
  .award-auth-card,
  .award-auth-card.compact {
    grid-template-columns: 1fr;
  }

  .nominee-category-head {
    display: grid;
  }

  .footer-social-grid {
    grid-template-columns: repeat(2, 66px);
  }

  .link-row,
  [data-link-editor="navLinks"] .link-row {
    grid-template-columns: 1fr;
  }
}

/* Home interview carousel */
#interviewGrid.interview-carousel {
  align-items: center;
  display: grid;
  gap: 14px;
  grid-template-columns: 44px minmax(0, 1fr) 44px;
  position: relative;
}

.interview-viewport {
  min-width: 0;
  overflow-x: auto;
  overflow-y: visible;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.interview-viewport::-webkit-scrollbar {
  display: none;
}

.interview-track {
  display: flex;
  gap: 18px;
}

.interview-card {
  display: flex;
  flex: 0 0 calc((100% - 36px) / 3);
  flex-direction: column;
  min-height: 280px;
  min-width: 0;
  scroll-snap-align: start;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.interview-card p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}

.interview-card .text-link {
  margin-top: auto;
}

.interview-card:hover {
  border-color: rgba(125, 92, 255, 0.48);
  box-shadow: 0 22px 52px rgba(78, 119, 255, 0.22);
  transform: translateY(-5px);
}

.carousel-control {
  align-items: center;
  aspect-ratio: 1;
  background:
    radial-gradient(circle at 30% 24%, rgba(255, 255, 255, 0.72), transparent 17%),
    linear-gradient(135deg, rgba(33, 164, 190, 0.78), rgba(125, 92, 255, 0.88));
  border: 1px solid rgba(132, 214, 238, 0.42);
  border-radius: 999px;
  box-shadow: 0 16px 38px rgba(31, 94, 178, 0.28);
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  font-size: 30px;
  font-weight: 700;
  height: 44px;
  justify-content: center;
  line-height: 1;
  padding: 0 0 3px;
  transition:
    box-shadow 180ms ease,
    transform 180ms ease;
}

.carousel-control:hover {
  box-shadow: 0 20px 48px rgba(125, 92, 255, 0.36);
  transform: translateY(-2px);
}

.carousel-control[hidden],
.carousel-hint[hidden] {
  display: none;
}

.carousel-hint {
  color: rgba(255, 255, 255, 0.56);
  font-size: 13px;
  font-weight: 800;
  grid-column: 2;
  letter-spacing: 0;
  text-align: center;
}

@media (max-width: 980px) {
  #interviewGrid.interview-carousel {
    grid-template-columns: 38px minmax(0, 1fr) 38px;
  }

  .interview-card {
    flex-basis: calc((100% - 18px) / 2);
  }

  .carousel-control {
    height: 38px;
  }
}

@media (max-width: 640px) {
  #interviewGrid.interview-carousel {
    gap: 10px;
    grid-template-columns: minmax(0, 1fr);
  }

  .interview-track {
    gap: 14px;
  }

  .interview-card {
    flex-basis: min(82vw, 330px);
    min-height: 260px;
  }

  .carousel-control {
    display: none;
  }

  .carousel-hint {
    grid-column: 1;
  }
}

/* Starsea Podcast */
.podcast-pattern {
  background:
    radial-gradient(circle at 18% 20%, rgba(125, 92, 255, 0.32), transparent 26%),
    radial-gradient(circle at 84% 30%, rgba(33, 164, 190, 0.28), transparent 24%),
    linear-gradient(135deg, #06101d 0%, #101428 50%, #071f28 100%);
  position: relative;
}

.podcast-pattern::after,
.podcast-home-section::before {
  background:
    repeating-linear-gradient(90deg, rgba(132, 214, 238, 0.11) 0 2px, transparent 2px 18px),
    linear-gradient(90deg, transparent, rgba(125, 92, 255, 0.2), transparent);
  content: "";
  inset: auto 0 0;
  height: 84px;
  opacity: 0.7;
  pointer-events: none;
  position: absolute;
}

.podcast-home-section,
.podcast-page-section,
.podcast-archive-section {
  background:
    radial-gradient(circle at 12% 18%, rgba(33, 164, 190, 0.12), transparent 26%),
    radial-gradient(circle at 88% 82%, rgba(125, 92, 255, 0.14), transparent 28%),
    #05070c;
  color: #fff;
  overflow: hidden;
  position: relative;
}

.podcast-page-section,
.podcast-archive-section {
  padding-left: clamp(18px, 4vw, 54px);
  padding-right: clamp(18px, 4vw, 54px);
}

.podcast-page-shell {
  margin: 0 auto;
  max-width: 1180px;
  position: relative;
  width: 100%;
  z-index: 1;
}

.podcast-home,
.podcast-feature {
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(0, 1.45fr) minmax(240px, 0.55fr);
  position: relative;
  z-index: 1;
}

.podcast-latest-card,
.podcast-feature,
.podcast-empty,
.podcast-archive-card,
.podcast-player,
.podcast-facts {
  background:
    linear-gradient(145deg, rgba(10, 16, 30, 0.86), rgba(8, 26, 34, 0.76));
  border: 1px solid rgba(132, 214, 238, 0.14);
  border-radius: 22px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.3);
}

.podcast-latest-card {
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(176px, 0.34fr) minmax(0, 1fr);
  min-height: 320px;
  padding: clamp(20px, 2.6vw, 30px);
}

.podcast-home > .podcast-latest-card:only-child {
  grid-column: 1 / -1;
}

.podcast-home > .podcast-latest-card:only-child > div {
  max-width: 720px;
}

.podcast-home > .podcast-latest-card:only-child .podcast-cover-link img {
  max-width: 320px;
}

/* Admin console polish */
.admin-page .admin {
  padding-top: clamp(36px, 5vw, 72px);
}

.admin-page .admin-top {
  align-items: start;
  background:
    linear-gradient(145deg, rgba(10, 16, 30, 0.9), rgba(8, 26, 34, 0.78)),
    radial-gradient(circle at 92% 18%, rgba(34, 211, 238, 0.16), transparent 28%);
  border: 1px solid rgba(132, 214, 238, 0.14);
  border-radius: 22px;
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: clamp(20px, 3vw, 32px);
}

.admin-page .admin-top > div:first-child {
  min-width: 0;
}

.admin-page .admin-userbar {
  align-items: center;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  display: flex;
  gap: 12px;
  justify-content: end;
  padding: 8px;
  white-space: nowrap;
}

.admin-page .admin-language-switch {
  background: rgba(3, 10, 22, 0.5);
  border-radius: 999px;
  display: flex;
  gap: 4px;
  padding: 4px;
}

.admin-page .admin-language-switch button {
  background: transparent;
  border: 0;
  border-radius: 999px;
  color: rgba(226, 232, 240, 0.68);
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
  min-height: 34px;
  padding: 7px 11px;
}

.admin-page .admin-language-switch button.active {
  background: linear-gradient(135deg, rgba(33, 164, 190, 0.42), rgba(125, 92, 255, 0.38));
  color: #fff;
}

.admin-page .admin-tabs {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  display: grid;
  gap: 8px;
  grid-column: 1 / -1;
  grid-template-columns: repeat(auto-fit, minmax(96px, 1fr));
  padding: 8px;
}

.admin-page .tab {
  align-items: center;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 12px;
  color: rgba(226, 232, 240, 0.72);
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  min-height: 42px;
  padding: 9px 12px;
  text-align: center;
}

.admin-page .tab.active,
.admin-page .tab:hover {
  background: linear-gradient(135deg, rgba(33, 164, 190, 0.28), rgba(125, 92, 255, 0.22));
  border-color: rgba(132, 214, 238, 0.22);
  color: #fff;
}

.admin-page .admin-view.active {
  margin-top: 24px;
}

.admin-page .editor-form {
  background:
    linear-gradient(145deg, rgba(10, 16, 30, 0.82), rgba(8, 26, 34, 0.72));
  border: 1px solid rgba(132, 214, 238, 0.14);
  border-radius: 22px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
  gap: 18px;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  padding: clamp(20px, 3vw, 30px);
}

.admin-page .editor-form.rich-form > label,
.admin-page .editor-form.account-form > label,
.admin-page .editor-form.site-settings-form > label,
.admin-page .award-settings-form label {
  grid-column: span 4;
}

.admin-page .editor-form.rich-form > label:has(textarea[name="summary"]),
.admin-page .editor-form.rich-form > label:has(.media-field),
.admin-page .editor-form.rich-form > label.wide-field,
.admin-page .editor-form.site-settings-form > label:has(textarea),
.admin-page .editor-form.site-settings-form > label.wide-field,
.admin-page .award-settings-form label.wide-field {
  grid-column: span 6;
}

.admin-page .editor-form.rich-form > .track-editor,
.admin-page .editor-form .rich-editor-block,
.admin-page .translation-editor,
.admin-page .editor-form .link-editor,
.admin-page .editor-form > button[type="submit"],
.admin-page .content-save-actions,
.admin-page .award-settings-actions,
.admin-page .form-message {
  grid-column: 1 / -1;
}

.admin-page .translation-editor {
  background: linear-gradient(135deg, rgba(30, 70, 103, 0.32), rgba(87, 60, 139, 0.26));
  border: 1px solid rgba(127, 210, 237, 0.24);
  border-radius: 18px;
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  padding: clamp(18px, 2.5vw, 26px);
}

.admin-page [data-content-locale][hidden] {
  display: none !important;
}

.admin-page .translation-editor-head,
.admin-page .translation-editor .rich-editor-block {
  grid-column: 1 / -1;
}

.admin-page .translation-editor-head {
  align-items: start;
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.45fr);
}

.admin-page .translation-editor h2,
.admin-page .translation-editor p {
  margin: 0;
}

.admin-page .translation-editor p:not(.eyebrow) {
  color: rgba(226, 232, 240, 0.76);
  line-height: 1.65;
  margin-top: 8px;
}

.admin-page .translation-editor > label {
  grid-column: span 4;
}

.admin-page .translation-editor > label:has(textarea) {
  grid-column: span 6;
}

.admin-page .translation-review {
  border: 1px solid rgba(127, 210, 237, 0.22);
  border-radius: 12px;
  display: grid;
  gap: 12px;
  grid-column: 1 / -1;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  margin: 0;
  padding: 16px;
}

.admin-page .translation-review legend {
  color: #d8f2ff;
  font-weight: 900;
  padding: 0 6px;
}

.admin-page .translation-review > p,
.admin-page .translation-review > label {
  grid-column: span 6;
}

.admin-page .translation-review > p {
  margin: 0;
}

.admin-page .translation-review > label.wide-field {
  grid-column: 1 / -1;
}

.admin-page .translation-review .review-check {
  align-items: flex-start;
  color: rgba(226, 232, 240, 0.88);
  display: flex;
  font-weight: 700;
  gap: 10px;
  line-height: 1.5;
}

.admin-page .translation-review .review-check input {
  accent-color: var(--teal);
  flex: 0 0 auto;
  margin: 3px 0 0;
  min-height: auto;
  width: auto;
}

.content-save-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.content-save-actions .button {
  align-self: auto;
}

.translation-status {
  color: var(--muted);
  font-size: 13px;
  margin: 8px 0 0;
}

.draft-preview-banner {
  background: rgba(246, 185, 86, 0.16);
  border: 1px solid rgba(246, 185, 86, 0.52);
  border-radius: 8px;
  color: #fce3a2;
  font-size: 13px;
  font-weight: 800;
  margin: 0 0 14px;
  padding: 9px 12px;
}

.admin-page .editor-form.compact {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.admin-page .award-admin-grid .editor-form.compact {
  align-content: start;
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.admin-page .award-admin-grid .editor-form.compact h2 {
  grid-column: 1 / -1;
  margin: 0;
}

.admin-page .editor-form.compact > label {
  grid-column: span 3;
}

.admin-page .editor-form.compact > label:has(textarea),
.admin-page .editor-form.compact > label:has(.media-field),
.admin-page .editor-form.compact > button[type="submit"],
.admin-page .editor-form.compact .field-hint {
  grid-column: 1 / -1;
}

.admin-page .award-admin-grid .editor-form.compact > button[type="submit"] {
  justify-self: start;
  min-width: 150px;
}

.admin-page .award-form-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  grid-column: 1 / -1;
}

.admin-page .award-form-actions .button {
  min-width: 132px;
}

.admin-page .award-admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.admin-page .award-admin-actions button {
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.86);
  min-height: 34px;
  padding: 7px 11px;
}

.admin-page .award-admin-actions button[data-remove-nominee] {
  border-color: rgba(248, 113, 113, 0.38);
  color: #fecaca;
}

.admin-page .award-admin-actions button:disabled {
  background: rgba(255, 255, 255, 0.035);
  border-color: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.32);
}

.admin-page .editor-form label {
  color: rgba(226, 232, 240, 0.74);
  min-width: 0;
}

.admin-page .editor-form input,
.admin-page .editor-form select,
.admin-page .editor-form textarea,
.admin-page .rich-editor {
  background: rgba(255, 255, 255, 0.065);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  color: #fff;
}

.admin-page .editor-form input::placeholder,
.admin-page .editor-form textarea::placeholder {
  color: rgba(226, 232, 240, 0.36);
}

.admin-page .editor-form select option {
  background: #0b0b10;
  color: #fff;
}

.admin-page .media-field {
  align-items: stretch;
  grid-template-columns: minmax(0, 1fr) max-content;
}

.admin-page .media-field button,
.admin-page .track-editor-head button,
.admin-page .track-row button,
.admin-page .editor-toolbar button {
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.86);
}

.admin-page .editor-toolbar {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 10px;
}

.admin-page .editor-toolbar button {
  min-height: 34px;
  padding: 7px 10px;
}

.admin-page .rich-editor {
  border-radius: 14px;
  min-height: 360px;
}

.admin-page .tinymce-ready .rich-editor {
  border-radius: 14px;
  min-height: 420px;
  padding: 18px;
}

.admin-page .track-editor {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 14px;
}

.admin-page .track-row {
  grid-template-columns: minmax(0, 1fr) minmax(120px, 0.24fr) max-content;
}

.admin-page .admin-list {
  gap: 14px;
}

.admin-page .admin-item {
  align-items: start;
  background: rgba(10, 16, 30, 0.66);
  border-color: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  display: grid;
  gap: 16px;
  grid-template-columns: minmax(0, 1fr) auto;
}

.admin-page .admin-actions,
.admin-page .account-actions {
  align-items: stretch;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.admin-page .admin-actions button,
.admin-page .admin-action-link,
.admin-page .account-actions button {
  align-items: center;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.86);
  display: inline-flex;
  font-size: 13px;
  font-weight: 900;
  justify-content: center;
  min-height: 36px;
  padding: 8px 13px;
  text-decoration: none;
}

.admin-page .award-admin-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.admin-page .award-category-management {
  background: linear-gradient(145deg, rgba(10, 16, 30, 0.72), rgba(8, 26, 34, 0.58));
  border: 1px solid rgba(132, 214, 238, 0.14);
  border-radius: 18px;
  margin: 22px 0;
  padding: clamp(18px, 2.4vw, 28px);
}

.admin-page .award-category-management-head {
  align-items: end;
  display: flex;
  gap: 20px;
  justify-content: space-between;
  margin-bottom: 16px;
}

.admin-page .award-category-management-head h2,
.admin-page .award-category-management-head p {
  margin: 0;
}

.admin-page .award-category-management-head > p {
  color: rgba(226, 232, 240, 0.6);
  font-size: 13px;
  line-height: 1.6;
  max-width: 440px;
}

.admin-page .award-category-admin-list {
  display: grid;
  gap: 10px;
}

.admin-page .award-category-admin-item {
  align-items: center;
  background: rgba(255, 255, 255, 0.042);
  border: 1px solid rgba(255, 255, 255, 0.09);
  display: grid;
  gap: 14px;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  min-height: 94px;
  padding: 14px;
  position: relative;
  transition: background-color 150ms ease, border-color 150ms ease, opacity 150ms ease;
}

.admin-page .award-category-admin-item.is-dragging {
  opacity: 0.38;
}

.admin-page .award-category-admin-item.drag-over-before::before,
.admin-page .award-category-admin-item.drag-over-after::after {
  background: linear-gradient(90deg, #43d5f6, #9675ff);
  content: "";
  height: 3px;
  left: 8px;
  position: absolute;
  right: 8px;
  z-index: 2;
}

.admin-page .award-category-admin-item.drag-over-before::before {
  top: -2px;
}

.admin-page .award-category-admin-item.drag-over-after::after {
  bottom: -2px;
}

.admin-page .award-drag-handle {
  align-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px dashed rgba(132, 214, 238, 0.34);
  color: rgba(191, 230, 255, 0.88);
  cursor: grab;
  display: inline-flex;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 15px;
  font-weight: 900;
  height: 34px;
  justify-content: center;
  letter-spacing: 1px;
  padding: 0;
  user-select: none;
  width: 34px;
}

.admin-page .award-drag-handle:active {
  cursor: grabbing;
}

.admin-page .award-category-admin-copy {
  min-width: 0;
}

.admin-page .award-category-admin-copy > span,
.admin-page .award-category-admin-copy small {
  color: rgba(132, 214, 238, 0.74);
  display: block;
  font-size: 12px;
  font-weight: 800;
}

.admin-page .award-category-admin-copy h3,
.admin-page .award-category-admin-copy p {
  margin: 0;
}

.admin-page .award-category-admin-copy h3 {
  color: #fff;
  font-size: 16px;
  margin: 3px 0 5px;
}

.admin-page .award-category-admin-copy p {
  color: rgba(226, 232, 240, 0.68);
  font-size: 13px;
  line-height: 1.5;
}

.admin-page .award-category-admin-copy small {
  color: rgba(226, 232, 240, 0.5);
  font-weight: 600;
  margin-top: 5px;
}

.admin-page .award-category-admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  justify-content: flex-end;
}

.admin-page .award-category-admin-actions button {
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.86);
  min-height: 32px;
  padding: 6px 10px;
}

.admin-page .award-category-admin-actions button[data-remove-award-category] {
  border-color: rgba(248, 113, 113, 0.38);
  color: #fecaca;
}

.admin-page .award-category-admin-actions button:disabled {
  opacity: 0.34;
}

.admin-page .award-settings-form > .award-settings-head,
.admin-page .award-settings-form > .award-settings-grid {
  grid-column: 1 / -1;
}

.admin-page .award-settings-form > .award-settings-head {
  min-width: 0;
}

.admin-page .award-settings-form > .award-settings-grid {
  align-items: end;
}

.admin-page .award-settings-grid label {
  grid-column: auto;
  min-width: 0;
}

.admin-page .award-settings-grid label.wide-field {
  grid-column: span 2;
}

@media (max-width: 980px) {
  .admin-page .admin-top {
    grid-template-columns: 1fr;
  }

  .admin-page .admin-userbar {
    align-items: stretch;
    border-radius: 18px;
    flex-wrap: wrap;
    justify-content: space-between;
    white-space: normal;
  }

  .admin-page .admin-language-switch {
    order: -1;
    width: 100%;
  }

  .admin-page .admin-language-switch button {
    flex: 1 1 0;
  }

  .admin-page .editor-form.rich-form > label,
  .admin-page .editor-form.account-form > label,
  .admin-page .editor-form.site-settings-form > label,
  .admin-page .award-settings-form label,
  .admin-page .editor-form.rich-form > label:has(textarea[name="summary"]),
  .admin-page .editor-form.rich-form > label:has(.media-field),
  .admin-page .editor-form.rich-form > label.wide-field {
    grid-column: span 6;
  }

  .admin-page .translation-editor > label {
    grid-column: span 6;
  }

  .admin-page .translation-review > p,
  .admin-page .translation-review > label {
    grid-column: 1 / -1;
  }

  .admin-page .award-admin-grid {
    grid-template-columns: 1fr;
  }

  .admin-page .award-category-management-head {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .admin-page .editor-form.rich-form > label,
  .admin-page .editor-form.account-form > label,
  .admin-page .editor-form.site-settings-form > label,
  .admin-page .award-settings-form label,
  .admin-page .editor-form.compact > label {
    grid-column: 1 / -1;
  }

  .admin-page .translation-editor,
  .admin-page .translation-editor-head {
    grid-template-columns: 1fr;
  }

  .admin-page .translation-editor > label {
    grid-column: 1 / -1;
  }

  .admin-page .award-settings-grid label,
  .admin-page .award-settings-grid label.wide-field {
    grid-column: 1 / -1;
  }

  .admin-page .media-field,
  .admin-page .track-row,
  .admin-page .admin-item {
    grid-template-columns: 1fr;
  }

  .admin-page .award-category-admin-item {
    align-items: start;
    grid-template-columns: 34px minmax(0, 1fr);
  }

  .admin-page .award-category-admin-actions {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }

  .admin-page .admin-actions,
  .admin-page .account-actions {
    justify-content: flex-start;
  }
}

.podcast-cover-link,
.podcast-feature-cover {
  display: block;
  min-width: 0;
}

.podcast-cover-link img,
.podcast-feature-cover img,
.podcast-archive-card img {
  aspect-ratio: 1;
  border-radius: 18px;
  box-shadow: 0 22px 52px rgba(39, 113, 190, 0.28);
  display: block;
  object-fit: cover;
  width: 100%;
}

.podcast-latest-card h3,
.podcast-feature h2 {
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.1;
  margin: 16px 0;
}

.podcast-latest-card h3 a,
.podcast-feature h2 a,
.podcast-archive-card h3 a {
  color: inherit;
  text-decoration: none;
}

.podcast-latest-card p,
.podcast-feature p,
.podcast-empty p,
.podcast-archive-card p,
.podcast-player p {
  color: rgba(226, 232, 240, 0.74);
  line-height: 1.8;
}

.podcast-meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0;
}

.podcast-meta-line span {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 800;
  padding: 8px 11px;
}

.podcast-history-mini {
  display: grid;
  gap: 12px;
}

.podcast-history-mini a {
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  color: #fff;
  display: grid;
  gap: 5px;
  min-height: 0;
  padding: 16px;
  text-decoration: none;
  transition:
    border-color 180ms ease,
    transform 180ms ease;
}

.podcast-history-mini:empty {
  display: none;
}

.podcast-history-mini a:hover,
.podcast-archive-card:hover,
.podcast-latest-card:hover,
.podcast-feature:hover {
  border-color: rgba(132, 214, 238, 0.36);
  transform: translateY(-3px);
}

.podcast-history-mini span,
.podcast-history-mini small {
  color: rgba(132, 214, 238, 0.78);
  font-size: 12px;
  font-weight: 900;
}

.podcast-feature {
  align-items: center;
  grid-template-columns: minmax(220px, 0.38fr) minmax(0, 1fr);
  padding: clamp(22px, 3vw, 36px);
  transition:
    border-color 180ms ease,
    transform 180ms ease;
}

.podcast-page-section .podcast-feature {
  gap: clamp(22px, 3vw, 34px);
}

.podcast-page-section .podcast-feature-cover img {
  max-width: 340px;
}

.podcast-feature.pending {
  display: block;
}

.podcast-archive-list {
  display: grid;
  gap: 16px;
}

.podcast-archive-section .podcast-empty {
  display: grid;
  gap: 12px;
  padding: clamp(24px, 3vw, 34px);
}

.podcast-archive-section .podcast-empty h3,
.podcast-archive-section .podcast-empty p {
  margin-left: 2px;
  max-width: 720px;
}

.podcast-archive-card {
  align-items: center;
  display: grid;
  gap: 22px;
  grid-template-columns: 148px minmax(0, 1fr);
  padding: 22px;
  transition:
    border-color 180ms ease,
    transform 180ms ease;
}

.podcast-archive-card > div {
  min-width: 0;
  padding: 4px 8px 4px 2px;
}

.podcast-player {
  display: grid;
  gap: 12px;
  margin-bottom: 22px;
  padding: 20px;
}

.podcast-player > span {
  color: rgba(132, 214, 238, 0.82);
  font-size: 13px;
  font-weight: 900;
}

.podcast-player audio {
  accent-color: #21a4be;
  width: 100%;
}

.podcast-player.external .media-embed {
  margin: 0;
}

.podcast-facts {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-bottom: 24px;
  padding: 16px;
}

.podcast-facts div {
  min-width: 0;
}

.podcast-facts dt {
  color: rgba(132, 214, 238, 0.74);
  font-size: 12px;
  font-weight: 900;
}

.podcast-facts dd {
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 800;
  margin: 5px 0 0;
  overflow-wrap: anywhere;
}

@media (max-width: 980px) {
  .podcast-home,
  .podcast-feature,
  .podcast-latest-card {
    grid-template-columns: 1fr;
  }

  .podcast-cover-link img,
  .podcast-feature-cover img {
    max-width: 360px;
  }

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

@media (max-width: 640px) {
  .podcast-latest-card,
  .podcast-feature,
  .podcast-archive-card {
    border-radius: 18px;
    padding: 18px;
  }

  .podcast-archive-card {
    align-items: start;
    grid-template-columns: 96px minmax(0, 1fr);
  }

  .podcast-archive-section .podcast-empty {
    padding: 22px;
  }

  .podcast-archive-card > div {
    padding: 2px 0;
  }

  .podcast-latest-card h3,
  .podcast-feature h2 {
    font-size: 30px;
  }

  .podcast-meta-line {
    gap: 8px;
  }

  .podcast-facts {
    grid-template-columns: 1fr;
  }
}

/* Mobile polish pass: keep navigation compact and make content cards resilient. */
html,
body {
  overflow-x: hidden;
}

.composer-name {
  display: inline-flex;
  flex-direction: column;
  gap: 3px;
  line-height: 1.08;
  min-width: 0;
  vertical-align: top;
}

.composer-name small {
  color: rgba(226, 232, 240, 0.58);
  font-size: 0.52em;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.18;
  overflow-wrap: anywhere;
}

.composer-filter .composer-name small,
.composer-name-card small,
.composer-name-portrait small {
  font-size: 12px;
}

.composer-name-large small {
  font-size: clamp(14px, 2.4vw, 18px);
  margin-top: 4px;
}

@media (max-width: 760px) {
  .site-header {
    align-items: center;
    display: grid;
    gap: 10px 8px;
    grid-template-areas:
      "brand locale search auth"
      "nav nav nav nav";
    grid-template-columns: minmax(0, 1fr) auto auto auto;
    padding: 10px 14px 11px;
  }

  .brand {
    grid-area: brand;
    min-width: 0;
    width: auto;
  }

  .brand-mark {
    border-radius: 12px;
    flex: 0 0 42px;
    height: 42px;
    width: 42px;
  }

  .brand strong,
  .brand small {
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .brand strong {
    font-size: clamp(18px, 5.4vw, 21px);
    line-height: 1.1;
  }

  .brand small {
    font-size: 11px;
    margin-top: 4px;
  }

  .main-nav {
    -webkit-overflow-scrolling: touch;
    flex-wrap: nowrap;
    gap: 8px;
    grid-area: nav;
    justify-content: flex-start;
    margin-left: 0;
    overflow-x: auto;
    padding: 0 0 2px;
    scrollbar-width: none;
    width: 100%;
  }

  .main-nav::-webkit-scrollbar {
    display: none;
  }

  .main-nav a {
    flex: 0 0 auto;
    font-size: 13px;
    min-height: 32px;
    padding: 7px 9px;
    white-space: nowrap;
  }

  .site-search-slot {
    grid-area: search;
  }

  .locale-switcher {
    grid-area: locale;
  }

  .public-auth-slot {
    grid-area: auth;
  }

  .site-search-slot,
  .locale-switcher,
  .public-auth-slot {
    align-items: center;
    justify-content: center;
    min-width: 0;
  }

  .site-search-button {
    border-radius: 50%;
    gap: 0;
    height: 40px;
    justify-content: center;
    min-height: 40px;
    min-width: 40px;
    padding: 0;
    width: 40px;
  }

  .locale-switcher a {
    border-radius: 50%;
    font-size: 11px;
    height: 34px;
    min-height: 34px;
    min-width: 34px;
    padding: 0;
    width: 34px;
  }

  .site-search-button strong {
    clip: rect(0 0 0 0);
    height: 1px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
    width: 1px;
  }

  .public-auth-button {
    border-radius: 999px;
    font-size: 12px;
    height: 40px;
    min-height: 40px;
    min-width: 48px;
    padding: 0 11px;
    white-space: nowrap;
  }

  .public-auth-button.signed {
    gap: 0;
    justify-content: center;
    max-width: 42px;
    min-width: 42px;
    padding: 0;
  }

  .public-auth-button.signed strong {
    display: none;
  }
}

@media (max-width: 640px) {
  .page-hero,
  .page-awards-hero,
  .album-detail-hero,
  .article-detail-hero {
    padding: 42px 18px 34px;
  }

  .page-hero h1,
  .page-awards-hero h1,
  .album-detail-hero h1,
  .article-detail-hero h1 {
    font-size: clamp(28px, 8.2vw, 38px);
    line-height: 1.12;
    overflow-wrap: anywhere;
  }

  .page-hero p,
  .page-awards-hero p,
  .album-detail-hero p,
  .article-detail-hero p {
    font-size: 14px;
    line-height: 1.75;
  }

  .hero,
  .immersive-hero {
    min-height: auto;
  }

  .hero h1,
  .immersive-hero h1 {
    font-size: clamp(28px, 8.8vw, 38px);
    line-height: 1.16;
  }

  .hero-copy {
    font-size: 15px;
    line-height: 1.72;
  }

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

  .hero-meta,
  .news-pills,
  .podcast-meta-line,
  .share-actions {
    gap: 8px;
  }

  .hero-meta span,
  .news-pills span,
  .podcast-meta-line span {
    font-size: 12px;
    max-width: 100%;
  }

  .featured-layout {
    gap: 14px;
  }

  #news .lead-story {
    gap: 18px;
    padding: 18px;
  }

  #news .lead-story h3 {
    font-size: clamp(24px, 7.6vw, 32px);
    line-height: 1.16;
    margin: 16px 0 12px;
  }

  #news .lead-story .album-cover {
    justify-self: center;
    max-width: 240px;
  }

  #news .story-card {
    grid-template-columns: 86px minmax(0, 1fr);
    padding: 14px;
  }

  #news .story-card .album-cover {
    width: 86px;
  }

  #news .story-card h3,
  .album-page-card h2,
  .composer-page-card h2,
  .review-page-card h2,
  .feature-row h2 {
    font-size: 18px;
    line-height: 1.26;
    overflow-wrap: anywhere;
  }

  #news .story-card h3,
  .album-page-card h2,
  .review-page-card h2 {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .album-page-card {
    align-items: start;
    gap: 14px;
    grid-template-columns: 112px minmax(0, 1fr);
    padding: 16px;
  }

  .album-page-card > a:first-child {
    min-width: 0;
  }

  .album-page-card .album-cover.large {
    width: 112px;
  }

  .album-page-card p,
  .composer-page-card p,
  .review-page-card p,
  .feature-row p {
    display: -webkit-box;
    font-size: 13px;
    line-height: 1.65;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .album-meta-grid.compact {
    gap: 6px;
    grid-template-columns: 1fr;
    margin: 10px 0;
  }

  .album-page-card .album-meta-grid span,
  .album-meta-grid span {
    font-size: 11px;
    min-width: 0;
    overflow-wrap: anywhere;
    padding: 8px 9px;
  }

  .album-page-card .button,
  .composer-page-card .button,
  .review-page-card .button,
  .feature-row .button {
    font-size: 13px;
    min-height: 40px;
    padding: 9px 13px;
  }

  .composer-layout {
    gap: 14px;
  }

  .composer-filter {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  .composer-filter::-webkit-scrollbar {
    display: none;
  }

  .composer-filter button {
    flex: 0 0 min(76vw, 260px);
    min-height: 86px;
    padding: 13px 14px;
  }

  .composer-filter button > span {
    display: -webkit-box;
    margin-top: 7px;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .composer-panel {
    gap: 18px;
    padding: 18px;
  }

  .composer-panel h3 {
    font-size: clamp(28px, 8vw, 36px);
  }

  .composer-portrait {
    justify-self: start;
    max-width: 168px;
    width: min(48vw, 168px);
  }

  .composer-page-card {
    align-items: start;
    display: grid;
    gap: 8px 14px;
    grid-template-columns: 104px minmax(0, 1fr);
    padding: 16px;
  }

  .composer-page-card > a:first-child {
    grid-row: 1 / span 4;
  }

  .composer-page-card .feature-thumb.square {
    width: 104px;
  }

  .composer-page-card > .tag,
  .composer-page-card > h2,
  .composer-page-card > p,
  .composer-page-card > .button {
    grid-column: 2;
  }

  .composer-page-card > .button,
  .feature-row .button,
  .review-page-card .button {
    justify-self: start;
  }

  .review-page-card {
    align-items: center;
    gap: 14px;
    grid-template-areas:
      "cover score"
      "body body";
    grid-template-columns: minmax(128px, 42vw) minmax(76px, 1fr);
    padding: 16px;
  }

  .review-page-card > a:first-child {
    grid-area: cover;
  }

  .review-page-card > a:first-child .album-cover {
    width: min(154px, 42vw);
  }

  .review-page-card > .score {
    grid-area: score;
    height: 64px;
    justify-self: start;
    width: 78px;
  }

  .review-page-card > div:last-child {
    grid-area: body;
    min-width: 0;
  }

  .review-card {
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .review-card .score {
    height: 58px;
    width: 72px;
  }

  .feature-row {
    gap: 16px;
    padding: 16px;
  }

  .feature-thumb {
    max-height: 220px;
    width: 100%;
  }

  .album-detail-hero,
  .article-detail-hero {
    gap: 22px;
  }

  .album-detail-hero > img {
    order: 2;
  }

  .album-detail-hero > div {
    order: 1;
  }

  .album-cover.detail {
    justify-self: center;
    width: min(230px, 72vw);
  }

  .article-detail-cover {
    justify-self: center;
    max-height: 300px;
    width: min(100%, 320px);
  }

  .article-detail-cover.review-detail-cover {
    aspect-ratio: 1;
    max-height: none;
  }

  .article-detail-layout,
  .album-detail-body {
    gap: 16px;
  }

  .detail-panel {
    border-radius: 18px;
    padding: 18px;
  }

  .article-body {
    font-size: 15px;
    overflow-wrap: anywhere;
  }

  .track-list li {
    gap: 10px;
    padding: 12px;
  }

  .site-footer {
    gap: 24px;
    padding-left: 18px;
    padding-right: 18px;
  }
}

@media (max-width: 420px) {
  .site-header {
    gap: 9px 7px;
    padding-left: 12px;
    padding-right: 12px;
  }

  .brand {
    gap: 9px;
  }

  .brand-mark {
    flex-basis: 40px;
    height: 40px;
    width: 40px;
  }

  .brand strong {
    font-size: 18px;
  }

  .brand small {
    font-size: 10.5px;
  }

  .main-nav a {
    font-size: 13px;
    padding: 7px 8px;
  }
}

/* NovaPulse-inspired public visual system. Admin remains on its existing theme. */
body:not(.admin-page) {
  --ink: #f8fafc;
  --muted: #94a3b8;
  --line: rgba(255, 255, 255, 0.08);
  --paper: #000;
  --panel: rgba(2, 6, 23, 0.76);
  --charcoal: #020617;
  --ruby: #a78bfa;
  --teal: #60a5fa;
  --brass: #34d399;
  --green: #10b981;
  --violet: #8b5cf6;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.4);
  background:
    radial-gradient(circle at 74% 10%, rgba(59, 130, 246, 0.12), transparent 27rem),
    radial-gradient(circle at 10% 42%, rgba(16, 185, 129, 0.06), transparent 24rem),
    radial-gradient(circle at 84% 76%, rgba(139, 92, 246, 0.08), transparent 26rem),
    #000;
  color: var(--ink);
  font-family: "DM Sans", "PingFang SC", "Microsoft YaHei", sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

body:not(.admin-page)::before {
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.014) 1px, transparent 1px);
  background-size: 64px 64px;
  content: "";
  inset: 0;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.72), transparent 72%);
  pointer-events: none;
  position: fixed;
  z-index: -1;
}

body:not(.admin-page) h1,
body:not(.admin-page) h2,
body:not(.admin-page) h3,
body:not(.admin-page) .brand strong {
  font-family: "Manrope", "PingFang SC", "Microsoft YaHei", sans-serif;
  letter-spacing: 0;
}

body:not(.admin-page) .site-header {
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.9), rgba(2, 6, 23, 0.68));
  border-bottom-color: rgba(255, 255, 255, 0.06);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.2);
  min-height: 72px;
  padding: 12px max(24px, calc((100vw - 1180px) / 2));
  backdrop-filter: blur(18px) saturate(1.24);
}

body:not(.admin-page) .brand {
  gap: 11px;
  min-width: 220px;
}

body:not(.admin-page) .brand-mark {
  background: #020617;
  border: 1px solid rgba(96, 165, 250, 0.28);
  border-radius: 10px;
  box-shadow: 0 0 32px rgba(34, 197, 235, 0.2);
  height: 42px;
  width: 42px;
}

body:not(.admin-page) .brand strong {
  color: #f8fafc;
  font-size: 16px;
  font-weight: 700;
}

body:not(.admin-page) .brand small {
  color: #64748b;
  font-size: 10px;
  margin-top: 2px;
}

body:not(.admin-page) .main-nav {
  flex: 1 1 auto;
  gap: 2px;
  min-width: 0;
  flex-wrap: nowrap;
  white-space: nowrap;
}

body:not(.admin-page) .main-nav a,
body:not(.admin-page) .tab {
  border-radius: 999px;
  color: #94a3b8;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 11px;
  position: relative;
  white-space: nowrap;
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

body:not(.admin-page) .main-nav a::after {
  background: linear-gradient(90deg, transparent, #60a5fa, #34d399, transparent);
  bottom: 1px;
  content: "";
  height: 1px;
  left: 20%;
  opacity: 0;
  position: absolute;
  right: 20%;
  transform: scaleX(0.2);
  transition: opacity 180ms ease, transform 180ms ease;
}

body:not(.admin-page) .main-nav a:hover,
body:not(.admin-page) .tab:hover {
  background: rgba(59, 130, 246, 0.08);
  color: #e2e8f0;
  transform: translateY(-1px);
}

body:not(.admin-page) .main-nav a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

body:not(.admin-page) .site-search-button,
body:not(.admin-page) .public-auth-button {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 999px;
  box-shadow: none;
  color: #cbd5e1;
  min-height: 38px;
}

body:not(.admin-page) .public-auth-button {
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  border-color: rgba(96, 165, 250, 0.7);
  box-shadow: 0 0 26px rgba(59, 130, 246, 0.3);
  color: #f8fafc;
}

body:not(.admin-page) .locale-switcher a {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.09);
  color: #94a3b8;
  min-height: 34px;
  min-width: 34px;
  padding: 0 8px;
}

body:not(.admin-page) .locale-switcher a.active,
body:not(.admin-page) .locale-switcher a:hover {
  background: rgba(59, 130, 246, 0.13);
  border-color: rgba(96, 165, 250, 0.42);
  color: #bfdbfe;
}

body:not(.admin-page) .immersive-hero {
  background:
    radial-gradient(circle at 71% 38%, rgba(34, 197, 235, 0.16), transparent 22rem),
    radial-gradient(circle at 42% 52%, rgba(59, 130, 246, 0.12), transparent 27rem),
    linear-gradient(180deg, #000 0%, #020617 54%, #000 100%);
  min-height: min(820px, calc(100vh - 72px));
}

body:not(.admin-page) .immersive-hero > img {
  filter: saturate(0.66) contrast(1.14) brightness(0.34);
  opacity: 0.3;
  transform: scale(1.025);
}

body:not(.admin-page) .immersive-hero .hero-overlay {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.97) 0%, rgba(0, 0, 0, 0.82) 38%, rgba(2, 6, 23, 0.36) 68%, rgba(0, 0, 0, 0.72) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.84));
}

body:not(.admin-page) .hero-aurora {
  filter: none;
  inset: 0;
  mix-blend-mode: screen;
  opacity: 0.88;
}

body:not(.admin-page) .hero-aurora::before {
  animation: novaBeamBreathe 7s ease-in-out infinite;
  background:
    linear-gradient(90deg, transparent, rgba(34, 197, 235, 0.3), rgba(96, 165, 250, 0.12), transparent),
    repeating-linear-gradient(90deg, transparent 0 3px, rgba(125, 211, 252, 0.2) 3px 4px, transparent 4px 8px);
  filter: blur(11px);
  inset: 4% 27% 7% 48%;
  mask-image: linear-gradient(180deg, transparent, #000 12%, #000 88%, transparent);
  transform: perspective(800px) rotateY(-12deg);
}

body:not(.admin-page) .hero-aurora span {
  animation: novaFrequency 9s ease-in-out infinite alternate;
  background: repeating-linear-gradient(90deg, transparent 0 5px, rgba(56, 189, 248, 0.24) 6px 7px, transparent 8px 13px);
  border-radius: 0;
  filter: blur(0.4px);
  height: 72%;
  left: 63%;
  mask-image: linear-gradient(180deg, transparent, #000 16%, #000 84%, transparent);
  opacity: 0.35;
  top: 13%;
  transform: translateX(-50%) skewX(-6deg);
  width: 19%;
}

body:not(.admin-page) .hero-aurora span:nth-child(2) {
  animation-delay: -2s;
  height: 56%;
  left: 57%;
  opacity: 0.24;
  top: 21%;
  transform: translateX(-50%) skewX(5deg);
  width: 14%;
}

body:not(.admin-page) .hero-aurora span:nth-child(3) {
  animation-delay: -4s;
  height: 84%;
  left: 70%;
  opacity: 0.18;
  top: 8%;
  transform: translateX(-50%) skewX(-2deg);
  width: 11%;
}

body:not(.admin-page) .hero-aurora span:nth-child(4) {
  animation-delay: -6s;
  height: 44%;
  left: 50%;
  opacity: 0.15;
  top: 28%;
  transform: translateX(-50%) skewX(8deg);
  width: 9%;
}

body:not(.admin-page) .cosmos-field {
  background-size: 580px 580px;
  opacity: 0.64;
}

body:not(.admin-page) .cosmos-wave {
  background:
    repeating-radial-gradient(ellipse at 58% 96%, transparent 0 7%, rgba(34, 211, 238, 0.1) 7.5% 8%, transparent 8.5% 14%),
    repeating-linear-gradient(174deg, transparent 0 34px, rgba(96, 165, 250, 0.08) 35px 36px, transparent 37px 78px),
    linear-gradient(180deg, transparent 48%, rgba(2, 132, 199, 0.09), rgba(16, 185, 129, 0.07));
  opacity: 0.74;
}

body:not(.admin-page) .cosmos-note,
body:not(.admin-page) .cosmos-game {
  color: rgba(125, 211, 252, 0.42);
  filter: blur(0.2px);
  font-size: clamp(16px, 2vw, 28px);
  opacity: 0.7;
}

body:not(.admin-page) .hero-orbit::before,
body:not(.admin-page) .hero-orbit::after {
  border-color: rgba(96, 165, 250, 0.09);
  box-shadow: none;
  opacity: 0.45;
}

body:not(.admin-page) .hero-staff {
  background:
    radial-gradient(circle at 18% 24%, rgba(255, 255, 255, 0.62) 0 1px, transparent 2px),
    radial-gradient(circle at 76% 18%, rgba(52, 211, 153, 0.54) 0 1px, transparent 2px),
    radial-gradient(circle at 88% 72%, rgba(96, 165, 250, 0.62) 0 1px, transparent 2px);
  opacity: 0.56;
}

body:not(.admin-page) .hero-grid {
  gap: clamp(42px, 7vw, 96px);
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  max-width: 1180px;
  padding: clamp(72px, 8vw, 108px) 24px 122px;
  perspective: 800px;
}

body:not(.admin-page) .hero .eyebrow {
  align-items: center;
  color: #93c5fd;
  display: inline-flex;
  font-family: "Space Mono", monospace;
  font-size: 11px;
  gap: 8px;
}

body:not(.admin-page) .hero .eyebrow::before {
  background: #3b82f6;
  border-radius: 50%;
  box-shadow: 0 0 14px rgba(59, 130, 246, 0.8);
  content: "";
  height: 7px;
  width: 7px;
}

body:not(.admin-page) .hero h1,
body:not(.admin-page) .immersive-hero h1 {
  color: #f8fafc;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 600;
  line-height: 1.06;
  margin-bottom: 20px;
  max-width: 690px;
  text-shadow: 0 16px 50px rgba(0, 0, 0, 0.56);
}

body:not(.admin-page) .hero-copy {
  color: #94a3b8;
  font-size: clamp(15px, 1.45vw, 18px);
  line-height: 1.7;
  max-width: 610px;
}

body:not(.admin-page) .hero-meta span {
  background: rgba(15, 23, 42, 0.66);
  border-color: rgba(148, 163, 184, 0.16);
  color: #cbd5e1;
  font-family: "Space Mono", monospace;
  font-size: 10px;
  padding: 7px 10px;
}

body:not(.admin-page) .hero-meta span:first-child {
  background: rgba(37, 99, 235, 0.2);
  border-color: rgba(96, 165, 250, 0.38);
  color: #bfdbfe;
}

body:not(.admin-page) .button {
  border-radius: 999px;
  font-size: 13px;
  min-height: 46px;
  padding: 11px 18px;
}

body:not(.admin-page) .button.primary {
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  box-shadow: 0 14px 34px rgba(37, 99, 235, 0.26);
}

body:not(.admin-page) .button.primary:hover {
  background: linear-gradient(135deg, #3b82f6, #60a5fa);
  box-shadow: 0 18px 42px rgba(59, 130, 246, 0.38);
}

body:not(.admin-page) .button.secondary {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.14);
  color: #cbd5e1;
  backdrop-filter: blur(10px);
}

body:not(.admin-page) .hero-feature-card.visual-only {
  aspect-ratio: 1;
  background:
    linear-gradient(145deg, rgba(15, 23, 42, 0.84), rgba(2, 6, 23, 0.68)),
    radial-gradient(circle at 70% 20%, rgba(59, 130, 246, 0.14), transparent 44%);
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 24px;
  box-shadow:
    0 38px 100px rgba(0, 0, 0, 0.62),
    0 0 62px rgba(34, 197, 235, 0.12),
    inset 0 1px rgba(255, 255, 255, 0.05);
  min-height: 0;
  overflow: visible;
  padding: 18px;
  justify-self: end;
  max-width: 430px;
  width: 100%;
  transform: rotateY(-7deg) rotateX(2deg) translateY(8px);
  transition: transform 420ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 420ms ease;
}

body:not(.admin-page) .hero-feature-card.visual-only::before {
  animation: novaBorderSpin 10s linear infinite;
  background: conic-gradient(from 0deg, transparent 0 22%, rgba(96, 165, 250, 0.65), transparent 36% 70%, rgba(52, 211, 153, 0.42), transparent 84%);
  border-radius: 26px;
  content: "";
  inset: -1px;
  opacity: 0.55;
  padding: 1px;
  pointer-events: none;
  position: absolute;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

body:not(.admin-page) .hero-feature-card.visual-only::after {
  background:
    radial-gradient(circle at 50% 50%, transparent 0 55%, rgba(96, 165, 250, 0.08) 56% 57%, transparent 58%),
    linear-gradient(180deg, transparent 54%, rgba(2, 6, 23, 0.58));
  border-radius: 18px;
  inset: 18px;
  z-index: 2;
}

body:not(.admin-page) .hero-feature-card.visual-only:hover {
  box-shadow: 0 44px 110px rgba(0, 0, 0, 0.66), 0 0 74px rgba(59, 130, 246, 0.2);
  transform: rotateY(-2deg) rotateX(0deg) translateY(0) scale(1.015);
}

body:not(.admin-page) .hero-feature-link {
  border-radius: 17px;
  overflow: hidden;
}

body:not(.admin-page) .hero-feature-card.visual-only .hero-feature-cover {
  border-radius: 17px;
  filter: saturate(0.88) contrast(1.04) brightness(0.84);
}

body:not(.admin-page) .immersive-hero .hero-digest {
  bottom: 22px;
  gap: 10px;
  max-width: 1132px;
}

body:not(.admin-page) .immersive-hero .hero-digest a {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.66), rgba(2, 6, 23, 0.5));
  border-color: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  color: #cbd5e1;
  min-height: 62px;
  padding: 13px 15px;
}

body:not(.admin-page) .immersive-hero .hero-digest a:hover {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.15), rgba(15, 23, 42, 0.7));
  border-color: rgba(96, 165, 250, 0.32);
  box-shadow: 0 16px 36px rgba(37, 99, 235, 0.12);
  transform: translateY(-3px);
}

body:not(.admin-page) .immersive-hero .hero-digest span {
  color: #60a5fa;
  font-family: "Space Mono", monospace;
  font-size: 10px;
  margin-bottom: 4px;
}

body:not(.admin-page) .strategy-band,
body:not(.admin-page) .section,
body:not(.admin-page) .tinted,
body:not(.admin-page) .awards {
  background: transparent;
  border: 0;
  color: #f8fafc;
}

body:not(.admin-page) .strategy-band {
  padding: 28px max(24px, calc((100vw - 1180px) / 2)) clamp(68px, 8vw, 96px);
}

body:not(.admin-page) .signal-strip {
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-left: 0;
  border-right: 0;
  color: #64748b;
  margin: -28px calc(-1 * max(24px, calc((100vw - 1180px) / 2))) 36px;
  padding-bottom: 14px;
  padding-top: 14px;
}

body:not(.admin-page) .signal-group span {
  align-items: center;
  display: inline-flex;
  font-family: "Space Mono", monospace;
  font-size: 10px;
  gap: 12px;
  letter-spacing: 0.08em;
}

body:not(.admin-page) .signal-group span::before {
  background: linear-gradient(180deg, #60a5fa, #34d399);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(59, 130, 246, 0.48);
  content: "";
  height: 4px;
  width: 4px;
}

body:not(.admin-page) .strategy-grid,
body:not(.admin-page) .section-head,
body:not(.admin-page) .featured-layout,
body:not(.admin-page) .card-grid,
body:not(.admin-page) .composer-layout,
body:not(.admin-page) .split-section,
body:not(.admin-page) .awards-shell,
body:not(.admin-page) .album-page-grid,
body:not(.admin-page) .feature-list,
body:not(.admin-page) .review-page-list,
body:not(.admin-page) .composer-page-grid,
body:not(.admin-page) .award-timeline,
body:not(.admin-page) .nominee-board,
body:not(.admin-page) .podcast-home,
body:not(.admin-page) .podcast-page-shell,
body:not(.admin-page) .podcast-archive-list,
body:not(.admin-page) .site-footer {
  max-width: 1180px;
}

body:not(.admin-page) .strategy-grid {
  gap: 14px;
}

body:not(.admin-page) .strategy-grid article {
  background: linear-gradient(145deg, rgba(15, 23, 42, 0.6), rgba(2, 6, 23, 0.72));
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  min-height: 176px;
  overflow: hidden;
  padding: 24px;
  position: relative;
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

body:not(.admin-page) .strategy-grid article::after {
  background: radial-gradient(circle, rgba(59, 130, 246, 0.2), transparent 66%);
  content: "";
  height: 150px;
  pointer-events: none;
  position: absolute;
  right: -70px;
  top: -70px;
  width: 150px;
}

body:not(.admin-page) .strategy-grid article:nth-child(2)::after {
  background: radial-gradient(circle, rgba(16, 185, 129, 0.17), transparent 66%);
}

body:not(.admin-page) .strategy-grid article:nth-child(3)::after {
  background: radial-gradient(circle, rgba(139, 92, 246, 0.18), transparent 66%);
}

body:not(.admin-page) .strategy-grid article:hover {
  border-color: rgba(96, 165, 250, 0.22);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.32);
  transform: translateY(-5px);
}

body:not(.admin-page) .strategy-grid span {
  color: #60a5fa;
  font-family: "Space Mono", monospace;
  font-size: 11px;
}

body:not(.admin-page) .strategy-grid h2 {
  color: #e2e8f0;
  font-size: 20px;
  margin-top: 22px;
}

body:not(.admin-page) .strategy-grid p,
body:not(.admin-page) .section-copy,
body:not(.admin-page) .lead-story p,
body:not(.admin-page) .story-card p,
body:not(.admin-page) .content-card p,
body:not(.admin-page) .review-card p,
body:not(.admin-page) .composer-panel p,
body:not(.admin-page) .awards-shell p,
body:not(.admin-page) .article-body {
  color: #94a3b8;
}

body:not(.admin-page) .section {
  padding: clamp(64px, 8vw, 96px) max(24px, calc((100vw - 1180px) / 2));
}

body:not(.admin-page) .section-head {
  align-items: end;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 28px;
  padding-bottom: 18px;
}

body:not(.admin-page) .section-head .eyebrow,
body:not(.admin-page) .section > .eyebrow,
body:not(.admin-page) .split-section .eyebrow {
  color: #60a5fa;
  font-family: "Space Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
}

body:not(.admin-page) .section h2 {
  color: #f1f5f9;
  font-size: clamp(28px, 3.3vw, 44px);
  font-weight: 600;
}

body:not(.admin-page) .text-link {
  color: #94a3b8;
  font-size: 13px;
  transition: color 180ms ease, transform 180ms ease;
}

body:not(.admin-page) .text-link::after {
  content: "  ↗";
}

body:not(.admin-page) .text-link:hover {
  color: #93c5fd;
}

body:not(.admin-page) .hero-feature-card,
body:not(.admin-page) .lead-story,
body:not(.admin-page) .story-card,
body:not(.admin-page) .content-card,
body:not(.admin-page) .review-card,
body:not(.admin-page) .composer-panel,
body:not(.admin-page) .album-page-card,
body:not(.admin-page) .feature-row,
body:not(.admin-page) .review-page-card,
body:not(.admin-page) .composer-page-card,
body:not(.admin-page) .detail-panel,
body:not(.admin-page) .award-timeline article,
body:not(.admin-page) .award-category,
body:not(.admin-page) .podcast-latest-card,
body:not(.admin-page) .podcast-history-mini a,
body:not(.admin-page) .podcast-archive-card,
body:not(.admin-page) .jury-card,
body:not(.admin-page) .award-rule-panel,
body:not(.admin-page) .award-status-card {
  background:
    linear-gradient(145deg, rgba(15, 23, 42, 0.66), rgba(2, 6, 23, 0.82)),
    radial-gradient(circle at 84% 8%, rgba(59, 130, 246, 0.1), transparent 40%);
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 16px;
  box-shadow: 0 20px 58px rgba(0, 0, 0, 0.3);
  color: #e2e8f0;
  overflow: hidden;
  transition: transform 240ms cubic-bezier(0.16, 1, 0.3, 1), border-color 240ms ease, box-shadow 240ms ease;
  backdrop-filter: blur(12px);
}

body:not(.admin-page) .story-card:hover,
body:not(.admin-page) .content-card:hover,
body:not(.admin-page) .review-card:hover,
body:not(.admin-page) .album-page-card:hover,
body:not(.admin-page) .feature-row:hover,
body:not(.admin-page) .review-page-card:hover,
body:not(.admin-page) .composer-page-card:hover,
body:not(.admin-page) .podcast-history-mini a:hover,
body:not(.admin-page) .podcast-archive-card:hover {
  border-color: rgba(96, 165, 250, 0.24);
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.38), 0 0 38px rgba(37, 99, 235, 0.08);
  transform: translateY(-5px);
}

body:not(.admin-page) .featured-layout {
  gap: 16px;
  grid-template-columns: minmax(0, 1.15fr) minmax(330px, 0.85fr);
}

body:not(.admin-page) .lead-story {
  gap: 30px;
  min-height: 500px;
  padding: clamp(24px, 3vw, 34px);
}

body:not(.admin-page) .lead-story h3 {
  color: #f1f5f9;
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 600;
}

body:not(.admin-page) .story-card {
  gap: 14px;
  grid-template-columns: 104px minmax(0, 1fr);
  padding: 15px;
}

body:not(.admin-page) .album-cover,
body:not(.admin-page) .feature-thumb,
body:not(.admin-page) .article-detail-cover,
body:not(.admin-page) .podcast-cover-link img {
  background: #020617;
  border-color: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.4);
}

body:not(.admin-page) .tag {
  background: rgba(37, 99, 235, 0.14);
  border: 1px solid rgba(96, 165, 250, 0.16);
  color: #93c5fd;
  font-family: "Space Mono", monospace;
  font-size: 10px;
}

body:not(.admin-page) .content-card .meta,
body:not(.admin-page) .review-card .meta,
body:not(.admin-page) .story-card .meta {
  color: #64748b;
  font-family: "Space Mono", monospace;
  font-size: 10px;
}

body:not(.admin-page) .interview-card {
  min-height: 270px;
  padding: 24px;
}

body:not(.admin-page) #interviewGrid.interview-carousel:has(.carousel-control[hidden]) {
  grid-template-columns: minmax(0, 1fr);
}

body:not(.admin-page) #interviewGrid.interview-carousel:has(.carousel-control[hidden]) .interview-viewport {
  grid-column: 1;
}

body:not(.admin-page) .carousel-control {
  background: rgba(15, 23, 42, 0.86);
  border-color: rgba(255, 255, 255, 0.1);
  color: #93c5fd;
}

body:not(.admin-page) .podcast-latest-card {
  padding: clamp(20px, 3vw, 30px);
}

body:not(.admin-page) .podcast-meta-line,
body:not(.admin-page) .podcast-facts,
body:not(.admin-page) .podcast-history-mini small {
  color: #64748b;
  font-family: "Space Mono", monospace;
}

body:not(.admin-page) .composer-filter button {
  background: rgba(15, 23, 42, 0.54);
  border-color: rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  color: #cbd5e1;
  transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

body:not(.admin-page) .composer-filter button:hover {
  border-color: rgba(96, 165, 250, 0.22);
  transform: translateX(4px);
}

body:not(.admin-page) .composer-filter button.active {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.28), rgba(15, 23, 42, 0.82));
  border-color: rgba(96, 165, 250, 0.38);
  box-shadow: inset 3px 0 #3b82f6, 0 16px 34px rgba(0, 0, 0, 0.22);
}

body:not(.admin-page) .composer-panel {
  border-radius: 18px;
  padding: clamp(24px, 4vw, 38px);
}

body:not(.admin-page) .composer-portrait {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.42);
}

body:not(.admin-page) .composer-stats span {
  background: rgba(255, 255, 255, 0.035);
  border-color: rgba(255, 255, 255, 0.08);
  color: #94a3b8;
  font-size: 12px;
}

body:not(.admin-page) .score {
  background: linear-gradient(145deg, #2563eb, #3b82f6 58%, #10b981);
  border-radius: 14px;
  box-shadow: 0 16px 34px rgba(37, 99, 235, 0.22);
  font-family: "Space Mono", monospace;
}

body:not(.admin-page) .awards {
  isolation: isolate;
}

body:not(.admin-page) .awards::before {
  background:
    radial-gradient(circle at 18% 16%, rgba(16, 185, 129, 0.1), transparent 22rem),
    radial-gradient(circle at 82% 24%, rgba(59, 130, 246, 0.14), transparent 26rem),
    linear-gradient(180deg, rgba(2, 6, 23, 0.45), rgba(0, 0, 0, 0.2));
}

body:not(.admin-page) .award-category span,
body:not(.admin-page) .award-timeline span {
  color: #34d399;
  font-family: "Space Mono", monospace;
}

body:not(.admin-page) .page-hero,
body:not(.admin-page) .page-awards-hero,
body:not(.admin-page) .album-detail-hero,
body:not(.admin-page) .article-detail-hero {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.94), rgba(2, 6, 23, 0.7) 56%, rgba(2, 6, 23, 0.82)),
    repeating-linear-gradient(90deg, transparent 0 7px, rgba(59, 130, 246, 0.07) 8px 9px, transparent 10px 17px),
    radial-gradient(circle at 76% 30%, rgba(34, 197, 235, 0.16), transparent 25rem),
    #000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

body:not(.admin-page) .page-hero,
body:not(.admin-page) .page-awards-hero {
  min-height: 330px;
  padding: clamp(72px, 8vw, 104px) max(24px, calc((100vw - 1180px) / 2));
}

body:not(.admin-page) .page-hero::before,
body:not(.admin-page) .page-awards-hero::before {
  background:
    radial-gradient(circle at 8% 28%, rgba(255, 255, 255, 0.48) 0 1px, transparent 2px),
    radial-gradient(circle at 72% 18%, rgba(96, 165, 250, 0.54) 0 1px, transparent 2px),
    radial-gradient(circle at 88% 68%, rgba(52, 211, 153, 0.42) 0 1px, transparent 2px);
  background-size: 440px 320px;
  opacity: 0.72;
}

body:not(.admin-page) .page-hero h1,
body:not(.admin-page) .page-awards-hero h1,
body:not(.admin-page) .album-detail-hero h1,
body:not(.admin-page) .article-detail-hero h1 {
  color: #f8fafc;
  font-weight: 600;
}

body:not(.admin-page) .page-hero h1,
body:not(.admin-page) .page-awards-hero h1 {
  font-size: clamp(38px, 5.2vw, 64px);
}

body:not(.admin-page) .album-detail-hero,
body:not(.admin-page) .article-detail-hero {
  padding: clamp(52px, 7vw, 88px) max(24px, calc((100vw - 1180px) / 2));
}

body:not(.admin-page) .article-detail-hero {
  min-height: 390px;
}

body:not(.admin-page) .album-detail-hero {
  grid-template-columns: minmax(220px, 360px) minmax(0, 1fr);
}

body:not(.admin-page) .album-detail-hero h1 {
  font-size: clamp(34px, 4.8vw, 62px);
}

body:not(.admin-page) .article-detail-hero h1 {
  font-size: clamp(30px, 4vw, 52px);
}

body:not(.admin-page) .album-meta-grid span,
body:not(.admin-page) .album-page-card .album-meta-grid span,
body:not(.admin-page) .track-list li {
  background: rgba(255, 255, 255, 0.025);
  border-color: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  color: #94a3b8;
}

body:not(.admin-page) .album-meta-grid strong,
body:not(.admin-page) .track-list li::before {
  color: #60a5fa;
  font-family: "Space Mono", monospace;
}

body:not(.admin-page) .article-body h2,
body:not(.admin-page) .article-body h3,
body:not(.admin-page) .detail-panel h2,
body:not(.admin-page) .detail-panel h3 {
  color: #e2e8f0;
}

body:not(.admin-page) .article-body a {
  color: #60a5fa;
}

body:not(.admin-page) .media-embed {
  background: #020617;
  border-color: rgba(255, 255, 255, 0.08);
  border-radius: 14px;
}

body:not(.admin-page) .site-footer {
  background:
    linear-gradient(120deg, rgba(2, 6, 23, 0.94), rgba(2, 6, 23, 0.76)),
    radial-gradient(circle at 84% 18%, rgba(59, 130, 246, 0.14), transparent 24rem);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 0;
  border-radius: 20px 20px 0 0;
  color: #e2e8f0;
  margin-top: 48px;
  padding: clamp(40px, 6vw, 68px) clamp(24px, 4vw, 50px);
}

/* Let the brand sit in the footer's atmosphere instead of on a separate dark patch. */
body:not(.admin-page) .footer-logo {
  border-radius: 14px;
  transition: transform 180ms ease, filter 180ms ease;
}

body:not(.admin-page) .footer-logo span {
  background: transparent;
  border: 0;
  box-shadow: none;
}

body:not(.admin-page) .footer-logo img {
  background: transparent;
  mix-blend-mode: screen;
}

body:not(.admin-page) .footer-logo:active {
  filter: brightness(1.14);
  transform: scale(0.982);
}

body:not(.admin-page) .footer-logo:focus-visible {
  outline: 2px solid rgba(96, 165, 250, 0.9);
  outline-offset: 6px;
}

body:not(.admin-page) .footer-links a,
body:not(.admin-page) .footer-copy,
body:not(.admin-page) .footer-reprint,
body:not(.admin-page) .footer-logo small {
  color: #64748b;
}

body:not(.admin-page) .footer-chip-row span,
body:not(.admin-page) .footer-social-grid a {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.08);
  color: #94a3b8;
}

body:not(.admin-page) .footer-social-grid a:hover {
  background: rgba(37, 99, 235, 0.12);
  border-color: rgba(96, 165, 250, 0.34);
  color: #bfdbfe;
  transform: translateY(-3px);
}

@keyframes novaFrequency {
  0% {
    opacity: 0.16;
    transform: translateX(-52%) skewX(-6deg) scaleX(0.76);
  }
  55% {
    opacity: 0.46;
    transform: translateX(-48%) skewX(2deg) scaleX(1.12);
  }
  100% {
    opacity: 0.24;
    transform: translateX(-50%) skewX(7deg) scaleX(0.9);
  }
}

@keyframes novaBeamBreathe {
  0%, 100% {
    opacity: 0.42;
    transform: perspective(800px) rotateY(-12deg) scaleX(0.86);
  }
  50% {
    opacity: 0.84;
    transform: perspective(800px) rotateY(-4deg) scaleX(1.12);
  }
}

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

@media (max-width: 1100px) {
  body:not(.admin-page) .site-header {
    padding-left: 20px;
    padding-right: 20px;
  }

  body:not(.admin-page) .brand small {
    display: none;
  }

  body:not(.admin-page) .brand {
    min-width: auto;
  }

  body:not(.admin-page) .main-nav a {
    font-size: 12px;
    padding-left: 8px;
    padding-right: 8px;
  }
}

@media (max-width: 980px) {
  body:not(.admin-page) .hero-grid {
    gap: 34px;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.72fr);
  }

  body:not(.admin-page) .hero h1,
  body:not(.admin-page) .immersive-hero h1 {
    font-size: clamp(34px, 6vw, 50px);
  }

  body:not(.admin-page) .hero-feature-card.visual-only {
    transform: none;
  }

  body:not(.admin-page) .featured-layout,
  body:not(.admin-page) .composer-layout,
  body:not(.admin-page) .split-section,
  body:not(.admin-page) .article-detail-layout,
  body:not(.admin-page) .album-detail-body {
    grid-template-columns: 1fr;
  }

  body:not(.admin-page) .article-detail-side {
    position: static;
  }
}

@media (max-width: 760px) {
  body:not(.admin-page) .site-header {
    align-items: center;
    display: grid;
    gap: 9px 8px;
    grid-template-columns: minmax(0, 1fr) auto auto auto;
    padding: 10px 14px;
  }

  body:not(.admin-page) .brand {
    grid-column: 1;
    min-width: 0;
  }

  body:not(.admin-page) .brand strong {
    font-size: 15px;
  }

  body:not(.admin-page) .main-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    margin: 0;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
    white-space: nowrap;
  }

  body:not(.admin-page) .main-nav::-webkit-scrollbar {
    display: none;
  }

  body:not(.admin-page) .main-nav a {
    flex: 0 0 auto;
  }

  body:not(.admin-page) .site-search-slot,
  body:not(.admin-page) .public-auth-slot,
  body:not(.admin-page) .locale-switcher {
    grid-row: 1;
  }

  body:not(.admin-page) .site-search-button,
  body:not(.admin-page) .public-auth-button {
    height: 36px;
    min-height: 36px;
    min-width: 36px;
    padding: 8px 10px;
  }

  body:not(.admin-page) .site-search-button {
    font-size: 0;
  }

  body:not(.admin-page) .site-search-button span {
    font-size: 18px;
  }

  body:not(.admin-page) .locale-switcher {
    gap: 2px;
  }

  body:not(.admin-page) .locale-switcher a {
    font-size: 10px;
    min-height: 32px;
    min-width: 30px;
    padding: 0 6px;
  }

  body:not(.admin-page) .immersive-hero {
    min-height: auto;
  }

  body:not(.admin-page) .hero-grid {
    grid-template-columns: 1fr;
    padding: 64px 18px 124px;
  }

  body:not(.admin-page) .hero-content {
    max-width: none;
  }

  body:not(.admin-page) .hero h1,
  body:not(.admin-page) .immersive-hero h1 {
    font-size: clamp(32px, 8.8vw, 43px);
    line-height: 1.08;
  }

  body:not(.admin-page) .hero-feature-card.visual-only {
    justify-self: center;
    max-width: 390px;
    width: 100%;
  }

  body:not(.admin-page) .immersive-hero .hero-digest {
    gap: 7px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body:not(.admin-page) .immersive-hero .hero-digest a {
    min-height: 52px;
    padding: 10px 12px;
  }

  body:not(.admin-page) .strategy-grid,
  body:not(.admin-page) .card-grid,
  body:not(.admin-page) .composer-page-grid,
  body:not(.admin-page) .award-categories,
  body:not(.admin-page) .award-timeline {
    grid-template-columns: 1fr;
  }

  body:not(.admin-page) .featured-layout {
    grid-template-columns: 1fr;
  }

  body:not(.admin-page) .lead-story {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  body:not(.admin-page) .lead-story .album-cover.large {
    max-width: 320px;
  }

  body:not(.admin-page) .section,
  body:not(.admin-page) .strategy-band {
    padding-left: 18px;
    padding-right: 18px;
  }

  body:not(.admin-page) .signal-strip {
    margin-left: -18px;
    margin-right: -18px;
  }

  body:not(.admin-page) .section-head {
    align-items: flex-start;
    display: grid;
    gap: 7px;
  }

  body:not(.admin-page) .page-hero,
  body:not(.admin-page) .page-awards-hero,
  body:not(.admin-page) .album-detail-hero,
  body:not(.admin-page) .article-detail-hero {
    padding-left: 18px;
    padding-right: 18px;
  }

  body:not(.admin-page) .album-detail-hero,
  body:not(.admin-page) .article-detail-hero {
    grid-template-columns: 1fr;
  }

  body:not(.admin-page) .album-detail-hero h1,
  body:not(.admin-page) .article-detail-hero h1,
  body:not(.admin-page) .page-hero h1,
  body:not(.admin-page) .page-awards-hero h1 {
    font-size: clamp(32px, 9vw, 48px);
  }

  body:not(.admin-page) .site-footer {
    border-radius: 14px 14px 0 0;
    margin-left: 12px;
    margin-right: 12px;
  }
}

@media (max-width: 420px) {
  body:not(.admin-page) .site-header {
    grid-template-columns: minmax(0, 1fr) auto auto auto;
  }

  body:not(.admin-page) .brand-mark {
    height: 36px;
    width: 36px;
  }

  body:not(.admin-page) .brand strong {
    font-size: 14px;
  }

  body:not(.admin-page) .locale-switcher {
    grid-column: 2;
  }

  body:not(.admin-page) .site-search-slot {
    grid-column: 3;
  }

  body:not(.admin-page) .public-auth-slot {
    grid-column: 4;
    grid-row: 1;
  }

  body:not(.admin-page) .main-nav {
    grid-row: 2;
  }

  body:not(.admin-page) .public-auth-button {
    font-size: 11px;
    padding-left: 10px;
    padding-right: 10px;
  }

  body:not(.admin-page) .immersive-hero > img {
    transform: none;
  }

  body:not(.admin-page) .story-card {
    grid-template-columns: 84px minmax(0, 1fr);
  }

  body:not(.admin-page) .story-card .album-cover {
    width: 84px;
  }
}

@media (prefers-reduced-motion: reduce) {
  body:not(.admin-page) .hero-aurora::before,
  body:not(.admin-page) .hero-aurora span,
  body:not(.admin-page) .hero-feature-card.visual-only::before {
    animation: none !important;
  }
}

/* NovaPulse v4 homepage alignment fixes. */
body:not(.admin-page) .hero-content,
body:not(.admin-page) .hero-feature-card,
body:not(.admin-page) .strategy-grid article,
body:not(.admin-page) .section-head,
body:not(.admin-page) .featured-layout,
body:not(.admin-page) .card-grid,
body:not(.admin-page) .composer-layout,
body:not(.admin-page) .split-section,
body:not(.admin-page) .awards-shell,
body:not(.admin-page) .album-page-grid,
body:not(.admin-page) .feature-list,
body:not(.admin-page) .review-page-list,
body:not(.admin-page) .composer-page-grid,
body:not(.admin-page) .award-timeline,
body:not(.admin-page) .nominee-board,
body:not(.admin-page) .podcast-home {
  animation-fill-mode: none;
}

body:not(.admin-page) .signal-track {
  animation-duration: 34s;
}

/* Homepage awards stay in preview mode until the voting season begins. */
body:not(.admin-page) .awards-preview-shell {
  align-items: stretch;
  gap: clamp(22px, 4vw, 54px);
  grid-template-columns: minmax(260px, 0.78fr) minmax(420px, 1.22fr);
}

body:not(.admin-page) .awards-preview-copy {
  align-self: center;
  max-width: 470px;
}

body:not(.admin-page) .awards-preview-copy h3 {
  font-size: clamp(34px, 4.5vw, 60px);
  line-height: 1.04;
  margin-bottom: 14px;
}

body:not(.admin-page) .award-season-timeline {
  background:
    linear-gradient(145deg, rgba(15, 23, 42, 0.7), rgba(2, 6, 23, 0.9)),
    radial-gradient(circle at 82% 10%, rgba(96, 165, 250, 0.16), transparent 42%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  box-shadow: 0 22px 62px rgba(0, 0, 0, 0.28);
  overflow: hidden;
  padding: 24px 26px;
}

body:not(.admin-page) .award-preview-status {
  align-items: end;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  gap: 8px 16px;
  grid-template-columns: auto 1fr;
  padding-bottom: 18px;
}

body:not(.admin-page) .award-preview-status span,
body:not(.admin-page) .award-timeline-step > span {
  color: #60a5fa;
  font-family: "Space Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
}

body:not(.admin-page) .award-preview-status strong {
  color: #f8fafc;
  font-family: "Space Mono", monospace;
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 500;
  line-height: 1;
}

body:not(.admin-page) .award-preview-status p {
  grid-column: 1 / -1;
  margin: 0;
}

body:not(.admin-page) .award-preview-steps {
  display: grid;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 4px 0 0;
}

body:not(.admin-page) .award-timeline-step {
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  display: grid;
  gap: 18px;
  grid-template-columns: 26px 1fr;
  min-height: 54px;
}

body:not(.admin-page) .award-timeline-step:last-child {
  border-bottom: 0;
}

body:not(.admin-page) .award-timeline-step > div {
  align-items: baseline;
  display: flex;
  gap: 16px;
  justify-content: space-between;
}

body:not(.admin-page) .award-timeline-step strong {
  color: #e2e8f0;
  font-size: 14px;
  font-weight: 600;
}

body:not(.admin-page) .award-timeline-step small {
  color: #64748b;
  font-family: "Space Mono", monospace;
  font-size: 10px;
  white-space: nowrap;
}

body:not(.admin-page) .award-timeline-step.is-current > span,
body:not(.admin-page) .award-timeline-step.is-current strong {
  color: #93c5fd;
}

@media (max-width: 760px) {
  body:not(.admin-page) .awards-preview-shell {
    grid-template-columns: 1fr;
  }

  body:not(.admin-page) .award-season-timeline {
    padding: 20px;
  }

  body:not(.admin-page) .award-timeline-step > div {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
    padding: 11px 0;
  }
}

body:not(.admin-page) .signal-group span {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
}

body:not(.admin-page) #reviews.split-section {
  align-items: start;
  gap: 28px;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1.58fr);
  margin-left: 0;
  margin-right: 0;
  max-width: none;
  padding-left: max(24px, calc((100vw - 1180px) / 2));
  padding-right: max(24px, calc((100vw - 1180px) / 2));
  width: 100%;
}

body:not(.admin-page) #reviews .review-stack {
  align-items: stretch;
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body:not(.admin-page) #reviews .review-card {
  align-content: start;
  gap: 14px;
  grid-template-columns: 70px minmax(0, 1fr);
  height: 100%;
  min-height: 250px;
  padding: 22px;
}

body:not(.admin-page) #reviews .review-card .score {
  border-radius: 12px;
  font-size: 23px;
  height: 70px;
  min-width: 70px;
  overflow: hidden;
  white-space: nowrap;
  width: 70px;
}

body:not(.admin-page) #reviews .review-card h3 {
  color: #e2e8f0;
  font-size: 18px;
  line-height: 1.45;
  margin: 8px 0 10px;
}

body:not(.admin-page) #reviews .review-card p {
  display: -webkit-box;
  font-size: 14px;
  line-height: 1.7;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

body:not(.admin-page) #reviews .review-card .text-link {
  display: inline-flex;
  margin-top: 6px;
}

body:not(.admin-page) .site-footer {
  border-left: 0;
  border-radius: 0;
  border-right: 0;
  gap: clamp(38px, 7vw, 96px);
  grid-template-columns: minmax(0, 1fr) minmax(250px, 0.42fr);
  margin: 48px 0 0;
  max-width: none;
  padding-left: max(24px, calc((100vw - 1180px) / 2));
  padding-right: max(24px, calc((100vw - 1180px) / 2));
  width: 100%;
}

body:not(.admin-page) .site-footer::after {
  height: clamp(220px, 24vw, 350px);
  opacity: 0.38;
  right: max(24px, calc((100vw - 1180px) / 2));
}

body:not(.admin-page) .footer-brand-block {
  gap: 22px;
}

body:not(.admin-page) .footer-logo img {
  border-radius: 14px;
  height: 88px;
  width: 88px;
}

body:not(.admin-page) .footer-logo strong {
  font-size: clamp(28px, 3vw, 40px);
}

body:not(.admin-page) .footer-social-block {
  justify-self: end;
  width: min(100%, 300px);
}

body:not(.admin-page) .footer-social-grid {
  grid-template-columns: repeat(2, minmax(116px, 1fr));
}

body:not(.admin-page) .footer-social-grid a {
  gap: 9px;
  justify-content: flex-start;
  min-height: 56px;
  padding: 0 14px;
}

body:not(.admin-page) .footer-social-grid a::after {
  color: #94a3b8;
  content: attr(title);
  font-family: "DM Sans", "PingFang SC", sans-serif;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.25;
}

body:not(.admin-page) .footer-social-grid span {
  color: #60a5fa;
  flex: 0 0 auto;
  font-size: 18px;
}

/* Homepage ocean and galaxy pass: calm depth, low visual noise. */
body:not(.admin-page) .immersive-hero {
  background:
    radial-gradient(ellipse at 74% 8%, rgba(37, 99, 235, 0.14), transparent 34%),
    linear-gradient(180deg, #01030a 0%, #020712 48%, #03172a 100%);
  isolation: isolate;
  overflow: hidden;
}

body:not(.admin-page) .immersive-hero > img {
  filter: saturate(0.45) contrast(1.14) brightness(0.25);
  opacity: 0.22;
}

body:not(.admin-page) .immersive-hero .hero-overlay {
  background:
    linear-gradient(90deg, rgba(0, 2, 8, 0.96) 0%, rgba(1, 5, 14, 0.84) 40%, rgba(2, 8, 19, 0.5) 69%, rgba(0, 2, 8, 0.72) 100%),
    linear-gradient(180deg, rgba(0, 2, 8, 0.08), rgba(0, 7, 17, 0.68) 72%, rgba(0, 11, 27, 0.9));
}

body:not(.admin-page) .hero-aurora,
body:not(.admin-page) .cosmos-wave {
  display: none;
}

body:not(.admin-page) .hero-ocean,
body:not(.admin-page) .hero-galaxy {
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

body:not(.admin-page) .hero-ocean {
  background:
    linear-gradient(180deg, transparent, rgba(3, 32, 58, 0.4) 35%, rgba(0, 17, 35, 0.92)),
    radial-gradient(ellipse at 50% 114%, rgba(34, 211, 238, 0.14) 0 1%, transparent 1.3%);
  bottom: -10%;
  height: 48%;
  left: -8%;
  mask-image: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.38) 22%, #000 58%);
  overflow: hidden;
  right: -8%;
}

body:not(.admin-page) .hero-ocean::before,
body:not(.admin-page) .hero-ocean::after {
  content: "";
  inset: -14% -10%;
  position: absolute;
}

body:not(.admin-page) .hero-ocean::before {
  animation: ludamusea-ocean-flow 26s linear infinite;
  background:
    repeating-radial-gradient(ellipse at 48% 112%, transparent 0 7.5%, rgba(103, 232, 249, 0.17) 7.8% 8.15%, transparent 8.45% 14%),
    repeating-radial-gradient(ellipse at 54% 120%, transparent 0 12%, rgba(59, 130, 246, 0.18) 12.2% 12.5%, transparent 12.8% 20%);
  background-size: 124% 100%, 154% 126%;
  filter: blur(0.2px);
}

body:not(.admin-page) .hero-ocean::after {
  animation: ludamusea-ocean-swell 15s ease-in-out infinite alternate;
  background:
    linear-gradient(174deg, transparent 0 46%, rgba(125, 211, 252, 0.1) 48%, transparent 50%),
    linear-gradient(168deg, transparent 0 56%, rgba(45, 212, 191, 0.08) 58%, transparent 60%);
  mix-blend-mode: screen;
  opacity: 0.76;
}

body:not(.admin-page) .hero-galaxy {
  height: min(62vw, 720px);
  right: -16vw;
  top: -18%;
  width: min(62vw, 720px);
}

body:not(.admin-page) .hero-galaxy::before,
body:not(.admin-page) .hero-galaxy::after {
  border-radius: 50%;
  content: "";
  inset: 0;
  position: absolute;
}

body:not(.admin-page) .hero-galaxy::before {
  animation: ludamusea-galaxy-rotate 84s linear infinite;
  background:
    radial-gradient(circle at 38% 42%, rgba(224, 242, 254, 0.8) 0 1px, transparent 1.8px),
    radial-gradient(circle at 63% 27%, rgba(125, 211, 252, 0.62) 0 1px, transparent 1.6px),
    radial-gradient(circle at 69% 66%, rgba(167, 243, 208, 0.48) 0 1px, transparent 1.6px),
    repeating-conic-gradient(from 16deg, transparent 0 7deg, rgba(96, 165, 250, 0.13) 7.4deg 8deg, transparent 8.6deg 18deg),
    radial-gradient(ellipse at center, rgba(147, 197, 253, 0.2) 0 2%, transparent 3% 19%, rgba(59, 130, 246, 0.1) 20% 20.6%, transparent 21.4% 42%, rgba(34, 211, 238, 0.08) 43% 43.5%, transparent 44%);
  filter: blur(0.15px);
  mask-image: radial-gradient(circle, transparent 0 10%, #000 20% 68%, transparent 75%);
  opacity: 0.72;
}

body:not(.admin-page) .hero-galaxy::after {
  animation: ludamusea-galaxy-rotate 126s linear infinite reverse;
  border: 1px solid rgba(125, 211, 252, 0.14);
  box-shadow: inset 0 0 42px rgba(37, 99, 235, 0.12), 0 0 80px rgba(14, 165, 233, 0.08);
  inset: 13%;
  opacity: 0.7;
}

body:not(.admin-page) .hero-orbit,
body:not(.admin-page) .hero-staff {
  opacity: 0;
}

body:not(.admin-page) .cosmos-note,
body:not(.admin-page) .cosmos-game {
  opacity: 0;
}

body:not(.admin-page) .hero-feature-card.visual-only {
  overflow: hidden;
}

body:not(.admin-page) .hero-feature-card.visual-only .hero-feature-cover {
  background: #020617;
  filter: saturate(0.94) contrast(1.03) brightness(0.96);
  height: 100%;
  object-fit: contain;
  transform: none;
  width: 100%;
}

body:not(.admin-page) .hero-feature-card.visual-only:hover .hero-feature-cover {
  filter: saturate(1.02) contrast(1.04) brightness(1);
  transform: none;
}

body:not(.admin-page) .hero-feature-card.visual-only::after {
  background: linear-gradient(180deg, transparent 68%, rgba(2, 6, 23, 0.42));
  pointer-events: none;
}

body:not(.admin-page) .lead-story .story-copy h3 a {
  color: inherit;
  text-decoration: none;
}

body:not(.admin-page) .lead-story .story-copy h3 a:hover {
  color: #93c5fd;
  text-decoration: underline;
  text-decoration-color: rgba(96, 165, 250, 0.48);
  text-underline-offset: 0.18em;
}

@keyframes ludamusea-ocean-flow {
  from { background-position: 0 0, 0 0; transform: translate3d(-2%, 0, 0) scale(1.02); }
  to { background-position: 180px 0, -240px 24px; transform: translate3d(2%, -1%, 0) scale(1.05); }
}

@keyframes ludamusea-ocean-swell {
  from { transform: translate3d(-2%, 1%, 0) skewX(-2deg); }
  to { transform: translate3d(2%, -2%, 0) skewX(2deg); }
}

@keyframes ludamusea-galaxy-rotate {
  to { transform: rotate(360deg); }
}

@media (max-width: 760px) {
  body:not(.admin-page) .hero-ocean {
    bottom: -7%;
    height: 34%;
  }

  body:not(.admin-page) .hero-galaxy {
    height: 92vw;
    opacity: 0.64;
    right: -28vw;
    top: 6%;
    width: 92vw;
  }
}

@media (prefers-reduced-motion: reduce) {
  body:not(.admin-page) .hero-ocean::before,
  body:not(.admin-page) .hero-ocean::after,
  body:not(.admin-page) .hero-galaxy::before,
  body:not(.admin-page) .hero-galaxy::after {
    animation: none;
  }
}

@media (max-width: 980px) {
  body:not(.admin-page) #reviews.split-section,
  body:not(.admin-page) .site-footer {
    grid-template-columns: 1fr;
  }

  body:not(.admin-page) .footer-social-block {
    justify-self: start;
  }
}

@media (max-width: 640px) {
  body:not(.admin-page) .signal-track {
    animation-duration: 38s;
  }

  body:not(.admin-page) .signal-group span {
    font-size: 11px;
  }

  body:not(.admin-page) #reviews .review-stack {
    grid-template-columns: 1fr;
  }

  body:not(.admin-page) #reviews.split-section {
    padding-left: 18px;
    padding-right: 18px;
  }

  body:not(.admin-page) #reviews .review-card {
    min-height: 0;
  }

  body:not(.admin-page) .site-footer {
    border-radius: 0;
    margin-left: 0;
    margin-right: 0;
    padding-left: 18px;
    padding-right: 18px;
  }

  body:not(.admin-page) .footer-social-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
