@font-face {
  font-family: 'BladeRunner';
  src: url('../fonts/bladerunner.woff2') format('woff2'),
       url('../fonts/bladerunner.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* Self-hosted DM Sans (replaces Google Fonts CDN) */
@font-face {
  font-family: 'DM Sans';
  src: url('../fonts/dm-sans-300.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'DM Sans';
  src: url('../fonts/dm-sans-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'DM Sans';
  src: url('../fonts/dm-sans-500.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/* Self-hosted Anton (replaces Google Fonts CDN) */
@font-face {
  font-family: 'Anton';
  src: url('../fonts/anton-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }

:root {
  --bg:           #05070f;
  --surface:      rgba(74,110,255,0.06);
  --border:       rgba(74,110,255,0.14);
  --border-hover: rgba(100,160,255,0.38);
  --text:         #e8edf5;
  --text-muted:   rgba(232,237,245,0.45);
  --text-dim:     rgba(232,237,245,0.22);
  --blue:         #4a6eff;
  --magenta:      #c040e8;
  --gold:         #f5c842;
  --blue-glow:    rgba(74,110,255,0.4);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── NAV ── */
body > nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  height: 64px;
  background: rgba(5,7,15,0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 0.5px solid rgba(74,110,255,0.10);
}

.nav-logo {
  font-family: 'BladeRunner', sans-serif;
  font-size: 22px;
  color: var(--text);
  letter-spacing: 0.12em;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 2.2rem;
  list-style: none;
}

.nav-links a {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

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

.nav-right {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}

.nav-social {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-social a {
  display: flex;
  color: var(--text-muted);
  transition: color 0.2s, opacity 0.2s;
  opacity: 0.85;
}

.nav-social a:hover { color: var(--text); opacity: 1; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 22px;
  height: 16px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  z-index: 101;
}

.nav-toggle span {
  display: block;
  height: 1.5px;
  width: 100%;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── HERO ── */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(6rem, 12vw, 9rem) clamp(1.5rem, 6vw, 5rem) clamp(4rem, 8vw, 6rem);
  position: relative;
  overflow: hidden;
}

/* Hero photo */
.hero-photo {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-photo.webp');
  background-size: auto 95vh;
  background-position: center 8%;
  z-index: 0;
}

/* Dark overlay so text is readable */
.hero-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(5,7,15,0.30) 0%,
      rgba(5,7,15,0.10) 25%,
      rgba(5,7,15,0.40) 65%,
      rgba(5,7,15,0.88) 100%),
    linear-gradient(to right,
      rgba(5,7,15,0.45) 0%,
      transparent 55%);
}

/* Animated city-night gradient mesh background */
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 15% 85%,  rgba(74,110,255,0.18) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 85% 20%,  rgba(192,64,232,0.14) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 50% 50%,  rgba(20,15,50,0.8)    0%, transparent 70%),
    linear-gradient(170deg, #08091a 0%, #05070f 50%, #0a050f 100%);
  animation: meshShift 12s ease-in-out infinite alternate;
}

@keyframes meshShift {
  0%   { background-position: 0% 0%, 100% 100%, 50% 50%, 0 0; }
  100% { background-position: 5% 10%, 95% 90%, 52% 48%, 0 0; }
}

/* Scanline overlay */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(0,0,0,0.07) 3px,
    rgba(0,0,0,0.07) 4px
  );
  pointer-events: none;
}

/* Top accent line */
.hero-line {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--blue) 25%,
    var(--gold) 50%,
    var(--magenta) 75%,
    transparent 100%);
  filter: blur(0.5px);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.hero-eyebrow {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 1.4rem;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.2s;
}

.hero-name {
  font-family: 'Anton', sans-serif;
  font-size: clamp(80px, 20vw, 340px);
  line-height: 0.85;
  letter-spacing: 0.1em;
  color: var(--text);
  margin-bottom: 1.8rem;
  opacity: 0;
  animation: fadeUp 1s ease forwards 0.35s;
  display: block;
  white-space: nowrap;
}

.hero-descriptor {
  font-size: clamp(13px, 2vw, 16px);
  font-weight: 300;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 2.8rem;
  opacity: 0;
  animation: fadeUp 0.9s ease forwards 0.55s;
}

.hero-descriptor strong {
  color: var(--text);
  font-weight: 400;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  opacity: 0;
  animation: fadeUp 0.9s ease forwards 0.72s;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: var(--text);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 100px;
  text-decoration: none;
  transition: opacity 0.15s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 0 24px rgba(74,110,255,0.35);
}

.btn-primary:hover {
  opacity: 0.88;
  transform: translateY(-1px);
  box-shadow: 0 0 40px rgba(74,110,255,0.55);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 100px;
  border: 0.5px solid var(--border);
  text-decoration: none;
  transition: color 0.2s, border-color 0.2s, transform 0.15s;
}

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

/* Scroll indicator */
.scroll-hint {
  position: absolute;
  bottom: 2rem;
  right: clamp(1.5rem, 6vw, 5rem);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeUp 1s ease forwards 1.1s;
}

.scroll-hint span {
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-dim);
  writing-mode: vertical-rl;
}

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

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

/* ── SECTION SHARED ── */
section {
  padding: clamp(5rem, 10vw, 8rem) clamp(1.5rem, 6vw, 5rem);
}

.page-section {
  padding-top: calc(64px + clamp(3rem, 8vw, 5rem));
}

.section-label {
  font-size: 13px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 500;
}

.section-label::after {
  content: '';
  flex: 1;
  max-width: 80px;
  height: 2px;
  background: var(--blue);
  opacity: 0.7;
  border-radius: 2px;
}

/* ── ABOUT ── */
#about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 8vw, 7rem);
  align-items: start;
}

.about-left { position: sticky; top: 90px; }

.about-heading {
  font-family: 'Anton', sans-serif;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.0;
  letter-spacing: 0.02em;
  margin-bottom: 0.4rem;
}

.about-heading em {
  font-style: normal;
  color: var(--text-muted);
  font-size: 0.55em;
  display: block;
  letter-spacing: 0.08em;
  margin-bottom: 0.6rem;
}

.about-right p {
  font-size: clamp(16px, 1.8vw, 19px);
  font-weight: 300;
  line-height: 1.85;
  color: rgba(232,237,245,0.70);
  margin-bottom: 1.4rem;
}

.about-right p strong {
  color: var(--text);
  font-weight: 500;
}


.about-photo-wrap {
  margin-top: 2rem;
  border-radius: 12px;
  overflow: hidden;
  border: 0.5px solid var(--border);
  position: relative;
  max-width: 420px;
}

.about-photo {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  filter: saturate(1.1) brightness(1.02);
}

/* Neon color grade overlay matching site palette */
.about-photo-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(74,110,255,0.10) 0%,
    transparent 50%,
    rgba(192,64,232,0.08) 100%
  );
  pointer-events: none;
}

/* ── RELEASES ── */
.releases-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.releases-heading {
  font-family: 'Anton', sans-serif;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.0;
  letter-spacing: 0.02em;
}

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

.release-card {
  background: var(--surface);
  border: 0.5px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: var(--text);
  display: block;
  transition: border-color 0.2s, transform 0.2s;
  position: relative;
}

.release-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
}

