:root {
  --bg-0: #03060d;
  --bg-1: #07111d;
  --bg-2: #0d1828;
  --panel: rgba(10, 19, 31, 0.82);
  --panel-strong: rgba(9, 17, 28, 0.94);
  --panel-soft: rgba(15, 28, 43, 0.76);
  --line: rgba(98, 229, 255, 0.16);
  --line-strong: rgba(98, 229, 255, 0.38);
  --line-soft: rgba(255, 255, 255, 0.06);
  --text: #edf7ff;
  --muted: #96afc6;
  --accent: #64e9ff;
  --accent-2: #73ffc4;
  --accent-3: #ff9b63;
  --accent-4: #8a7dff;
  --danger: #ff5d7f;
  --shadow: 0 32px 80px rgba(0, 0, 0, 0.42);
  --radius-xl: 34px;
  --radius-lg: 28px;
  --radius-md: 22px;
  --radius-sm: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Avenir Next", "Trebuchet MS", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 50% -10%, rgba(100, 233, 255, 0.22), transparent 32%),
    radial-gradient(circle at 14% 18%, rgba(138, 125, 255, 0.14), transparent 20%),
    radial-gradient(circle at 86% 20%, rgba(255, 155, 99, 0.14), transparent 18%),
    linear-gradient(180deg, #07101b 0%, #040911 42%, #02050a 100%);
  background-attachment: fixed;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 88px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 88px),
    radial-gradient(circle at 50% 0%, rgba(100, 233, 255, 0.08), transparent 38%);
  opacity: 0.44;
}

body::after {
  content: "";
  position: fixed;
  inset: 18px;
  pointer-events: none;
  border-radius: 42px;
  border: 1px solid rgba(98, 229, 255, 0.08);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.02) inset,
    0 0 120px rgba(100, 233, 255, 0.04) inset;
}

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

button {
  cursor: pointer;
}

.page-shell {
  position: relative;
  width: min(1480px, calc(100% - 24px));
  margin: 16px auto 32px;
  padding: 22px;
  border-radius: 40px;
  background:
    linear-gradient(180deg, rgba(9, 17, 28, 0.82), rgba(4, 10, 18, 0.94)),
    radial-gradient(circle at 50% -10%, rgba(100, 233, 255, 0.08), transparent 30%);
  border: 1px solid rgba(98, 229, 255, 0.14);
  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.46),
    0 0 0 1px rgba(255, 255, 255, 0.03) inset;
  backdrop-filter: blur(24px);
  overflow: hidden;
}

.page-shell::before {
  content: "";
  position: absolute;
  inset: auto -12% 86% -12%;
  height: 200px;
  background: radial-gradient(circle, rgba(100, 233, 255, 0.14), transparent 62%);
  pointer-events: none;
}

.page-shell::after {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 32px;
  border: 1px solid rgba(98, 229, 255, 0.06);
  pointer-events: none;
}

.card,
.browser-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(12, 24, 38, 0.9), rgba(6, 12, 21, 0.94)),
    linear-gradient(135deg, rgba(100, 233, 255, 0.06), transparent 38%);
  border: 1px solid var(--line);
  box-shadow:
    var(--shadow),
    0 0 0 1px rgba(255, 255, 255, 0.03) inset;
  backdrop-filter: blur(18px);
}

.card::before,
.browser-frame::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: calc(var(--radius-lg) - 8px);
  border: 1px solid rgba(98, 229, 255, 0.08);
  pointer-events: none;
}

.card {
  padding: 20px;
}

.masthead {
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1.6fr) minmax(320px, 0.95fr);
  margin-bottom: 18px;
}

.eyebrow,
.mini-label,
.section-kicker span,
.url-label {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}

.status-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 8px;
  border-radius: 999px;
  background: var(--accent-2);
  box-shadow:
    0 0 16px rgba(115, 255, 196, 0.92),
    0 0 0 4px rgba(115, 255, 196, 0.12);
  animation: pulse 1.2s infinite alternate;
}

