
:root {
  --bg: #090a0c;
  --bg2: #111317;
  --panel: rgba(255,255,255,0.035);
  --panel-strong: rgba(255,255,255,0.055);
  --border: rgba(255,255,255,0.10);
  --text: #ffffff;
  --muted: rgba(255,255,255,0.76);
  --soft: rgba(255,255,255,0.60);
  --faint: rgba(255,255,255,0.42);
  --radius: 1.6rem;
  --shadow: 0 18px 48px rgba(0,0,0,0.35);
}
* { box-sizing: border-box; }
html, body {
  margin:0; padding:0;
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.05), transparent 28%),
    radial-gradient(circle at bottom right, rgba(66,126,255,0.12), transparent 26%),
    linear-gradient(to bottom,#111317,#090a0c);
  color:var(--text);
  font-family: Inter, system-ui, Arial, sans-serif;
}
a { color: inherit; text-decoration: none; }
a:hover { opacity: .96; }
img { max-width:100%; display:block; }
.container { width:min(1200px, calc(100% - 2.4rem)); margin:0 auto; }
.site-header, .site-footer {
  background: rgba(0,0,0,0.42);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--border);
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(9,10,12,0.82);
  backdrop-filter: blur(14px);
}
.site-header .container, .site-footer .container {
  display:flex; align-items:center; justify-content:space-between; gap:1rem; padding:1rem 0;
}
.brand-logo { height: 148px; width: auto; object-fit: contain; }
.footer-logo { height: 112px; width: auto; object-fit: contain; }
.xtra-logo { height:48px; width:auto; object-fit:contain; opacity:.92; }
.nav { display:flex; gap:1.2rem; align-items:center; }
.nav a { color:var(--soft); font-size:.95rem; padding:.4rem .1rem; }
.nav a.active, .nav a:hover { color:#fff; }
.hero {
  position:relative; overflow:hidden; border-bottom:1px solid var(--border);
  background:linear-gradient(to bottom,#141821,#090a0c);
}
.hero::before, .hero::after {
  content:""; position:absolute; border-radius:9999px; pointer-events:none;
}
.hero::before {
  width:280px; height:280px; left:-40px; top:-80px;
  background:rgba(255,255,255,0.10); filter:blur(70px);
}
.hero::after {
  width:360px; height:360px; right:-80px; bottom:-110px;
  background:rgba(86,129,255,0.18); filter:blur(88px);
}
.hero-inner { position:relative; z-index:1; padding:5.2rem 0 4.8rem; }
.hero-label, .section-label { text-transform:uppercase; letter-spacing:.22em; color:var(--faint); font-size:.78rem; }
.hero h1 {
  line-height: 1.04;
  margin: .85rem 0 0;
  font-size: clamp(1.8rem, 2.8vw, 2.85rem);
}
.section h2, .split h2, .split-vision h2 {
  line-height:1.1; margin:.75rem 0 0; font-size: clamp(1.8rem, 2.3vw, 2.7rem);
}
.hero p.lead { color:var(--muted); font-size:1.08rem; line-height:1.82; max-width:760px; margin-top:1.2rem; }
.hero p.sub { color:var(--soft); font-style:italic; margin-top:.75rem; }
.logo-hero {
  height:156px; width:auto; margin-bottom:1.2rem; object-fit:contain;
  filter: drop-shadow(0 0 24px rgba(68,120,255,.16));
}
.btn-row { display:flex; gap:1rem; flex-wrap:wrap; margin-top:1.8rem; }
.btn { display:inline-flex; align-items:center; justify-content:center; border-radius:1rem; padding:.9rem 1.15rem; font-weight:600; font-size:.95rem; border:1px solid var(--border); }
.btn.primary { background:#fff; color:#090a0c; }
.btn.secondary { background:transparent; color:#fff; }
.section { padding:3.8rem 0; }
.section-top { max-width:820px; margin-bottom:1.65rem; }
.section-top p, .split-text p { color:var(--muted); line-height:1.82; font-size:1rem; }
.split, .split-vision { display:grid; grid-template-columns: minmax(0,.96fr) minmax(0,1.04fr); gap:2.3rem; align-items:start; }
.panel { background:var(--panel); border:1px solid var(--border); border-radius:var(--radius); box-shadow:var(--shadow); }
.panel.pad { padding:1.85rem; }
.grid-2, .grid-3, .grid-4 { display:grid; gap:1.1rem; }
.grid-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.grid-4 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.muted { color:var(--muted); }
.soft { color:var(--soft); }
.note { font-size:.95rem; color:var(--soft); line-height:1.8; }
.pill, .mini-card { border:1px solid var(--border); background:var(--panel); border-radius:1rem; padding:.88rem 1rem; color:rgba(255,255,255,.82); font-size:.95rem; }
.step-card, .type-card, .song-card, .info-card { border:1px solid var(--border); background:var(--panel); border-radius:1.35rem; padding:1.12rem; }
.step-head { display:flex; align-items:center; gap:.85rem; }
.step-num { width:2.35rem; height:2.35rem; display:flex; align-items:center; justify-content:center; border-radius:9999px; border:1px solid var(--border); background:var(--panel-strong); font-weight:700; }
.featured-grid, .song-grid { display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap:1.2rem; }
.song-card { overflow:hidden; padding:0; }
.song-card .cover {
  aspect-ratio: 1 / 1;
  background: #12151b;
  overflow: hidden;
}
.song-card .cover img { width:100%; height:100%; object-fit:cover; }
.song-card .body { padding: .9rem .95rem 1rem; }
.song-card h3 {
  margin: .36rem 0 0;
  font-size: 1.08rem;
  line-height: 1.15;
}
.song-card p {
  margin: .62rem 0 0;
  color: var(--muted);
  line-height: 1.58;
  font-size: .9rem;
}
.category-tag { text-transform:uppercase; letter-spacing:.19em; color:var(--faint); font-size:.7rem; }
.meta { display:flex; gap:.8rem; flex-wrap:wrap; color:var(--soft); margin-top:.92rem; font-size:.9rem; }
.card-actions { display:flex; gap:.7rem; flex-wrap:wrap; margin-top:1rem; }
.song-hero-meta { display:flex; gap:.75rem; flex-wrap:wrap; color:var(--soft); margin-top:1rem; }
.song-detail-grid { display:grid; grid-template-columns: minmax(0,1.02fr) minmax(0,.98fr); gap:1.8rem; padding-top:2.6rem; }
.song-detail-grid .cover { aspect-ratio: 1 / 1; background:#12151b; overflow:hidden; }
.song-detail-grid .cover img { width:100%; height:100%; object-fit:cover; }
.audio-wrap, .detail-panel { padding:1.5rem; }
.detail-panel h2, .audio-wrap h2 { font-size:1.45rem; margin:0; }
.audio-box { margin-top:1rem; border:1px solid var(--border); border-radius:1rem; background:#111317; padding:1rem; }
.content-note, .footer-note { padding:1.35rem 1.45rem; border-radius:1.4rem; border:1px solid var(--border); background:var(--panel); }
.form-grid { display:grid; gap:1.1rem; }
.form-grid.two { grid-template-columns:repeat(2,minmax(0,1fr)); }
label { display:block; font-size:.95rem; font-weight:600; margin-bottom:.45rem; color:rgba(255,255,255,.92); }
input, select, textarea { width:100%; border-radius:1rem; border:1px solid var(--border); background:#111317; color:#fff; padding:.9rem 1rem; font:inherit; }
textarea { min-height:140px; resize:vertical; }
.helper { font-size:.8rem; color:var(--faint); margin-top:.4rem; }
.hidden-field { position:absolute; left:-9999px; width:1px; height:1px; opacity:0; }
.status-box { margin-top:1rem; }
.status-box.success .panel { border-color: rgba(255,255,255,.16); background: rgba(255,255,255,.06); }
.status-box.error .panel { border-color: rgba(255,255,255,.12); }
.back-link { color:var(--soft); display:inline-block; margin-bottom:1rem; }
.mobile-note { display:none; }
.footer-copy { color:var(--faint); font-size:.92rem; }
@media (max-width: 980px) {
  .split, .split-vision, .song-detail-grid, .form-grid.two, .featured-grid, .song-grid { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .brand-logo { height:68px; }
  .logo-hero { height:138px; }
}
@media (max-width: 760px) {
  .nav { display:none; }
  .split, .split-vision, .song-detail-grid, .form-grid.two, .featured-grid, .song-grid, .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .container { width:min(1200px, calc(100% - 1.2rem)); }
  .hero-inner { padding:4rem 0 3.8rem; }
  .logo-hero { height:100px; }
  .site-header .container, .site-footer .container { flex-direction:column; align-items:flex-start; }
  .brand-logo { height:54px; }
  .footer-logo { height:48px; }
  .xtra-logo { height:40px; }
  .mobile-note { display:block; color:var(--faint); font-size:.82rem; }
}


.roku-promo {
  margin-top: 1.6rem;
  border: 1px solid var(--border);
  border-radius: 1.45rem;
  background:
    linear-gradient(135deg, rgba(255,255,255,.05), rgba(86,129,255,.08)),
    rgba(255,255,255,.03);
  padding: 1.3rem 1.35rem;
  box-shadow: var(--shadow);
}
.roku-kicker {
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .72rem;
  color: var(--faint);
  margin-bottom: .55rem;
}
.roku-promo h3 {
  margin: 0;
  font-size: 1.25rem;
}
.roku-promo p {
  margin: .7rem 0 0;
  color: var(--muted);
  line-height: 1.78;
}
.roku-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-top: .95rem;
  padding: .55rem .8rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.92);
  font-size: .88rem;
  font-weight: 600;
}


.song-grid .song-card,
.featured-grid .song-card {
  max-width: 280px;
}

.song-grid,
.featured-grid {
  justify-content: start;
}

.song-card .body {
  padding: 1rem 1rem 1.1rem;
}

.song-card h3 {
  font-size: 1.16rem;
}

.song-card p {
  font-size: .93rem;
  line-height: 1.66;
}


.roku-promo {
  margin-top: 1.8rem;
  border: 1px solid var(--border);
  border-radius: 1.55rem;
  background:
    linear-gradient(135deg, rgba(255,255,255,.05), rgba(86,129,255,.08)),
    rgba(255,255,255,.03);
  padding: 1.35rem 1.4rem;
  box-shadow: var(--shadow);
  max-width: 960px;
}
.roku-promo-grid {
  display: grid;
  grid-template-columns: 132px minmax(0,1fr);
  gap: 1.2rem;
  align-items: center;
}
.roku-icons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .7rem;
}
.roku-app-icon {
  width: 110px;
  height: 110px;
  object-fit: contain;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,.35));
}
.roku-brand-icon {
  width: 74px;
  height: 74px;
  object-fit: contain;
}
.roku-kicker {
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .72rem;
  color: var(--faint);
  margin-bottom: .55rem;
}
.roku-promo h3 {
  margin: 0;
  font-size: 1.25rem;
}
.roku-promo p {
  margin: .7rem 0 0;
  color: var(--muted);
  line-height: 1.78;
}
.roku-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-top: .95rem;
  padding: .55rem .8rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.92);
  font-size: .88rem;
  font-weight: 600;
}
@media (max-width: 760px) {
  .roku-promo-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .roku-icons {
    flex-direction: row;
    justify-content: flex-start;
  }
  .roku-app-icon {
    width: 92px;
    height: 92px;
  }
  .roku-brand-icon {
    width: 62px;
    height: 62px;
  }
}


.roku-promo {
  margin: 2rem auto 0;
  text-align: left;
}

.roku-promo-grid {
  max-width: 760px;
  margin: 0 auto;
}

.footer-copy {
  color: rgba(255,255,255,.78);
  font-size: .9rem;
  line-height: 1.6;
  margin: 0;
  max-width: 720px;
}

@media (max-width: 760px) {
  .roku-promo {
    text-align: left;
  }
  .roku-promo-grid {
    max-width: 100%;
    justify-items: start;
  }
}


/* Responsive + songs architecture cleanup pass */
.nav-toggle,
.mobile-nav-panel { display:none; }

.category-preview-stack {
  display:grid;
  gap:1.5rem;
}
.category-preview {
  padding:1.5rem;
}
.category-preview-head {
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:1.25rem;
  margin-bottom:1.2rem;
}
.category-preview-head h2 {
  margin-top:.45rem;
  font-size: clamp(1.5rem, 2vw, 2.05rem);
}
.category-preview-head p {
  color:var(--muted);
  line-height:1.72;
  margin:.7rem 0 0;
  max-width:760px;
}
.category-preview-actions {
  min-width:220px;
  display:flex;
  flex-direction:column;
  gap:.7rem;
  align-items:flex-end;
}
.category-count {
  color:var(--soft);
  font-size:.92rem;
}

.song-grid .song-card,
.featured-grid .song-card {
  max-width: 320px;
}

@media (min-width: 981px) {
  .song-grid,
  .featured-grid {
    grid-template-columns: repeat(3, minmax(260px, 320px));
  }
}

@media (max-width: 980px) {
  .site-header .container,
  .site-footer .container {
    gap: 1.25rem;
  }

  .brand-logo { height:88px; }
  .footer-logo { height:72px; }
  .hero-inner { padding:4.5rem 0 4rem; }
  .btn { min-height:48px; }

  .category-preview-head,
  .category-preview-actions {
    align-items:flex-start;
  }
  .category-preview-actions {
    min-width:0;
  }
}

@media (max-width: 760px) {
  .site-header .container {
    position:relative;
    flex-direction:row;
    align-items:center;
    justify-content:space-between;
    gap:.75rem;
    padding:.85rem 0;
  }
  .site-footer .container {
    flex-direction:column;
    align-items:flex-start;
  }
  .site-footer .container > div {
    flex-direction:column;
    align-items:flex-start !important;
  }

  .nav { display:none; }
  .mobile-note {
    display:none;
  }
  .nav-toggle {
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:48px;
    height:48px;
    border-radius:14px;
    border:1px solid var(--border);
    background:rgba(255,255,255,.04);
    color:#fff;
    cursor:pointer;
    flex:0 0 auto;
  }
  .nav-toggle-bar,
  .nav-toggle-bar::before,
  .nav-toggle-bar::after {
    content:"";
    display:block;
    width:18px;
    height:2px;
    border-radius:999px;
    background:#fff;
    position:relative;
    transition:transform .22s ease, opacity .22s ease;
  }
  .nav-toggle-bar::before { position:absolute; top:-6px; }
  .nav-toggle-bar::after { position:absolute; top:6px; }
  .nav-toggle.open .nav-toggle-bar { background:transparent; }
  .nav-toggle.open .nav-toggle-bar::before { transform:translateY(6px) rotate(45deg); }
  .nav-toggle.open .nav-toggle-bar::after { transform:translateY(-6px) rotate(-45deg); }

  .mobile-nav-panel {
    display:none;
    position:absolute;
    left:0;
    right:0;
    top:calc(100% + .6rem);
    z-index:220;
    padding:.7rem;
    border:1px solid var(--border);
    border-radius:1.15rem;
    background:rgba(9,10,12,.98);
    backdrop-filter:blur(12px);
    box-shadow: var(--shadow);
  }
  .mobile-nav-panel.open {
    display:grid;
    gap:.2rem;
  }
  .mobile-nav-panel a {
    display:block;
    padding:.9rem 1rem;
    border-radius:.9rem;
    color:var(--muted);
  }
  .mobile-nav-panel a.active,
  .mobile-nav-panel a:hover {
    color:#fff;
    background:rgba(255,255,255,.06);
  }

  .container { width:min(1200px, calc(100% - 1.2rem)); }
  .section { padding:3.15rem 0; }
  .hero-inner { padding:3.8rem 0 3.35rem; }
  .hero h1 { font-size: clamp(1.8rem, 9vw, 2.55rem); }
  .hero p.lead,
  .section-top p,
  .split-text p { font-size:.98rem; line-height:1.72; }
  .logo-hero { height:96px; }
  .brand-logo { height:64px; }
  .footer-logo { height:56px; }
  .xtra-logo { height:42px; }

  .btn-row { gap:.75rem; }
  .btn { width:100%; }
  .card-actions .btn { width:auto; }

  .category-preview { padding:1.2rem; }
  .category-preview-head {
    flex-direction:column;
    gap:1rem;
  }
  .category-preview-actions {
    width:100%;
    align-items:flex-start;
  }

  .song-grid .song-card,
  .featured-grid .song-card {
    max-width:none;
  }
}


.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(300px, .98fr);
  gap: 2.4rem;
  align-items: center;
}
.hero-visual-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}
.section-with-visual > div:first-child {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.section-visual {
  width: 100%;
  max-width: 252px;
  border-radius: 1.35rem;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 18px 44px rgba(0,0,0,.42);
}
.hero-visual {
  max-width: 276px;
}
.section-visual-vision {
  max-width: 312px;
}
.section-song-grid {
  margin-top: 1.35rem;
}
.category-preview-head {
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.category-preview-head h2 {
  font-size: 1.9rem !important;
  margin: 0 !important;
}
.category-preview-copy {
  margin: .55rem 0 0;
}
.category-preview-count {
  color: var(--faint);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .72rem;
}
.category-preview-block {
  padding-bottom: 2.6rem !important;
}
@media (max-width: 980px) {
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }
  .hero-visual-wrap {
    justify-content: flex-start;
  }
}
@media (max-width: 760px) {
  .section-visual,
  .hero-visual,
  .section-visual-vision {
    max-width: 100%;
  }
  .category-preview-head {
    align-items: flex-start;
    flex-direction: column;
  }
}


/* Songs/category polish pass */
.song-grid,
.featured-grid {
  align-items: stretch;
}

.song-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 100%;
}

