:root {
  --bg: #1A1A1A;
  --bg-deep: #0D0D0D;
  --bg-blue: #2C3E50;
  --panel: #1E1E1E;
  --primary: #E67E22;
  --yellow: #F1C40F;
  --teal: #1ABC9C;
  --magenta: #E91E63;
  --violet: #9B59B6;
  --live: #2ECC71;
  --archive: #95A5A6;
  --white: #F5F5F5;
  --muted: #BDC3C7;
  --line: rgba(255, 255, 255, 0.15);
  --font-head: 'Noto Sans SC Black', 'Impact', 'Microsoft YaHei', sans-serif;
  --font-body: 'Noto Sans SC', 'Microsoft YaHei', sans-serif;
  --font-num: 'DIN Alternate', 'Roboto Mono', monospace;
  --header-w: 280px;
  --header-mobile-h: 68px;
}

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

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

body, h1, h2, h3, h4, p, ul, ol, dl, dd, figure, blockquote {
  margin: 0;
}

body {
  min-width: 320px;
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.2px;
}

ul[class], ol[class] {
  list-style: none;
  padding: 0;
}

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

button {
  font: inherit;
}

a {
  color: var(--violet);
  text-decoration-thickness: 1px;
}

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

:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 2px;
}

#main-content {
  outline: none;
}

@media (min-width: 801px) {
  body {
    margin-left: var(--header-w);
  }
}

@media (max-width: 800px) {
  body {
    margin-left: 0;
    padding-top: 0;
  }
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 2000;
  padding: 8px 14px;
  background: var(--yellow);
  color: #111;
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-200%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 4px;
  z-index: 3000;
  background: linear-gradient(90deg, var(--primary), var(--magenta), var(--violet));
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: var(--header-w);
  z-index: 1000;
  background: var(--bg-deep);
  border-right: 1px solid var(--line);
  display: flex;
}

.site-header::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(180deg, var(--primary), var(--magenta), var(--teal));
}

.header-inner {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.brand-lockup {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 24px 18px 18px;
  color: var(--white);
  text-decoration: none;
}

.brand-lockup:hover .brand-name {
  color: var(--yellow);
}

.brand-mark {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--primary), var(--magenta));
  color: #111;
  flex: 0 0 auto;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}

.brand-mark-line {
  position: absolute;
  left: 10px;
  right: 10px;
  top: 10px;
  height: 2px;
  background: rgba(0, 0, 0, 0.3);
}

.brand-mark-text {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 900;
}

.brand-text {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.brand-name {
  font-family: var(--font-head);
  font-size: 22px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 0 12px currentColor;
}

.brand-sub {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.2;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  margin-right: 12px;
  border: 1px solid var(--line);
  background: transparent;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.nav-toggle-line {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--white);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.nav-panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding-top: 16px;
}

.nav-track-header {
  display: flex;
  justify-content: space-between;
  padding: 0 22px 10px;
  font-family: var(--font-num);
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  margin: 0 14px 8px;
}

.nav-track-label {
  font-weight: 700;
  color: var(--primary);
}

.nav-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.nav-item {
  margin: 2px 10px;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  color: var(--white);
  text-decoration: none;
  border-left: 4px solid transparent;
  background: rgba(255, 255, 255, 0.02);
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.nav-link:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  border-left-color: var(--teal);
}

.nav-link[aria-current="page"] {
  background: var(--primary);
  color: #111;
  border-left-color: #111;
}

.nav-id {
  font-family: var(--font-num);
  font-size: 12px;
  opacity: 0.7;
  min-width: 20px;
}

.nav-caption {
  font-weight: 700;
  letter-spacing: 1px;
}

.nav-footer {
  margin-top: auto;
  padding: 20px 22px 28px;
  display: grid;
  gap: 18px;
}

.nav-search {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  color: var(--yellow);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  text-decoration: none;
  font-weight: 700;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.nav-search:hover {
  border-color: var(--yellow);
  color: var(--yellow);
  background: rgba(241, 196, 15, 0.1);
}

.nav-search-icon {
  position: relative;
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid currentColor;
  border-radius: 50%;
  flex: 0 0 auto;
}

.nav-search-icon::after {
  content: '';
  position: absolute;
  width: 2px;
  height: 7px;
  background: currentColor;
  bottom: -4px;
  right: -4px;
  transform: rotate(-45deg);
}

.header-live {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-left: 4px solid var(--live);
  background: rgba(46, 204, 113, 0.08);
  color: var(--live);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--live);
  box-shadow: 0 0 10px var(--live);
  animation: pulse 2s infinite;
}

.live-label {
  line-height: 1;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.6);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(46, 204, 113, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(46, 204, 113, 0);
  }
}