.masthead h1 {
  margin: 10px 0 12px;
  font-size: clamp(2.7rem, 5vw, 5.1rem);
  line-height: 0.94;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: "Avenir Next Condensed", "Trebuchet MS", sans-serif;
}

.masthead h1 span {
  display: block;
  margin-top: 8px;
  color: var(--accent);
  text-shadow: 0 0 24px rgba(100, 233, 255, 0.22);
}

.subtitle,
.section-note,
.mini-copy {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.ticker {
  margin-top: 16px;
  padding: 10px 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(11, 25, 40, 0.96), rgba(8, 16, 27, 0.96));
  border: 1px solid rgba(100, 233, 255, 0.14);
  color: #ddf7ff;
  box-shadow: 0 0 24px rgba(100, 233, 255, 0.08) inset;
}

.masthead-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.action-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(100, 233, 255, 0.24);
  color: var(--text);
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(9, 17, 28, 0.72);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.action-link:hover,
.action-link:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(115, 255, 196, 0.52);
  background: rgba(12, 25, 39, 0.92);
}

.action-link--primary {
  color: #041019;
  background: linear-gradient(135deg, rgba(100, 233, 255, 0.98), rgba(115, 255, 196, 0.94));
  border-color: transparent;
}

.masthead-stats {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: start;
}

.stat-chip {
  min-height: 96px;
  padding: 14px;
  border-radius: var(--radius-sm);
  background: linear-gradient(180deg, rgba(14, 30, 46, 0.82), rgba(10, 18, 29, 0.88));
  border: 1px solid rgba(98, 229, 255, 0.12);
  box-shadow: 0 0 22px rgba(100, 233, 255, 0.04) inset;
}

.stat-chip span,
.section-kicker p {
  display: block;
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.stat-chip strong {
  display: block;
  margin-top: 12px;
  font-size: 1.45rem;
  font-weight: 700;
}

.layout {
  display: grid;
  gap: 18px;
  grid-template-columns: 340px minmax(0, 1fr);
  grid-template-areas:
    "channel channel"
    "profile hero"
    "radio bulletin"
    "archive archive";
}

.profile-panel {
  grid-area: profile;
}

.browser-frame--hero {
  grid-area: hero;
}

.browser-frame--radio {
  grid-area: radio;
}

.bulletin {
  grid-area: bulletin;
}

.channel-section {
  grid-area: channel;
  display: grid;
  gap: 14px;
}

.archive-shell {
  grid-area: archive;
}

.profile-head {
  display: flex;
  gap: 14px;
  align-items: center;
}

.avatar-badge {
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  border-radius: 26px;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.22), transparent 38%),
    linear-gradient(135deg, rgba(100, 233, 255, 0.84), rgba(138, 125, 255, 0.88));
  color: #03111c;
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.28);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08) inset,
    0 18px 28px rgba(100, 233, 255, 0.12);
}

.profile-panel h2,
.bulletin h2,
.archive-shell h2 {
  margin: 4px 0 0;
}

.profile-facts {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
}

.profile-facts div {
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  background: linear-gradient(180deg, rgba(11, 21, 34, 0.88), rgba(8, 16, 26, 0.9));
  border: 1px solid rgba(98, 229, 255, 0.1);
}

.profile-facts dt {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
}

.profile-facts dd {
  margin: 6px 0 0;
  font-weight: 700;
  color: var(--text);
}

.top-eight {
  margin-top: 18px;
}

.top-eight-list {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display: grid;
  gap: 10px;
}

.top-eight-button,
.queue-button,
.archive-button,
.video-tune {
  width: 100%;
  border: 1px solid var(--line);
  color: inherit;
  text-align: left;
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease;
}

.top-eight-button {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(14, 31, 47, 0.84), rgba(8, 15, 24, 0.88));
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