.song-card .cover {
  display: block;
}

.song-card .body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}

.song-card h3 a {
  color: inherit;
}

.song-card p {
  flex: 1 1 auto;
}

.song-card .card-actions {
  margin-top: auto;
  padding-top: .95rem;
}

.category-preview-block {
  border-top: 1px solid rgba(255,255,255,.08);
}

.category-preview-head .btn {
  min-width: 136px;
}

.category-page-actions {
  margin-top: 1.35rem;
}

.category-summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.category-chip {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .48rem .78rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.04);
  color: var(--soft);
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.song-detail-grid {
  grid-template-columns: minmax(280px, 440px) minmax(0, 1fr);
  align-items: start;
}

.song-detail-grid .panel:first-child {
  overflow: hidden;
}

.song-detail-grid .cover {
  aspect-ratio: 1 / 1;
}

.audio-wrap,
.detail-panel {
  min-height: 100%;
}

.audio-wrap audio {
  display: block;
}

.footer-note.compact-note {
  padding: 1rem 1.1rem;
}

.empty-state {
  max-width: 640px;
}

@media (max-width: 980px) {
  .song-detail-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .category-summary-row {
    align-items: flex-start;
  }

  .category-page-actions .btn {
    width: 100%;
  }

  .song-card .card-actions {
    gap: .6rem;
  }
}
/* Hide likes only on individual song detail pages */
#song-like-count,
#song-like-button {
  display: none !important;
}