@media (max-width: 800px) {
  .site-header {
    position: sticky;
    top: 0;
    bottom: auto;
    width: 100%;
    border-right: none;
    border-bottom: 1px solid var(--line);
    display: block;
  }

  .site-header::before {
    width: 100%;
    height: 4px;
    top: auto;
    bottom: -4px;
    right: auto;
    left: 0;
  }

  .header-inner {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }

  .brand-lockup {
    padding: 10px 14px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .brand-name {
    font-size: 18px;
  }

  .brand-sub {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-panel {
    display: none;
    width: 100%;
    border-top: 1px solid var(--line);
    padding: 8px 0 14px;
  }

  .nav-panel[data-open] {
    display: flex;
  }

  .nav-track-header {
    display: none;
  }

  .nav-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    padding: 8px 10px;
  }

  .nav-link {
    border-left: none;
    border-bottom: 2px solid transparent;
    background: transparent;
    padding: 10px 8px;
  }

  .nav-link:hover {
    border-left: none;
    border-bottom-color: var(--teal);
  }

  .nav-link[aria-current="page"] {
    background: transparent;
    color: var(--primary);
    border-bottom-color: var(--primary);
  }

  .nav-footer {
    margin-top: 0;
    padding: 10px 14px 0;
  }
}

.site-footer {
  background: var(--bg-deep);
  border-top: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

.footer-visual {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 72px;
}

.footer-visual-chip {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 8px 10px;
  font-family: var(--font-num);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1px;
}

.footer-visual-chip--primary {
  background: var(--primary);
  color: #111;
}

.footer-visual-chip--yellow {
  background: var(--yellow);
  color: #111;
}

.footer-visual-chip--teal {
  background: var(--teal);
  color: #111;
}

.footer-visual-chip--magenta {
  background: var(--magenta);
  color: #fff;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 32px;
  padding: 40px clamp(16px, 4vw, 48px) 24px;
  max-width: 1440px;
  margin: 0 auto;
}

.footer-brand {
  min-width: 0;
}

.footer-brand-lockup {
  padding: 0;
}

.footer-nav .footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--yellow);
}

.footer-contact {
  min-width: 0;
}

.footer-title {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
  margin-bottom: 12px;
}

.footer-contact-list {
  display: grid;
  gap: 10px;
}

.footer-contact-list dt {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-contact-list dd {
  margin: 0;
  color: var(--white);
  font-size: 14px;
  line-height: 1.5;
}

.footer-meta {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid var(--line);
  padding-top: 20px;
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
}

@media (max-width: 800px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-top: 24px;
  }

  .footer-visual {
    height: 40px;
  }

  .footer-meta {
    grid-column: 1;
  }
}

.container {
  width: 100%;
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 56px);
}

.section {
  padding-block: clamp(32px, 6vw, 80px);
}

.section--blue {
  background: var(--bg-blue);
  color: var(--white);
}

.section--deep {
  background: var(--bg-deep);
}

.section--charcoal {
  background: var(--bg);
}

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

.section-kicker {
  font-family: var(--font-num);
  font-size: 12px;
  letter-spacing: 3px;
  color: var(--primary);
  text-transform: uppercase;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  line-height: 1.1;
  text-shadow: 0 0 12px currentColor;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  min-height: 42px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn:hover {
  border-color: var(--primary);
  color: var(--white);
}

.btn-primary {
  background: var(--primary);
  border-color: var(--primary);
  color: #111;
}

.btn-primary:hover {
  background: var(--yellow);
  border-color: var(--yellow);
  color: #111;
}

.btn-ghost {
  background: transparent;
}

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

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 18px 0;
  font-size: 13px;
}