.top-eight-button strong,
.queue-copy strong,
.archive-copy strong,
.video-copy h3 {
  display: block;
  margin: 0;
  font-size: 0.98rem;
  font-weight: 700;
}

.rank-pill {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(100, 233, 255, 0.88), rgba(115, 255, 196, 0.88));
  color: #04111c;
  font-weight: 900;
  box-shadow: 0 10px 20px rgba(100, 233, 255, 0.12);
}

.card:hover,
.browser-frame:hover {
  border-color: rgba(98, 229, 255, 0.2);
}

.browser-chrome {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  color: var(--accent);
  background: linear-gradient(90deg, rgba(14, 29, 44, 0.96), rgba(9, 18, 30, 0.96));
  border-bottom: 1px solid rgba(98, 229, 255, 0.12);
}

.chrome-controls {
  display: inline-flex;
  gap: 6px;
}

.chrome-controls span {
  width: 13px;
  height: 13px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(100, 233, 255, 0.94), rgba(138, 125, 255, 0.9));
  box-shadow: 0 0 10px rgba(100, 233, 255, 0.22);
}

.chrome-title {
  min-width: 0;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.url-bar {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: center;
  padding: 11px 16px;
  background: rgba(5, 12, 20, 0.82);
  border-top: 1px solid rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid rgba(98, 229, 255, 0.1);
}

.url-text {
  min-width: 0;
  padding: 10px 12px;
  border-radius: 14px;
  font-family: "Courier New", monospace;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  color: #d6f7ff;
  background: linear-gradient(180deg, rgba(11, 25, 39, 0.94), rgba(7, 14, 23, 0.96));
  border: 1px solid rgba(98, 229, 255, 0.12);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hero-screen,
.archive-inner {
  padding: 18px;
}

.browser-frame--hero {
  background:
    radial-gradient(circle at 50% 0%, rgba(100, 233, 255, 0.1), transparent 34%),
    linear-gradient(180deg, rgba(8, 17, 29, 0.96), rgba(2, 7, 12, 0.98));
  border-color: rgba(98, 229, 255, 0.2);
}

.browser-frame--hero .browser-chrome {
  padding-top: 14px;
  padding-bottom: 14px;
  background: linear-gradient(90deg, rgba(11, 26, 42, 0.98), rgba(9, 18, 30, 0.96), rgba(16, 31, 46, 0.98));
}

.hero-visual {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 0%, rgba(100, 233, 255, 0.14), transparent 28%),
    linear-gradient(180deg, #081523 0%, #03070d 100%);
  border: 1px solid rgba(98, 229, 255, 0.2);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.03) inset,
    inset 0 0 120px rgba(100, 233, 255, 0.04),
    0 24px 48px rgba(0, 0, 0, 0.28);
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 22px;
  border: 1px solid rgba(98, 229, 255, 0.12);
  pointer-events: none;
}

.hero-visual::after,
.video-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), transparent 16%, transparent 84%, rgba(0, 0, 0, 0.18)),
    repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 4px);
}

.hero-visual video,
.hero-visual iframe,
.video-shell video,
.video-shell iframe,
.video-shell img {
  display: block;
  width: 100%;
  height: 100%;
  background: #030912;
}

.hero-visual video,
.video-shell video,
.video-shell img {
  object-fit: cover;
}

.hero-visual iframe,
.video-shell iframe {
  border: 0;
}

.hero-overlay {
  position: absolute;
  inset: auto 18px 18px 18px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: end;
}

.hero-overlay-copy {
  position: relative;
  padding: 18px 20px;
  border-radius: 24px;
  color: var(--text);
  background: linear-gradient(135deg, rgba(5, 13, 22, 0.76), rgba(10, 28, 43, 0.84));
  border: 1px solid rgba(98, 229, 255, 0.18);
  box-shadow:
    0 18px 36px rgba(0, 0, 0, 0.24),
    0 0 32px rgba(100, 233, 255, 0.05) inset;
  backdrop-filter: blur(18px);
}

