:root {
  --bg-overlay: rgba(15, 16, 29, 0.08);
  --panel: rgba(9, 11, 26, 0.47);
  --text: #f5f7ff;
  --muted: #b7c0e6;
  --accent: #ffcf53;
  --accent-strong: #ff9f1c;
  --card: rgba(255, 255, 255, 0.08);
  --border: rgba(255, 255, 255, 0.18);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  --max-width: 1200px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Space Grotesk", "Inter", system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: linear-gradient(var(--bg-overlay), var(--bg-overlay)),
    url("assets/first-bkg-variant.jpg") center/cover fixed no-repeat;
  overflow-x: hidden;
}

.background-guard {
  position: fixed;
  inset: 0;
  z-index: 0;
  background: linear-gradient(120deg, rgba(0, 0, 0, 0.072), rgba(0, 0, 0, 0.18));
  pointer-events: none;
}

main,
.site-header,
.footer {
  position: relative;
  z-index: 1;
}

.site-header {
  width: 100%;
  padding: 4px 24px 0;
  margin-top: 40px;
}

.alert-banner {
  max-width: calc(var(--max-width) + 360px);
  margin: 8px auto 0;
  padding: 10px 18px;
  border-radius: 12px;
  background: rgba(255, 207, 83, 0.12);
  border: 1px solid rgba(255, 207, 83, 0.4);
  box-shadow: var(--shadow);
}

.alert-banner[data-tone="info"] {
  background: rgba(133, 192, 255, 0.12);
  border-color: rgba(133, 192, 255, 0.4);
}

.alert-banner[data-tone="danger"] {
  background: rgba(255, 99, 132, 0.14);
  border-color: rgba(255, 99, 132, 0.5);
}

.alert-content {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-weight: 600;
}

.alert-content a {
  color: var(--accent);
  text-decoration: underline;
  font-weight: 700;
}

.cloud-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(16px, 2.2vw, 22px);
  row-gap: 8px;
  align-items: flex-start;
  padding: 6px 12px 10px;
  flex: 1 1 320px;
}

.cloud-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 198px;
  height: 113px;
  padding: 24px 26px 22px;
  background: url("assets/Cloud.png") center/contain no-repeat;
  color: #0d0d0d;
  font-weight: 700;
  text-decoration: none;
  filter: drop-shadow(0 10px 16px rgba(0, 0, 0, 0.35));
  transition: transform 0.18s ease, filter 0.18s ease, color 0.18s ease;
  transform: translateY(var(--offset, 0));
}

.cloud-link:hover {
  animation: cloud-bob 1s ease-in-out infinite;
  color: var(--accent);
  filter: drop-shadow(0 14px 18px rgba(0, 0, 0, 0.4));
}

.cloud-link.active {
  color: var(--accent-strong);
}

.cloud-link:nth-child(1) { --offset: -12px; }
.cloud-link:nth-child(2) { --offset: 8px; }
.cloud-link:nth-child(3) { --offset: -6px; }
.cloud-link:nth-child(4) { --offset: 10px; }
.cloud-link:nth-child(5) { --offset: -8px; }

@keyframes cloud-bob {
  0%, 100% { transform: translateY(calc(var(--offset, 0) - 2px)); }
  50% { transform: translateY(calc(var(--offset, 0) - 6px)); }
}

.layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(272px, 306px);
  gap: clamp(18px, 3vw, 28px);
  align-items: stretch;
  max-width: calc(var(--max-width) + 360px);
  margin: 0 auto;
  padding: clamp(18px, 4vw, 38px) 24px clamp(32px, 5vw, 56px);
}

.listen-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: 20px;
  align-self: flex-start;
}

.hero-column {
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 3vw, 24px);
}

.home-stack {
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 2.6vw, 20px);
}

.page-section {
  display: none;
}

.page-section.active {
  display: block;
}

.nav {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px 10px;
  border-radius: 14px;
  background: rgba(8, 10, 23, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: var(--shadow);
  flex-wrap: wrap;
}

.brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

.brand-mark {
  height: 42px;
  width: auto;
}

.tagline {
  font-size: 13px;
  color: var(--muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 20px);
  flex-wrap: wrap;
}

.nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 10px;
  transition: background 0.2s ease, transform 0.2s ease;
  border: 1px solid transparent;
}

.nav a:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}

.nav a.active {
  background: rgba(255, 255, 255, 0.14);
  border-color: var(--border);
  color: var(--accent);
}

.hero {
  padding: clamp(12px, 3vw, 24px);
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(8, 10, 23, 0.5);
  backdrop-filter: blur(6px);
  box-shadow: var(--shadow);
}

.hero-content {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(24px, 4vw, 40px);
  align-items: stretch;
}

.hero-text h1 {
  font-size: clamp(32px, 5vw, 52px);
  margin: 10px 0 12px;
}

.hero-text .lead {
  margin-top: 0;
  color: var(--muted);
  font-size: clamp(16px, 2.4vw, 18px);
  line-height: 1.5;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--accent);
}

