/* ============================================
   MVMNTD INC — STYLESHEET
   Estética Drill | Preto, Branco, Vermelho
============================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@300;400;600;700;900&display=swap');

/* ── RESET & BASE ── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --black:   #000000;
  --red:     #CC0000;
  --red-dim: #8B0000;
  --white:   #FFFFFF;
  --gray:    #111111;
  --gray-2:  #1A1A1A;
  --gray-3:  #2A2A2A;
  --text-muted: #888888;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'Inter', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: default;
}

::selection {
  background: var(--red);
  color: var(--white);
}

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

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

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 2px; }

/* ── SLIDESHOW ── */
.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
  transform: scale(1.04);
  animation: none;
}

.slide.active {
  opacity: 1;
  animation: kenBurns 7s ease forwards;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to right, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.45) 55%, rgba(0,0,0,0.25) 100%),
    linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 40%);
}

/* Dots */
.slide-dots {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  transition: all 0.3s ease;
  cursor: pointer;
}

.dot.active {
  background: var(--red);
  width: 22px;
  border-radius: 3px;
}

/* Badge lançamento */
.hero-release-badge {
  position: absolute;
  bottom: 120px;
  right: 64px;
  z-index: 10;
  animation: fadeDown 1s 0.8s ease forwards;
  opacity: 0;
}

.badge-pulse {
  position: absolute;
  inset: -6px;
  border: 1px solid rgba(204,0,0,0.4);
  animation: badgePulse 2.5s ease-in-out infinite;
}

.badge-inner {
  background: rgba(0,0,0,0.82);
  border: 1px solid rgba(204,0,0,0.6);
  backdrop-filter: blur(12px);
  padding: 20px 24px;
  min-width: 220px;
}

.badge-label {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 10px;
  font-weight: 600;
}

.badge-title {
  font-family: var(--font-display);
  font-size: 2.4rem;
  line-height: 1;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 6px;
}

.badge-artist {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 16px;
}

.badge-artist span {
  color: var(--text-muted);
  font-weight: 400;
}

.badge-cta {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  color: var(--red);
  transition: color 0.2s, letter-spacing 0.2s;
}

.badge-cta:hover {
  color: var(--white);
  letter-spacing: 0.3em;
}

@keyframes kenBurns {
  from { transform: scale(1.04); }
  to   { transform: scale(1); }
}

@keyframes badgePulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50%       { opacity: 0.9; transform: scale(1.02); }
}

/* ── NOISE OVERLAY ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.025;
  pointer-events: none;
  z-index: 9999;
}

/* ============================================
   NAVBAR
============================================ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s ease, padding 0.4s ease;
}

#navbar.scrolled {
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 14px 48px;
  border-bottom: 1px solid rgba(204, 0, 0, 0.25);
}

.nav-logo img {
  height: 44px;
  width: auto;
  filter: brightness(1);
  transition: transform 0.3s ease;
}

.nav-logo img:hover {
  transform: scale(1.05);
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  transition: color 0.2s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  padding: 10px 28px;
  border: 1px solid var(--red);
  color: var(--white);
  background: transparent;
  cursor: pointer;
  transition: background 0.25s, color 0.25s;
}

.nav-cta:hover {
  background: var(--red);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.nav-mobile.open {
  display: flex;
}

.nav-mobile a {
  font-family: var(--font-display);
  font-size: 3rem;
  letter-spacing: 0.1em;
  color: var(--white);
  transition: color 0.2s;
}

.nav-mobile a:hover {
  color: var(--red);
}

/* ============================================
   HERO
============================================ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #0a0000;
}

.hero-scanlines {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0,0,0,0.08) 2px,
    rgba(0,0,0,0.08) 4px
  );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: left;
  padding: 0 64px;
  max-width: 900px;
  width: 100%;
  margin-right: auto;
}

.hero-label {
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.45em;
  color: var(--red);
  margin-bottom: 20px;
  text-transform: uppercase;
  animation: fadeDown 0.8s 0.1s ease both;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(5rem, 16vw, 14rem);
  line-height: 0.9;
  letter-spacing: -0.01em;
  white-space: nowrap;
  color: var(--white);
  animation: fadeDown 0.8s 0.2s ease both;
}

.hero-title span {
  color: var(--red);
}

.hero-artist {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  letter-spacing: 0.3em;
  color: var(--white);
  margin-top: 12px;
  animation: fadeDown 0.8s 0.3s ease both;
}

.hero-chart {
  font-size: 0.75rem;
  letter-spacing: 0.4em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-top: 10px;
  margin-bottom: 4px;
  animation: fadeDown 0.8s 0.4s ease both;
}

.hero-chart span {
  color: var(--red);
  font-weight: 700;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  justify-content: flex-start;
  margin-top: 40px;
  animation: fadeDown 0.8s 0.5s ease both;
}

.btn-primary {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.2em;
  padding: 16px 48px;
  background: var(--red);
  color: var(--white);
  border: none;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s;
}

.btn-primary:hover {
  background: #e60000;
  transform: translateY(-2px);
}

.btn-ghost {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.2em;
  padding: 16px 48px;
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.25);
  cursor: pointer;
  transition: border-color 0.25s, transform 0.2s;
}

.btn-ghost:hover {
  border-color: var(--white);
  transform: translateY(-2px);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: fadeDown 1s 1.2s ease forwards;
  opacity: 0;
}

.hero-scroll-hint span {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--red), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ============================================
   SECTION BASE
============================================ */
section {
  padding: 100px 48px;
}

