:root {
  --bg: #061113;
  --panel: #0f1d20;
  --panel-soft: #13282d;
  --text: #eef6f7;
  --muted: #9eb0b4;
  --brand: #3b7078;
  --accent: #a8c7b7;
  --border: #23424a;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Nunito", "Open Sans", system-ui, sans-serif;
  line-height: 1.55;
  font-size: 1rem;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 70% 55% at 15% 10%, rgba(59, 112, 120, 0.14), transparent 55%),
    radial-gradient(ellipse 55% 45% at 88% 85%, rgba(168, 199, 183, 0.07), transparent 50%);
  animation: ambientDrift 16s ease-in-out infinite alternate;
}

.site-header,
main,
.site-footer {
  position: relative;
  z-index: 1;
}

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

a {
  color: var(--accent);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(6, 17, 19, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav {
  width: min(var(--max), 92vw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
}

.brand {
  color: var(--text);
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  letter-spacing: 0.03em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.92rem;
}

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

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

.nav-cta {
  color: var(--text) !important;
  border: 1px solid var(--border);
  padding: 0.4rem 0.75rem;
  border-radius: 0.5rem;
}

main {
  width: min(var(--max), 92vw);
  margin: 0 auto;
}

/* Hero — portrait left */
.hero {
  padding: 2.5rem 0 3.5rem;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(240px, 340px) 1fr;
  gap: 2.5rem;
  align-items: center;
}

.portrait-wrap {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 3 / 4;
  background: var(--panel);
  transform: translateY(var(--parallax, 0));
  transition: transform 0.1s linear;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
}

.portrait-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 17, 19, 0.45), transparent 40%);
  pointer-events: none;
  z-index: 1;
}

.portrait {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  animation: heroKenBurns 22s ease-in-out infinite alternate;
  will-change: transform;
}

.eyebrow {
  margin: 0 0 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 600;
}

.hero-content h1 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.hero-lead {
  margin: 0.75rem 0 0;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--text);
  max-width: 42ch;
  line-height: 1.4;
}

.hero-copy {
  margin: 1rem 0 0;
  color: var(--muted);
  max-width: 52ch;
  font-size: 1.02rem;
}