.breadcrumb a {
  color: var(--muted);
  text-decoration: none;
}

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

.crumb + .crumb::before {
  content: '/';
  margin-right: 8px;
  color: var(--muted);
}

.crumb-current {
  color: var(--primary);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}

.content-card {
  position: relative;
  min-height: 160px;
  padding: 18px;
  background: var(--panel);
  border: 1px solid var(--line);
  color: var(--white);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.content-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: 8px 8px 0 rgba(230, 126, 34, 0.2);
}

.card-title {
  font-family: var(--font-head);
  font-size: 20px;
  line-height: 1.2;
  margin-bottom: 8px;
  color: var(--white);
}

.card-meta {
  margin-top: auto;
  color: var(--muted);
  font-size: 13px;
}

.tile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
}

.tile {
  position: relative;
  min-height: 120px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--bg-blue);
  color: var(--white);
  text-decoration: none;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tile:hover {
  transform: translateY(-3px) rotate(-1deg);
  box-shadow: 0 0 24px currentColor;
  z-index: 2;
}

.tile--orange {
  background: var(--primary);
  color: #111;
}

.tile--yellow {
  background: var(--yellow);
  color: #111;
}

.tile--teal {
  background: var(--teal);
  color: #062;
}

.tile--magenta {
  background: var(--magenta);
  color: #fff;
}

.tile--violet {
  background: var(--violet);
  color: #fff;
}

.tile--blue {
  background: var(--bg-blue);
  color: var(--white);
}

.tile-label {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
}

.tile-count {
  font-family: var(--font-num);
  font-size: 32px;
  font-weight: 900;
  line-height: 1;
  opacity: 0.9;
}

.entry-list {
  display: grid;
}

.entry-row {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 14px 4px;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  color: var(--white);
  transition: background 0.2s ease, padding-left 0.2s ease;
}

.entry-row:hover {
  background: rgba(255, 255, 255, 0.04);
  padding-left: 12px;
}

.entry-rank {
  font-family: var(--font-num);
  font-size: 22px;
  font-weight: 900;
  color: var(--primary);
}

.entry-main {
  min-width: 0;
  display: grid;
  gap: 4px;
}

.entry-title {
  font-weight: 700;
  color: var(--white);
}

.entry-meta {
  color: var(--muted);
  font-size: 13px;
}

.entry-time {
  font-family: var(--font-num);
  font-size: 13px;
  color: var(--teal);
  white-space: nowrap;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.filter-current {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: var(--violet);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
}

.filter-current::before {
  content: '·';
  color: var(--yellow);
  font-size: 20px;
  line-height: 1;
}

.tag-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12px;
  color: var(--muted);
  text-decoration: none;
}

.tag--orange {
  background: rgba(230, 126, 34, 0.18);
  border-color: rgba(230, 126, 34, 0.4);
  color: #f5cba7;
}

.tag--yellow {
  background: rgba(241, 196, 15, 0.16);
  border-color: rgba(241, 196, 15, 0.4);
  color: #f9e79f;
}

.tag--teal {
  background: rgba(26, 188, 156, 0.16);
  border-color: rgba(26, 188, 156, 0.4);
  color: #a3e4d7;
}

.tag--magenta {
  background: rgba(233, 30, 99, 0.16);
  border-color: rgba(233, 30, 99, 0.4);
  color: #f5b7b1;
}

.tag--violet {
  background: rgba(155, 89, 182, 0.16);
  border-color: rgba(155, 89, 182, 0.4);
  color: #d7bde2;
}

.tag--grey {
  background: rgba(149, 165, 166, 0.16);
  border-color: rgba(149, 165, 166, 0.4);
  color: #bdc3c7;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 8px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: var(--bg-blue);
  color: var(--white);
  border-radius: 2px;
}

.badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

.badge--live {
  background: var(--live);
  color: #062;
}

.badge--new {
  background: var(--magenta);
  color: #fff;
}

.badge--archive {
  background: var(--archive);
  color: #111;
}