.hero-overlay-copy::before {
  content: "Immersive Display";
  position: absolute;
  top: 14px;
  right: 18px;
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-2);
}

.hero-overlay-copy h2 {
  margin: 10px 0 0;
  font-size: clamp(1.7rem, 3vw, 2.9rem);
  line-height: 0.98;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: "Avenir Next Condensed", "Trebuchet MS", sans-serif;
  text-shadow: 0 0 18px rgba(100, 233, 255, 0.1);
}

.hero-overlay-copy p {
  margin: 10px 0 0;
  color: #a4c2d8;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.live-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  min-width: 152px;
  padding: 14px 18px;
  border-radius: 22px;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #04111d;
  background: linear-gradient(135deg, rgba(255, 155, 99, 0.95), rgba(255, 93, 127, 0.95));
  box-shadow:
    0 18px 30px rgba(255, 93, 127, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.12) inset;
}

.live-pill.is-live {
  animation: pulse 1.2s infinite alternate;
}

.radio-deck {
  padding: 18px;
  display: grid;
  gap: 16px;
}

.radio-info h2 {
  margin: 8px 0 0;
  font-size: 1.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.now-details {
  margin: 8px 0 0;
  color: var(--muted);
}

.radio-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #d5f8ff;
  background: linear-gradient(180deg, rgba(15, 31, 47, 0.84), rgba(8, 16, 26, 0.88));
  border: 1px solid rgba(98, 229, 255, 0.12);
}

.equalizer {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: end;
  gap: 6px;
  min-height: 96px;
  padding: 14px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(4, 10, 18, 0.96), rgba(10, 19, 30, 0.86));
  border: 1px solid rgba(98, 229, 255, 0.12);
}

.equalizer span {
  display: block;
  min-height: 18px;
  border-radius: 999px 999px 4px 4px;
  background: linear-gradient(180deg, var(--accent-2), var(--accent));
  box-shadow: 0 0 14px rgba(100, 233, 255, 0.16);
  animation: bounce 0.9s ease-in-out infinite alternate;
}

.equalizer span:nth-child(2n) {
  animation-duration: 1.1s;
}

.equalizer span:nth-child(3n) {
  animation-duration: 0.75s;
}

.equalizer span:nth-child(4n) {
  animation-duration: 1.35s;
}

body:not(.stream-live) .equalizer span {
  animation-play-state: paused;
  opacity: 0.36;
}

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

.transport button,
.video-tune {
  padding: 12px 16px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #04111d;
  background: linear-gradient(135deg, rgba(100, 233, 255, 0.96), rgba(115, 255, 196, 0.94));
  box-shadow:
    0 14px 24px rgba(100, 233, 255, 0.14),
    0 0 0 1px rgba(255, 255, 255, 0.12) inset;
}

.transport button:nth-child(2),
.video-tune {
  background: linear-gradient(135deg, rgba(255, 155, 99, 0.96), rgba(255, 93, 127, 0.94));
}

.transport button:hover,
.top-eight-button:hover,
.queue-button:hover,
.archive-button:hover,
.video-card:hover .video-tune {
  transform: translateY(-2px);
  border-color: var(--line-strong);
}

.queue-wrap {
  display: grid;
  gap: 12px;
}

.radio-playlist {
  display: grid;
  gap: 8px;
  max-height: 460px;
  overflow: auto;
  padding-right: 4px;
}

.queue-button {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(14, 30, 45, 0.84), rgba(8, 16, 25, 0.9));
}

.queue-number {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  font-weight: 900;
  color: #04111d;
  background: linear-gradient(135deg, rgba(100, 233, 255, 0.92), rgba(138, 125, 255, 0.9));
  box-shadow: 0 12px 22px rgba(100, 233, 255, 0.14);
}

.queue-copy small,
.archive-copy small,
.video-copy p {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  line-height: 1.35;
}