.footer-links {
  margin-top: .65rem;
  display: flex;
  gap: .6rem;
  flex-wrap: wrap;
  align-items: center;
}

.footer-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .8rem;
}

.footer-links a {
  color: var(--soft);
  font-size: .9rem;
}

.footer-links a:hover {
  color: #fff;
}

.footer-divider {
  color: rgba(255,255,255,.25);
  font-size: .88rem;
  margin: 0 .15rem;
}

.consent-block {
  display: grid;
  gap: .9rem;
  margin-top: .35rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 1.1rem;
  background: rgba(255,255,255,.03);
}

.consent-legal-note {
  margin: 0;
}

.consent-checkbox-row {
  display: flex;
  align-items: center;
  gap: .8rem;
}

.consent-checkbox-row input[type="checkbox"] {
  margin-top: .2rem;
  width: 1.05rem;
  height: 1.05rem;
  accent-color: #4da3ff;
  flex: 0 0 auto;
}

.consent-checkbox-row label {
  display: inline;
  margin: 0;
  color: var(--soft);
  line-height: 1.75;
}

.consent-checkbox-row a {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,.35);
}

.consent-helper {
  margin: 0;
}

.consent-error {
  margin: 0;
  color: #ffb3b3;
  font-size: .92rem;
  min-height: 1.2rem;
}