.hero-actions {
  margin-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.hero-badges {
  margin-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.badge {
  font-size: 0.8rem;
  color: var(--accent);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
  background: rgba(59, 112, 120, 0.12);
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.2rem;
  border-radius: 0.55rem;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--brand);
  color: #fff;
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(59, 112, 120, 0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

/* Sections */
.section {
  padding: 3rem 0;
  border-top: 1px solid var(--border);
}

.section-heading h2 {
  margin: 0 0 0.35rem;
  font-size: 1.65rem;
  font-weight: 700;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
}

/* Listen */
.player-now {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem 1.25rem;
  align-items: center;
  padding: 1.25rem;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 1rem;
}

.play-btn {
  grid-row: span 2;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  border: none;
  background: var(--brand);
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
}

.player-label {
  margin: 0;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
}

.player-title {
  margin: 0.2rem 0 0;
  font-weight: 700;
  font-size: 1.15rem;
}

.player-project {
  margin: 0.15rem 0 0;
  font-size: 0.85rem;
  color: var(--accent);
}

.player-meta {
  margin: 0.25rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.player-progress-wrap {
  grid-column: 1 / -1;
  height: 3px;
  background: var(--border);
  border-radius: 999px;
  overflow: hidden;
}

.player-progress-bar {
  height: 100%;
  width: 0;
  background: var(--accent);
  transition: width 0.15s linear;
}

.track-filters {
  margin-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.filter-btn {
  font-family: inherit;
  font-size: 0.8rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
}

.filter-btn.is-active,
.filter-btn:hover {
  color: var(--text);
  border-color: var(--brand);
  background: rgba(59, 112, 120, 0.2);
}

.track-row.is-playing {
  border-color: var(--brand);
  background: rgba(59, 112, 120, 0.12);
}

.player-now .wave {
  grid-column: 1 / -1;
  display: flex;
  align-items: flex-end;
  gap: 0.25rem;
  height: 2.5rem;
}

.wave span {
  flex: 1;
  border-radius: 999px;
  background: var(--brand);
  opacity: 0.85;
  transform-origin: bottom center;
  animation: waveIdle 2.4s ease-in-out infinite;
}

.wave span:nth-child(1) { height: 35%; animation-delay: 0s; }
.wave span:nth-child(2) { height: 55%; animation-delay: 0.15s; }
.wave span:nth-child(3) { height: 40%; animation-delay: 0.3s; }
.wave span:nth-child(4) { height: 70%; animation-delay: 0.45s; }
.wave span:nth-child(5) { height: 50%; animation-delay: 0.6s; }
.wave span:nth-child(6) { height: 65%; animation-delay: 0.75s; }
.wave span:nth-child(7) { height: 45%; animation-delay: 0.9s; }
.wave span:nth-child(8) { height: 60%; animation-delay: 1.05s; }
.wave span:nth-child(9) { height: 38%; animation-delay: 1.2s; }
.wave span:nth-child(10) { height: 52%; animation-delay: 1.35s; }

.player-now.is-playing .wave span {
  animation: waveActive 0.55s ease-in-out infinite alternate;
}

.player-now.is-playing {
  border-color: rgba(168, 199, 183, 0.35);
  box-shadow: 0 0 0 1px rgba(59, 112, 120, 0.25), 0 12px 32px rgba(0, 0, 0, 0.25);
}

.player-now.is-playing .play-btn {
  animation: pulsePlay 2s ease-in-out infinite;
}

.track-list {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.track-row {
  display: grid;
  grid-template-columns: 2rem 1fr auto;
  gap: 0.75rem;
  align-items: center;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  background: rgba(15, 29, 32, 0.5);
}

.track-row h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
}

.track-num {
  color: var(--muted);
  font-size: 0.85rem;
  font-variant-numeric: tabular-nums;
}

.chips {
  margin-top: 0.35rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.chip {
  font-size: 0.72rem;
  padding: 0.2rem 0.5rem;
  border-radius: 0.35rem;
  background: rgba(168, 199, 183, 0.12);
  color: var(--accent);
  border: 1px solid var(--border);
}

.play-sm {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--accent);
  cursor: pointer;
  font-size: 0.7rem;
}

/* Work grid */
.work-grid-awards {
  margin-top: 1.5rem;
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(3, 1fr);
}

.project-spotlight {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 1rem;
  overflow: hidden;
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s ease,
    border-color 0.45s ease;
}

.project-spotlight:hover {
  transform: translateY(-6px);
  border-color: rgba(168, 199, 183, 0.35);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.project-spotlight .project-poster {
  aspect-ratio: 3 / 4;
  min-height: 280px;
}

.project-spotlight .project-poster img {
  animation: posterDrift 20s ease-in-out infinite;
  transform-origin: center center;
  will-change: transform;
}

.project-spotlight:nth-child(2) .project-poster img {
  animation-delay: -7s;
}

.project-spotlight:nth-child(3) .project-poster img {
  animation-delay: -14s;
}

.project-compact {
  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.4s ease;
}

.project-compact:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.28);
}

.project-compact .project-poster img,
.project-upcoming .project-poster img {
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.project-compact:hover .project-poster img,
.project-upcoming:hover .project-poster img {
  transform: scale(1.07);
}

.project-upcoming {
  transition:
    transform 0.45s ease,
    box-shadow 0.45s ease;
}

.project-upcoming:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.3);
}

.project-upcoming .project-poster img {
  animation: posterDrift 24s ease-in-out infinite;
}

.project-spotlight .project-body h3 {
  font-size: 1.35rem;
}

.work-grid {
  margin-top: 1.5rem;
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
}

.section-upcoming {
  border-top: 1px solid var(--border);
}

.project-upcoming {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 1.5rem;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 1rem;
  overflow: hidden;
  max-width: 920px;
}

.project-poster-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  aspect-ratio: auto;
  background: rgba(59, 112, 120, 0.22);
  text-align: center;
  padding: 1.5rem;
}

.poster-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.poster-sub {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: var(--accent);
}

.chip-preview {
  border-color: var(--brand);
  color: #fff;
  background: rgba(59, 112, 120, 0.45);
}

.project-featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 1.5rem;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 1rem;
  overflow: hidden;
}

.project:not(.project-featured) {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 1rem;
  overflow: hidden;
}

.project-poster {
  aspect-ratio: 16 / 10;
  background: #0a1518;
  overflow: hidden;
}

.project-featured .project-poster {
  aspect-ratio: auto;
  min-height: 280px;
}

.project-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.project-body {
  padding: 1.25rem 1.25rem 1.5rem;
}

.project:not(.project-featured) .project-body {
  padding: 1rem 1.1rem 1.25rem;
}

.project-tag {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
}

.project-body h3 {
  margin: 0;
  font-size: 1.25rem;
}

.project-featured .project-body h3 {
  font-size: 1.5rem;
}

.project-credit,
.project-outcome {
  margin: 0.4rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.project-outcome {
  color: var(--accent);
}

.project-approach {
  margin: 0.75rem 0 0;
  font-size: 0.98rem;
}

.project-logline {
  margin: 0.65rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.45;
}

.work-grid-more {
  margin-top: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.project-compact .project-poster {
  aspect-ratio: 3 / 4;
  max-height: 200px;
}

.project-compact .project-body h3 {
  font-size: 1.05rem;
}

.project-compact .project-logline {
  font-size: 0.88rem;
}

.project-compact .project-outcome {
  font-size: 0.85rem;
  margin-top: 0.5rem;
}

.text-link {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.92rem;
  text-decoration: none;
  font-weight: 600;
}

.text-link:hover {
  text-decoration: underline;
}

/* Collaboration */
.collab-grid {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.collab-card {
  padding: 1.25rem;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 1rem;
}

.collab-card h3 {
  margin: 0 0 0.5rem;
}

.collab-card p {
  margin: 0 0 0.75rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.collab-card ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--text);
  font-size: 0.92rem;
}

.collab-card li {
  margin-bottom: 0.35rem;
}

.collab-note {
  margin: 1rem 0 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.collab-intro {
  margin: 0;
  max-width: 42rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.55;
}

.team-heading {
  margin-top: 2rem;
}

.team-heading h3 {
  margin: 0 0 0.35rem;
  font-size: 1.2rem;
}

.team-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.team-grid {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.team-member {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 1.1rem;
  padding: 1.25rem;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 1rem;
  transition:
    transform 0.4s ease,
    border-color 0.4s ease,
    box-shadow 0.4s ease;
}

.team-member:hover {
  transform: translateY(-4px);
  border-color: rgba(168, 199, 183, 0.3);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.25);
}

.team-member:hover .team-photo img {
  transform: scale(1.05);
}

.team-photo {
  display: block;
  border-radius: 0.75rem;
  overflow: hidden;
  background: #0a1518;
  aspect-ratio: 3 / 4;
  min-height: 180px;
}

.team-body h4 a {
  color: inherit;
  text-decoration: none;
}

.team-body h4 a:hover {
  color: var(--accent);
}

.team-link {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
}

.team-link:hover {
  text-decoration: underline;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.team-body h4 {
  margin: 0 0 0.25rem;
  font-size: 1.1rem;
}

.team-role {
  margin: 0 0 0.65rem;
  color: var(--accent);
  font-size: 0.88rem;
  font-weight: 600;
}

.team-bio {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

/* Reels */
.section-muted {
  background: rgba(15, 29, 32, 0.35);
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: calc(50vw - min(var(--max), 92vw) / 2);
  padding-right: calc(50vw - min(var(--max), 92vw) / 2);
}

.reel-cards {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.reel-card {
  padding: 1.25rem;
  border: 1px solid var(--border);
  border-radius: 1rem;
  background: var(--panel);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s;
}

.reel-card:hover {
  border-color: var(--brand);
}

.reel-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
}

.reel-card h3 {
  margin: 0.35rem 0 0.25rem;
}

.reel-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

/* About + contact */
.about-band {
  border-top: none;
}

.about-inner {
  max-width: 62ch;
}

.about-inner h2 {
  margin: 0 0 0.75rem;
}

.about-inner p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.also-strip {
  padding: 1.25rem 0 2rem;
  border-top: 1px solid var(--border);
}

.also-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.5rem 1rem;
  padding: 1rem 1.15rem;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  background: rgba(15, 29, 32, 0.45);
}

.also-label {
  margin: 0;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  font-weight: 700;
}

.also-text {
  margin: 0;
  flex: 1;
  min-width: min(100%, 280px);
  color: var(--muted);
  font-size: 0.95rem;
}

.also-text strong {
  color: var(--text);
  font-weight: 600;
}

.also-link {
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.also-link:hover {
  text-decoration: underline;
}

.contact-band {
  text-align: center;
  padding: 3.5rem 1.5rem;
  margin: 2rem calc(50% - 50vw) 0;
  width: 100vw;
  max-width: 100vw;
  background: var(--panel);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.contact-band h2 {
  margin: 0;
  font-size: clamp(1.4rem, 3vw, 2rem);
}

.contact-band > p {
  color: var(--muted);
  max-width: 40ch;
  margin: 0.75rem auto 0;
}

.contact-band .btn {
  margin-top: 1.5rem;
}

.contact-email {
  margin-top: 1rem !important;
  font-size: 0.9rem;
}

.site-footer {
  width: min(var(--max), 92vw);
  margin: 0 auto;
  padding: 2rem 0 3rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.footer-links {
  margin: 0;
}

/* Motion */
@keyframes ambientDrift {
  from {
    opacity: 0.85;
    transform: scale(1) translate(0, 0);
  }
  to {
    opacity: 1;
    transform: scale(1.04) translate(-1%, 1%);
  }
}

@keyframes heroKenBurns {
  from {
    transform: scale(1) translate(0, 0);
  }
  to {
    transform: scale(1.08) translate(-2%, -1.5%);
  }
}

@keyframes posterDrift {
  0%,
  100% {
    transform: scale(1.06) translate(0, 0);
  }
  50% {
    transform: scale(1.1) translate(-1.5%, -1%);
  }
}

@keyframes waveIdle {
  0%,
  100% {
    transform: scaleY(0.85);
    opacity: 0.55;
  }
  50% {
    transform: scaleY(1);
    opacity: 0.85;
  }
}

@keyframes waveActive {
  from {
    transform: scaleY(0.35);
    opacity: 0.65;
  }
  to {
    transform: scaleY(1.15);
    opacity: 1;
  }
}

@keyframes pulsePlay {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(59, 112, 120, 0.45);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(59, 112, 120, 0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0s);
}

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

.hero.reveal.is-visible {
  transform: none;
}

.reduce-motion *,
.reduce-motion *::before,
.reduce-motion *::after {
  animation: none !important;
  transition: none !important;
}

.reduce-motion .reveal {
  opacity: 1;
  transform: none;
}

@media (max-width: 900px) {
  .hero-layout {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin: 0 auto;
  }

  .hero-content {
    text-align: left;
  }

  .project-upcoming {
    grid-template-columns: 1fr;
  }

  .work-grid-awards,
  .work-grid {
    grid-template-columns: 1fr;
  }

  .project-featured {
    grid-template-columns: 1fr;
  }

  .collab-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .team-member {
    grid-template-columns: 1fr;
  }

  .team-photo {
    max-width: 200px;
  }

  .reel-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
  }

  .nav-links {
    flex-wrap: wrap;
    gap: 0.75rem;
  }

  .player-now {
    grid-template-columns: auto 1fr;
  }

  .play-btn {
    grid-row: auto;
  }
}