.release-card.featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 300px 1fr;
}

.release-cover {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}

.release-cover-placeholder {
  width: 100%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(74,110,255,0.12), rgba(192,64,232,0.08));
  position: relative;
  overflow: hidden;
}

.release-cover-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 20px,
    rgba(74,110,255,0.04) 20px,
    rgba(74,110,255,0.04) 21px
  );
}

.placeholder-title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(28px, 5vw, 42px);
  letter-spacing: 0.05em;
  color: rgba(232,237,245,0.18);
  z-index: 1;
  text-align: center;
  padding: 1rem;
}

.release-info {
  padding: 20px 22px 22px;
}

.release-card.featured .release-info {
  padding: 2.5rem 2.8rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.release-new {
  display: inline-block;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 0.5px solid rgba(245,200,66,0.4);
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 14px;
}

.release-title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(20px, 3vw, 28px);
  letter-spacing: 0.03em;
  margin-bottom: 6px;
  line-height: 1.1;
}

.release-card.featured .release-title {
  font-size: clamp(28px, 5vw, 48px);
  margin-bottom: 10px;
}

.release-meta {
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}

.release-listen {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  transition: gap 0.2s;
}

.release-card:hover .release-listen { gap: 11px; }

/* ── DISCOGRAPHY GRID (full catalog, archive-style) ── */
.discography-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
  margin: 3.5rem 0 1.6rem;
}

.discography-heading::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.discography-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 20px 18px;
}

.discography-item {
  display: block;
  text-decoration: none;
  color: var(--text);
}

.discography-cover-wrap {
  position: relative;
  aspect-ratio: 1;
  border-radius: 10px;
  overflow: hidden;
  border: 0.5px solid var(--border);
  background: var(--surface);
}

.discography-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.discography-item:hover .discography-cover { transform: scale(1.05); }

.discography-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(5,7,15,0);
  transition: background 0.2s ease;
}