.queue-button.is-active,
.top-eight-button.is-active,
.archive-button.is-active {
  border-color: var(--line-strong);
  box-shadow:
    0 0 0 1px rgba(98, 229, 255, 0.12) inset,
    0 0 32px rgba(100, 233, 255, 0.06);
}

.bulletin {
  display: grid;
  gap: 16px;
}

.bulletin-post {
  padding: 16px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(13, 27, 41, 0.82), rgba(8, 16, 26, 0.9));
  border: 1px solid rgba(98, 229, 255, 0.1);
}

.bulletin-post p {
  margin: 10px 0 0;
  line-height: 1.6;
  color: var(--muted);
}

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

.comment-thread li {
  padding: 12px 14px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(11, 21, 34, 0.82), rgba(7, 13, 22, 0.9));
  border: 1px solid rgba(98, 229, 255, 0.08);
  line-height: 1.5;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: end;
}

.video-grid,
.archive-list {
  display: grid;
  gap: 16px;
}

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

.video-card {
  display: grid;
  gap: 0;
  border-radius: 24px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(11, 21, 34, 0.94), rgba(6, 12, 20, 0.98)),
    radial-gradient(circle at 50% 0%, rgba(100, 233, 255, 0.07), transparent 32%);
  border: 1px solid rgba(98, 229, 255, 0.14);
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}

.video-card:hover,
.video-card.is-active {
  transform: translateY(-6px);
  border-color: var(--line-strong);
  box-shadow:
    0 22px 42px rgba(0, 0, 0, 0.34),
    0 0 36px rgba(100, 233, 255, 0.08);
}

.video-shell {
  position: relative;
  aspect-ratio: 16 / 10;
  background: linear-gradient(180deg, rgba(4, 10, 18, 0.98), rgba(10, 19, 30, 0.92));
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(98, 229, 255, 0.1);
}

.video-copy {
  padding: 14px 16px 16px;
}

.video-copy h3 {
  font-size: 1.04rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.video-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 12px;
}

.archive-inner {
  display: grid;
  gap: 12px;
}

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

.archive-button {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(13, 27, 42, 0.84), rgba(7, 13, 22, 0.92));
}

.archive-number {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  font-size: 0.84rem;
  font-weight: 900;
  color: #04111d;
  background: linear-gradient(135deg, rgba(100, 233, 255, 0.9), rgba(255, 155, 99, 0.92));
}

.radio-playlist::-webkit-scrollbar,
.archive-list::-webkit-scrollbar {
  width: 10px;
}

.radio-playlist::-webkit-scrollbar-thumb,
.archive-list::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(100, 233, 255, 0.76), rgba(138, 125, 255, 0.78));
}

@keyframes pulse {
  from {
    transform: scale(1);
    filter: saturate(0.85);
  }

  to {
    transform: scale(1.05);
    filter: saturate(1.18);
  }
}

@keyframes bounce {
  from {
    height: 18%;
  }

  to {
    height: 100%;
  }
}

@media (max-width: 1120px) {
  .layout {
    grid-template-columns: 1fr;
    grid-template-areas:
      "channel"
      "profile"
      "hero"
      "radio"
      "bulletin"
      "archive";
  }

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

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

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

@media (max-width: 760px) {
  body::after {
    inset: 8px;
  }

  .page-shell {
    width: min(100% - 12px, 100%);
    margin-top: 8px;
    padding: 14px;
    border-radius: 28px;
  }

  .masthead h1 {
    font-size: clamp(2.1rem, 12vw, 3.6rem);
  }

  .hero-visual {
    min-height: 360px;
  }

  .hero-overlay {
    position: static;
    grid-template-columns: 1fr;
    padding: 14px;
  }

  .hero-overlay-copy::before {
    position: static;
    display: block;
    margin-bottom: 8px;
  }

  .masthead-stats,
  .video-grid,
  .archive-list {
    grid-template-columns: 1fr;
  }

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

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