.status-card {
  margin-top: 24px;
  padding: 18px;
  border-radius: 14px;
  background: var(--panel);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  backdrop-filter: blur(6px);
}

.status-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.status-label {
  color: var(--muted);
  font-weight: 600;
}

.status-main {
  font-size: clamp(18px, 3vw, 22px);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 8px;
}

.status-detail {
  color: var(--muted);
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border);
  font-size: 13px;
  color: var(--accent);
}

.pill-live {
  background: rgba(255, 159, 28, 0.2);
  color: #ffd89b;
  border-color: rgba(255, 207, 83, 0.6);
}

.player-panel {
  padding: 18px;
  background: var(--panel);
  border-radius: 14px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow: visible;
}

.player-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.player-title {
  font-weight: 700;
  font-size: 18px;
}

.listen-link {
  color: var(--accent);
  text-decoration: none;
  font-weight: 700;
}

.player {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  margin-top: auto;
  justify-content: center;
}

.record {
  position: relative;
  width: 220px;
  height: 220px;
  flex-shrink: 0;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: center;
}

.record-art {
  width: 220px;
  height: 220px;
  object-fit: contain;
  background: transparent;
  border: none;
  border-radius: 0;
  filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.35));
}

.player-control {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: transparent;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease;
}

.player-control:hover {
  transform: translate(-50%, -50%) scale(1.05);
}

.player-control img {
  width: 50px;
  height: 50px;
}

.volume-control {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  justify-content: center;
  color: var(--text);
}

.volume-control label {
  font-weight: 600;
  font-size: 14px;
}

.volume-control input[type="range"] {
  flex: 1;
  accent-color: var(--accent);
}

.volume-control span {
  font-variant-numeric: tabular-nums;
  min-width: 44px;
  text-align: right;
}

.player-status {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.4;
}

.article-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: clamp(12px, 2.5vw, 20px);
  background: rgba(8, 10, 23, 0.54);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.article-media {
  width: 100%;
}

.article-media img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 10px 16px rgba(0, 0, 0, 0.28));
  border-radius: 12px;
}

.article-kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  font-weight: 700;
  font-size: 12px;
}

.article-title {
  margin: 0;
  font-size: clamp(22px, 3.6vw, 30px);
}

.article-copy {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.article-read-more {
  color: var(--accent);
  font-weight: 700;
  text-decoration: none;
  align-self: flex-start;
}

.article-read-more:hover,
.article-read-more:focus {
  text-decoration: underline;
}

.article-updated {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.section-mini-header {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 6px 0 10px;
  color: var(--muted);
}

.section-mini-header h3 {
  margin: 0;
  color: var(--text);
}

.article-list {
  background: rgba(8, 10, 23, 0.5);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 10px;
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 10px;
}

.article-teaser {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 14px;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  gap: 10px;
  cursor: pointer;
  text-align: left;
  transition: transform 0.16s ease, box-shadow 0.16s ease, border 0.16s ease;
}

.article-teaser:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.24);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

.teaser-text {
  display: grid;
  gap: 6px;
}

.teaser-text h3 {
  margin: 0;
  font-size: 18px;
}

.teaser-body {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.read-link {
  font-weight: 700;
  color: var(--accent);
  align-self: center;
}

.press-strip {
  background: rgba(8, 10, 23, 0.5);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 10px;
}

.press-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.press-logo {
  display: grid;
  grid-template-rows: auto auto;
  justify-items: center;
  align-items: center;
  gap: 6px;
  padding: 10px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border);
  color: var(--text);
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.18);
  min-width: 120px;
  max-width: 160px;
  text-align: center;
}

.press-logo img {
  display: block;
  max-width: 100%;
  max-height: 60px;
  object-fit: contain;
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.18));
}

.press-logo-fallback {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.12);
  display: grid;
  place-items: center;
  font-weight: 800;
}

.press-logo-name {
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
}

.article-detail-shell {
  display: grid;
  gap: 14px;
}

.article-detail {
  background: rgba(8, 10, 23, 0.54);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: clamp(14px, 3vw, 22px);
  display: grid;
  gap: 12px;
}

.article-detail .article-media img {
  max-height: 420px;
  width: 100%;
  object-fit: contain;
}

.section {
  padding: clamp(12px, 3vw, 24px);
  position: relative;
}

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  background: rgba(8, 10, 23, 0.54);
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  padding: clamp(18px, 3vw, 28px);
}

.page-shell {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: clamp(24px, 5vw, 56px) 24px clamp(36px, 6vw, 72px);
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
}

.section-title-img {
  width: clamp(180px, 40vw, 260px);
  height: auto;
}

.section-header p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.cloud-banner {
  height: 70px;
  background: url("assets/Cloud.png") repeat-x center;
  background-size: contain;
  margin: -24px -24px 16px;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.25));
  opacity: 0.9;
}