.discography-play::after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 0 8px 13px;
  border-color: transparent transparent transparent #ffffff;
  opacity: 0;
  transform: scale(0.85);
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.45));
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.discography-item:hover .discography-play {
  background: rgba(5,7,15,0.35);
}

.discography-item:hover .discography-play::after {
  opacity: 1;
  transform: scale(1);
}

.discography-info { padding-top: 10px; }

.discography-title {
  font-family: 'Anton', sans-serif;
  font-size: 14px;
  letter-spacing: 0.02em;
  margin-bottom: 3px;
  line-height: 1.15;
}

.discography-meta {
  font-size: 10px;
  color: var(--text-dim);
  letter-spacing: 0.04em;
}

@media (max-width: 500px) {
  .discography-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── PRESS / CONTACT ── */
.press-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.press-heading {
  font-family: 'Anton', sans-serif;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.0;
  letter-spacing: 0.02em;
  margin-bottom: 1.6rem;
}

.press-body {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(232,237,245,0.60);
  margin-bottom: 2rem;
}

.press-contact-block {
  background: var(--surface);
  border: 0.5px solid var(--border);
  border-radius: 16px;
  padding: 2rem 2.2rem;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 14px 0;
  border-bottom: 0.5px solid var(--border);
}

.contact-item:last-child { border-bottom: none; padding-bottom: 0; }
.contact-item:first-child { padding-top: 0; }

.contact-label {
  font-size: 9.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.contact-value {
  font-size: 14px;
  color: var(--text);
  font-weight: 400;
  text-decoration: none;
  transition: color 0.2s;
}

.contact-value:hover { color: var(--blue); }

/* ── SOCIAL ── */
.social-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.8rem;
}

.social-heading {
  font-family: 'Anton', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.0;
  letter-spacing: 0.02em;
}

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

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--surface);
  border: 0.5px solid var(--border);
  border-radius: 100px;
  padding: 12px 22px;
  color: var(--text-muted);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: color 0.2s, border-color 0.2s, background 0.2s, transform 0.15s;
}

.social-link:hover {
  color: var(--text);
  border-color: var(--border-hover);
  background: rgba(74,110,255,0.08);
  transform: translateY(-2px);
}


/* ── CONTACT FORM ── */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

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

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

.form-group label {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-group input,
.form-group textarea,
.form-group select {
  background: rgba(74,110,255,0.05);
  border: 0.5px solid var(--border);
  border-radius: 10px;
  padding: 13px 16px;
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 300;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-dim);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  background: rgba(74,110,255,0.08);
}

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

.form-required {
  font-size: 9px;
  color: var(--text-dim);
  letter-spacing: 0.1em;
  margin-top: -4px;
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--blue);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 15px 36px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: opacity 0.15s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 0 20px rgba(74,110,255,0.30);
  align-self: flex-start;
  margin-top: 4px;
}

.btn-submit:hover {
  opacity: 0.88;
  transform: translateY(-1px);
  box-shadow: 0 0 36px rgba(74,110,255,0.50);
}

.form-success {
  display: none;
  padding: 16px 20px;
  background: rgba(74,110,255,0.10);
  border: 0.5px solid var(--blue);
  border-radius: 10px;
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
}

/* ── FOOTER ── */
footer {
  border-top: 1.5px solid var(--border);
  padding: 2.5rem clamp(1.5rem, 6vw, 5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-logo {
  font-family: 'BladeRunner', sans-serif;
  font-size: 16px;
  color: var(--text-dim);
  letter-spacing: 0.12em;
}

.footer-copy {
  font-size: 10.5px;
  color: var(--text-dim);
  letter-spacing: 0.06em;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* ── MOBILE ── */
@media (max-width: 700px) {
  #about, #about-preview {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .about-left { position: static; }
  .release-card.featured {
    grid-template-columns: 1fr;
  }
  .press-grid { grid-template-columns: 1fr; }

  .nav-toggle { display: flex; }
  .nav-social { display: none; }

  .nav-links {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(5,7,15,0.97);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 0.5px solid var(--border);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.25s ease, opacity 0.2s ease;
  }

  .nav-links.open {
    max-height: 320px;
    opacity: 1;
  }

  .nav-links li { width: 100%; }
  .nav-links li:first-child a { padding-top: 1.4rem; }
  .nav-links li:last-child a { padding-bottom: 1.4rem; }

  .nav-links a {
    display: block;
    padding: 14px clamp(1.5rem, 6vw, 5rem);
  }
}

@media (max-width: 500px) {
  .releases-grid { grid-template-columns: 1fr; }
}