.section-header {
  margin-bottom: 64px;
}

.section-label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.5em;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  line-height: 1;
  letter-spacing: 0.02em;
}

.divider-line {
  width: 60px;
  height: 2px;
  background: var(--red);
  margin-top: 24px;
}

/* ============================================
   LANÇAMENTOS
============================================ */
#lancamentos {
  background: var(--gray);
  scroll-margin-top: 80px;
  padding-top: 120px;
}

.releases-controls {
  display: flex;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.filter-btn {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  padding: 10px 24px;
  border: 1px solid var(--gray-3);
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s;
}

.filter-btn:hover,
.filter-btn.active {
  border-color: var(--red);
  color: var(--white);
  background: rgba(204,0,0,0.08);
}

.releases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.release-card {
  background: var(--gray-2);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
  animation: fadeUp 0.6s ease forwards;
  opacity: 0;
}

.release-card:hover {
  transform: translateY(-6px);
}

.release-card:hover .release-overlay {
  opacity: 1;
}

/* Card com Spotify embed */
.release-card--spotify {
  padding: 0;
  overflow: hidden;
  background: #121212;
  cursor: default;
}

.release-card--spotify:hover {
  transform: translateY(-6px);
}

.release-card--spotify .release-year {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
}

.release-card--spotify .release-tag-top {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 3;
}

.release-card--spotify iframe {
  display: block;
  border-radius: 0;
}

/* Capa quadrada */
.spotify-cover {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: #111;
}

.spotify-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.release-card--spotify:hover .spotify-cover img {
  transform: scale(1.04);
}

.spotify-cover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.release-card--spotify:hover .spotify-cover-overlay {
  background: rgba(0,0,0,0.5);
}

.spotify-play-btn {
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.3s ease, transform 0.3s ease;
  background: #1DB954;
  border-radius: 50%;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.release-card--spotify:hover .spotify-play-btn {
  opacity: 1;
  transform: scale(1);
}

/* Card vazio "em breve" */
.release-card--empty {
  cursor: default;
  background: var(--gray-2);
  border: 1px dashed rgba(255,255,255,0.08);
}

.release-card--empty:hover {
  transform: none;
}

.empty-card-inner {
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.empty-label {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.15);
  text-transform: uppercase;
}

.empty-sub {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.08);
  text-transform: uppercase;
}

/* Mantém estilos antigos para compatibilidade */
.release-cover {
  aspect-ratio: 1;
  background: var(--gray-3);
  position: relative;
  overflow: hidden;
}

.release-cover-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 4rem;
  color: rgba(255,255,255,0.05);
  background: linear-gradient(135deg, var(--gray-2), var(--gray-3));
}

.release-info {
  padding: 16px;
}

.release-tag {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  color: var(--red);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 6px;
}

.release-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.release-artist {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.release-year {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  background: rgba(0,0,0,0.75);
  padding: 4px 10px;
  color: var(--text-muted);
}

/* ============================================
   ARTISTAS / SOBRE
============================================ */
#sobre {
  background: var(--black);
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 48px;
}