.about-grid,
.podcast-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.about-card,
.podcast-card,
.contact-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.about-card h3,
.podcast-card h3,
.contact-card h3 {
  margin-top: 0;
  margin-bottom: 8px;
}

.about-card p,
.podcast-card p,
.contact-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.podcast-embed {
  margin-top: 10px;
}

.podcast-embed iframe {
  width: 100%;
  min-height: 180px;
  border: none;
  border-radius: 10px;
}

.schedule-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 18px 0;
}

.ghost {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 8px 12px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-1px);
}

.week-label {
  font-weight: 700;
  color: var(--accent);
}

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.day-column {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 240px;
}

.day-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 700;
  color: var(--accent);
}

.day-header small {
  color: var(--muted);
}

.schedule-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px dashed var(--border);
  border-radius: 10px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.schedule-item strong {
  font-size: 15px;
}

.schedule-item .time {
  color: var(--muted);
  font-size: 14px;
}

.schedule-item .dj {
  color: #d6e4ff;
}

.contact {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.contact-card a {
  color: var(--accent);
}

.leadership {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.leadership-header h3 {
  margin: 0 0 6px;
}

.leadership-header p {
  margin: 0;
  color: var(--muted);
}

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.leader-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: var(--text);
}

.leader-name {
  font-weight: 700;
  margin: 0;
}

.leader-role {
  margin: 0;
  color: var(--accent);
  font-weight: 600;
}

.leader-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.leader-socials a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}

.leader-socials a::before {
  content: "• ";
  color: var(--muted);
}

.dj-lineup {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.dj-lineup-header h3 {
  margin: 0 0 6px;
}

.dj-lineup-header p {
  margin: 0;
  color: var(--muted);
}

.dj-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.dj-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px;
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 10px;
  align-items: center;
}

.dj-photo {
  width: 72px;
  height: 72px;
  border-radius: 12px;
  object-fit: cover;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.05);
}

.dj-name {
  font-weight: 700;
  margin: 0;
  font-size: 16px;
}

.dj-name a {
  color: var(--text);
  text-decoration: none;
}

.dj-name a:hover,
.dj-name a:focus-visible {
  color: var(--accent);
  text-decoration: underline;
}

.dj-primary-show {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.dj-profile-shell {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.dj-profile {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 16px;
  align-items: flex-start;
}

.dj-profile-photo-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
}

.dj-profile-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.dj-profile-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.dj-profile-name {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
}

.dj-profile-role {
  margin: 0;
  color: var(--accent);
  font-weight: 700;
}

.dj-profile-bio {
  margin: 4px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.dj-profile-shows h4 {
  margin: 8px 0 4px;
}

.dj-show-list {
  display: grid;
  gap: 6px;
}

.dj-show-chip {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 8px 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.dj-show-title {
  margin: 0;
  font-weight: 700;
}

.dj-show-meta {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 900px) {
  .dj-profile {
    grid-template-columns: 1fr;
  }

  .dj-profile-photo-wrap {
    max-width: 280px;
  }
}

.weather-card {
  padding: 18px;
  background: var(--panel);
  border-radius: 14px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}

.weather-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}

.weather-label {
  color: var(--muted);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.weather-location {
  color: var(--text);
  font-weight: 600;
}

.weather-temp {
  font-size: 32px;
  font-weight: 700;
  color: var(--accent);
}

.weather-current {
  display: flex;
  align-items: center;
  gap: 12px;
}

.weather-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  font-size: 20px;
}

.weather-summary {
  color: var(--text);
  font-weight: 600;
}

.weather-forecast {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.forecast-title {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.forecast-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 8px;
}

.forecast-chip {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.forecast-chip .label {
  color: var(--muted);
  font-size: 13px;
}

.forecast-chip .value {
  color: var(--text);
  font-weight: 600;
}

.footer {
  padding: 20px 24px 32px;
}

.footer-content {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--muted);
}

.footer-meta {
  max-width: var(--max-width);
  margin: 8px auto 0;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
}

.copyright {
  font-size: 14px;
  color: var(--muted);
}

.scroll-owl {
  position: fixed;
  right: 16px;
  bottom: 0px;
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
  z-index: 20;
  display: grid;
  place-items: center;
}

.scroll-owl img {
  max-height: 90px;
  width: auto;
  display: block;
  filter: drop-shadow(0 14px 22px rgba(0, 0, 0, 0.45));
}

.footer-title {
  font-weight: 700;
  color: var(--text);
}

.footer-subtitle {
  color: var(--muted);
}

@media (max-width: 720px) {
  body {
    background-attachment: scroll;
    background-size: cover;
    background-position: center top;
  }

  .layout {
    grid-template-columns: 1fr;
    padding: clamp(16px, 4vw, 24px);
  }

  .listen-column {
    position: static;
  }

  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .player {
    flex-direction: column;
    align-items: center;
  }

  .record {
    width: 180px;
    height: 180px;
  }

  .player-control {
    width: 56px;
    height: 56px;
  }

  .cloud-banner {
    margin: -18px -18px 16px;
  }

}