@media (max-width: 760px) {
  .footer-links {
    gap: .65rem;
  }

  .consent-checkbox-row {
    align-items: flex-start;
    gap: .7rem;
  }
}


/* Responsive refinement pass */
body {
  overflow-x: hidden;
}

audio,
video,
iframe {
  max-width: 100%;
}

.site-header .container > a,
.site-footer .container > div:first-child,
.footer-copy {
  min-width: 0;
}

.footer-copy {
  overflow-wrap: anywhere;
}

.footer-links a {
  padding: .2rem 0;
}

.btn {
  min-height: 48px;
}

.song-card .btn,
.category-preview-actions .btn {
  text-align: center;
}

@media (max-width: 980px) {
  .section {
    padding: 3.4rem 0;
  }

  .panel.pad,
  .audio-wrap,
  .detail-panel,
  .content-note,
  .footer-note {
    padding: 1.3rem;
  }
}

@media (max-width: 760px) {
  .hero p.lead {
    font-size: 1rem;
  }

  .section h2,
  .split h2,
  .split-vision h2 {
    font-size: clamp(1.55rem, 7vw, 2.1rem);
  }

  .section-top {
    margin-bottom: 1.3rem;
  }

  .panel.pad,
  .audio-wrap,
  .detail-panel,
  .content-note,
  .footer-note,
  .category-preview,
  .roku-promo {
    padding: 1.1rem;
  }

  input,
  select,
  textarea {
    font-size: 16px;
  }

  .site-footer .container {
    gap: 1rem;
  }

  .site-footer .container > div:first-child {
    width: 100%;
  }

  .footer-links {
    gap: .9rem;
  }

  .song-hero-meta,
  .meta {
    gap: .55rem;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(1200px, calc(100% - 1rem));
  }

  .hero-inner {
    padding: 3.25rem 0 3rem;
  }

  .brand-logo {
    height: 56px;
  }

  .footer-logo {
    height: 50px;
  }

  .btn-row,
  .card-actions {
    gap: .65rem;
  }

  .card-actions .btn,
  .song-card .card-actions .btn {
    width: 100%;
  }

  .consent-block {
    padding: .95rem 1rem;
  }

  .consent-checkbox-row {
    gap: .6rem;
  }
}