.badge--done {
  background: var(--bg-blue);
  color: var(--muted);
}

.rank {
  font-family: var(--font-num);
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
  color: var(--muted);
}

.rank--top {
  color: var(--primary);
}

.rank--top::after {
  content: '';
  display: block;
  width: 22px;
  height: 3px;
  background: var(--primary);
  margin-top: 4px;
}

.metric {
  height: 8px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  overflow: hidden;
}

.metric-bar {
  display: block;
  height: 100%;
  width: 50%;
  background: var(--primary);
}

.metric-bar--teal {
  background: var(--teal);
}

.metric-bar--magenta {
  background: var(--magenta);
}

.metric-bar--yellow {
  background: var(--yellow);
}

.metric-bar--violet {
  background: var(--violet);
}

.metric-bar--live {
  background: var(--live);
}

.index-bar {
  display: flex;
  height: 6px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.index-bar span {
  display: block;
  height: 100%;
  background: var(--primary);
}

.index-bar span:nth-child(2) {
  background: var(--yellow);
}

.index-bar span:nth-child(3) {
  background: var(--teal);
}

.index-bar span:nth-child(4) {
  background: var(--magenta);
}

.scroll-track {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 4px 4px 16px;
}

.track-stop {
  flex: 0 0 240px;
  min-height: 120px;
  padding: 16px;
  background: var(--panel);
  border: 1px solid var(--line);
  scroll-snap-align: start;
}

.track-stop--live {
  border-left: 4px solid var(--live);
}

.track-stop--offline {
  border-left: 4px solid var(--archive);
}

.schedule-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.schedule-table th,
.schedule-table td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.schedule-table thead th {
  background: var(--bg-blue);
  color: var(--white);
  font-weight: 900;
  letter-spacing: 0.5px;
}

.schedule-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.03);
}

.schedule-day {
  font-family: var(--font-num);
  color: var(--yellow);
  font-weight: 700;
}

.schedule-cell {
  display: flex;
  align-items: center;
  gap: 8px;
}

@media (max-width: 600px) {
  .schedule-table {
    display: block;
    overflow-x: auto;
  }
}

.shelf {
  display: grid;
  gap: 14px;
}

.shelf-row {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 10px;
  padding: 14px;
  background: linear-gradient(180deg, rgba(44, 62, 80, 0.5), rgba(13, 13, 13, 0.6));
  border: 1px solid var(--line);
}

.volume-card {
  position: relative;
  min-height: 140px;
  padding: 32px 12px 12px;
  background: var(--primary);
  color: #111;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.volume-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.volume-card::before {
  content: '';
  position: absolute;
  left: 8px;
  right: 8px;
  top: 8px;
  height: 4px;
  background: rgba(0, 0, 0, 0.35);
}

.volume-card--teal {
  background: var(--teal);
  color: #062;
}

.volume-card--yellow {
  background: var(--yellow);
  color: #111;
}

.volume-card--magenta {
  background: var(--magenta);
  color: #fff;
}

.volume-card--violet {
  background: var(--violet);
  color: #fff;
}

.volume-card--blue {
  background: var(--bg-blue);
  color: var(--white);
}

.volume-card--archive {
  background: var(--archive);
  color: #111;
}

.volume-spine {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.media-placeholder {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, var(--bg-blue), var(--bg-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.media-placeholder::after {
  content: 'PREVIEW';
  font-family: var(--font-num);
  letter-spacing: 2px;
  color: var(--primary);
  font-size: 12px;
}

.media-placeholder--wide {
  aspect-ratio: 21 / 9;
}

.media-placeholder--square {
  aspect-ratio: 1 / 1;
}

.cut-corner {
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
}

.page-hero {
  position: relative;
  padding-block: clamp(48px, 8vw, 96px);
  background: var(--bg-blue);
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 240px;
  height: 240px;
  background: var(--primary);
  opacity: 0.25;
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}

.hero-kicker {
  font-family: var(--font-num);
  color: var(--yellow);
  letter-spacing: 3px;
  font-size: 13px;
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 900;
  line-height: 0.95;
  text-shadow: 0 0 20px currentColor;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .live-dot {
    animation: none;
  }
}