.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.sobre-text p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.9;
  margin-bottom: 20px;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.stat-block {
  border-left: 2px solid var(--red);
  padding-left: 18px;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  color: var(--white);
  line-height: 1;
}

.stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-top: 4px;
}

.sobre-visual {
  position: relative;
}

.sobre-img-wrap {
  position: relative;
  aspect-ratio: 3/4;
  background: var(--gray-2);
  overflow: hidden;
}

.sobre-img-wrap img {
  width: 70%;
  height: auto;
  object-fit: contain;
  margin: auto;
  position: absolute;
  inset: 0;
  display: block;
  filter: brightness(1);
}

.sobre-accent {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  border: 2px solid var(--red);
  opacity: 0.4;
  z-index: -1;
}

/* ============================================
   CONTATO
============================================ */
#contato {
  background: var(--gray-2);
  text-align: center;
  padding: 100px 48px;
}

.contato-inner {
  max-width: 640px;
  margin: 0 auto;
}

.contato-inner .section-label,
.contato-inner .section-title {
  text-align: center;
}

.contato-inner .divider-line {
  margin: 24px auto 40px;
}

.contato-inner p {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 48px;
  line-height: 1.8;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--gray-3);
  border: 1px solid rgba(255,255,255,0.07);
  color: var(--white);
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
}

.form-group select option {
  background: var(--gray-3);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.2em;
  padding: 18px;
  background: var(--red);
  color: var(--white);
  border: none;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s;
  margin-top: 8px;
}

.form-submit:hover {
  background: #e60000;
  transform: translateY(-2px);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 56px;
}

.social-link {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  color: var(--text-muted);
  transition: color 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.social-link svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.social-link:hover {
  color: var(--white);
}

/* ============================================
   FOOTER
============================================ */
footer {
  background: var(--black);
  border-top: 1px solid var(--gray-3);
  padding: 40px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-logo img {
  height: 32px;
  filter: brightness(0.6);
  transition: filter 0.3s;
}

.footer-logo img:hover {
  filter: brightness(1);
}

.footer-copy {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.footer-right {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.15);
}

.footer-right span {
  color: var(--red);
}

/* ============================================
   TICKER (marquee)
============================================ */
.ticker-wrap {
  overflow: hidden;
  background: var(--red);
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.ticker-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: ticker 28s linear infinite;
}

.ticker-item {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  padding: 0 40px;
  color: var(--white);
}

.ticker-item::after {
  content: '✦';
  margin-left: 40px;
  opacity: 0.6;
}

/* ============================================
   REVEAL ANIMATION
============================================ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   KEYFRAMES
============================================ */
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.1); }
}

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 900px) {
  section { padding: 80px 28px; }
  #sobre, #contato { padding: 80px 28px; }

  .sobre-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .sobre-visual { display: none; }

  .stats-row { grid-template-columns: repeat(2, 1fr); }

  footer { flex-direction: column; text-align: center; }
}

@media (max-width: 768px) {
  #lancamentos { padding-top: 90px; }
  #navbar {
    padding: 16px 24px;
    background: rgba(0,0,0,0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(204,0,0,0.25);
  }
  #navbar.scrolled { padding: 12px 24px; }

  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .hero-content {
    text-align: center;
    padding: 0 24px;
    margin: 0 auto;
  }

  .hero-cta-group {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .hero-release-badge {
    bottom: auto;
    top: auto;
    right: auto;
    position: relative;
    margin: 24px auto 0;
    width: fit-content;
  }

  .form-row { grid-template-columns: 1fr; }

  section {
    padding: 80px 20px;
  }

  #lancamentos {
    padding-top: 90px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .releases-grid {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    -webkit-columns: unset !important;
    gap: 20px;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .release-card,
  .release-card--spotify {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box;
  }

  .release-card--spotify iframe {
    width: 100% !important;
    max-width: 100% !important;
    height: 352px !important;
    min-width: 0 !important;
  }

  footer { padding: 32px 24px; }
}

@media (max-width: 480px) {
  .section-title { font-size: 2.8rem; }
  .stats-row { grid-template-columns: 1fr; }
}
