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

:root {
  --bg: #050505;
  --bg-card: #0a0a0a;
  --bg-card-hover: #111;
  --text: #999;
  --text-bright: #ccc;
  --heading: #e0e0e0;
  --accent: #8b0000;
  --accent-glow: rgba(139, 0, 0, 0.5);
  --accent2: #4a0e4e;
  --border: #1a1a1a;
  --font-mono: 'Share Tech Mono', monospace;
  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: var(--accent); text-decoration: none; }
a:hover { color: #c00; }
.hidden { display: none !important; }

/* === SCANLINES === */
.scanlines {
  position: fixed; inset: 0; z-index: 9999;
  pointer-events: none;
  background: repeating-linear-gradient(
    0deg,
    rgba(0,0,0,0) 0px,
    rgba(0,0,0,0) 1px,
    rgba(0,0,0,0.08) 1px,
    rgba(0,0,0,0.08) 2px
  );
}

/* === GLITCH EFFECTS === */
.glitch {
  font-family: var(--font-mono);
  font-size: clamp(4.5rem, 18vw, 12rem);
  color: var(--heading);
  position: relative;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  animation: flicker 1.5s infinite;
  text-shadow: 0 0 10px rgba(255,255,255,0.05);
}

.glitch::before, .glitch::after {
  content: attr(data-text);
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
}

.glitch::before {
  color: #555;
  animation: glitch-1 0.8s infinite linear;
  clip-path: inset(0 0 65% 0);
  opacity: 0.8;
  text-shadow: -3px 0 rgba(139,0,0,0.3), 3px 0 rgba(74,14,78,0.3);
}

.glitch::after {
  color: #444;
  animation: glitch-2 0.6s infinite linear;
  clip-path: inset(35% 0 0 0);
  opacity: 0.8;
  text-shadow: 3px 0 rgba(139,0,0,0.2), -3px 0 rgba(74,14,78,0.2);
}

@keyframes glitch-1 {
  0% { transform: translate(0); clip-path: inset(0 0 65% 0); }
  5% { transform: translate(-10px, 5px) skewX(-5deg); }
  10% { transform: translate(8px, -3px) skewX(3deg); clip-path: inset(10% 0 50% 0); }
  15% { transform: translate(-5px, 2px) skewX(-2deg); }
  20% { transform: translate(0); clip-path: inset(0 0 65% 0); }
  25% { transform: translate(12px, -4px) skewX(6deg); clip-path: inset(5% 0 60% 0); }
  30% { transform: translate(-8px, 3px) skewX(-4deg); }
  35% { transform: translate(0); clip-path: inset(0 0 65% 0); }
  40%, 65% { transform: translate(0); }
  66% { transform: translate(-15px, 6px) skewX(-8deg); clip-path: inset(15% 0 45% 0); }
  68% { transform: translate(10px, -5px) skewX(4deg); }
  70% { transform: translate(-6px, 2px); clip-path: inset(0 0 65% 0); }
  72%, 100% { transform: translate(0); }
}

@keyframes glitch-2 {
  0% { transform: translate(0); clip-path: inset(35% 0 0 0); }
  3% { transform: translate(8px, -4px) skewX(4deg); }
  6% { transform: translate(-12px, 3px) skewX(-6deg); clip-path: inset(40% 0 0 0); }
  9% { transform: translate(5px, -2px); }
  12% { transform: translate(0); clip-path: inset(35% 0 0 0); }
  15% { transform: translate(-10px, 5px) skewX(-3deg); clip-path: inset(30% 0 0 0); }
  18% { transform: translate(7px, -3px) skewX(5deg); }
  21% { transform: translate(0); clip-path: inset(35% 0 0 0); }
  24%, 55% { transform: translate(0); }
  56% { transform: translate(14px, -6px) skewX(7deg); clip-path: inset(25% 0 0 0); }
  58% { transform: translate(-8px, 4px) skewX(-5deg); }
  60% { transform: translate(0); clip-path: inset(35% 0 0 0); }
  62%, 100% { transform: translate(0); }
}

@keyframes flicker {
  0%, 100% { opacity: 1; }
  5% { opacity: 0.6; }
  6% { opacity: 1; }
  10% { opacity: 0.3; }
  11% { opacity: 1; }
  30% { opacity: 0.85; }
  31% { opacity: 1; }
  50% { opacity: 0.7; }
  51% { opacity: 1; }
  55% { opacity: 0.4; }
  56% { opacity: 0.9; }
  57% { opacity: 0.2; }
  58% { opacity: 1; }
  80% { opacity: 0.8; }
  81% { opacity: 0.5; }
  82% { opacity: 1; }
  90% { opacity: 0.7; }
  91% { opacity: 1; }
}

.glitch-text {
  position: relative;
  animation: text-glitch 5s infinite;
}

.tag-glitch {
  display: inline-block;
  animation: tag-flicker 6s infinite;
  animation-delay: calc(var(--i, 0) * 1.5s);
}
.tag-glitch:nth-child(1) { --i: 0; }
.tag-glitch:nth-child(3) { --i: 1; }
.tag-glitch:nth-child(5) { --i: 2; }
.tag-glitch:nth-child(7) { --i: 3; }

@keyframes tag-flicker {
  0%, 94%, 100% { opacity: 1; transform: translate(0); }
  95% { opacity: 0.3; transform: translate(-2px, 1px); }
  96% { opacity: 1; transform: translate(1px, -1px); }
  97% { opacity: 0.6; transform: translate(-1px, 0); }
}

@keyframes text-glitch {
  0%, 96%, 100% { transform: translate(0); }
  97% { transform: translate(-3px, 1px); }
  98% { transform: translate(2px, -1px); }
  99% { transform: translate(-1px, 2px); }
}

.glitch-hover {
  position: relative;
  transition: all 0.1s;
}
.glitch-hover:hover {
  animation: btn-glitch 0.3s infinite;
  text-shadow: -2px 0 var(--accent), 2px 0 var(--accent2);
}
@keyframes btn-glitch {
  0% { transform: translate(0); }
  25% { transform: translate(-1px, 1px); }
  50% { transform: translate(1px, -1px); }
  75% { transform: translate(-1px, -1px); }
  100% { transform: translate(0); }
}

/* === HERO === */
.hero {
  position: relative;
  height: 100vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: -10%; left: -10%;
  width: 120%; height: 120%;
  z-index: 0;
  overflow: visible;
}

.hero-bg-img {
  position: absolute;
  object-fit: cover;
  opacity: 0;
  filter: grayscale(60%) contrast(1.4) brightness(0.5);
  transition: opacity 0.2s;
  animation: bg-glitch 0.2s steps(1) infinite paused;
}

.hero-bg-img.active {
  opacity: 1;
  animation-play-state: running;
}

/* Varied sizes - some massive/overflow, some partial */
.hero-bg-img:nth-child(1)  { width: 120%; height: 130%; top: -15%; left: -10%; }
.hero-bg-img:nth-child(2)  { width: 45%; height: 70%; top: 10%; left: 55%; }
.hero-bg-img:nth-child(3)  { width: 110%; height: 120%; top: -10%; left: -5%; }
.hero-bg-img:nth-child(4)  { width: 35%; height: 55%; top: 5%; left: 0; }
.hero-bg-img:nth-child(5)  { width: 130%; height: 140%; top: -20%; left: -15%; }
.hero-bg-img:nth-child(6)  { width: 50%; height: 80%; top: 15%; left: 25%; }
.hero-bg-img:nth-child(7)  { width: 30%; height: 50%; top: 0; left: 70%; }
.hero-bg-img:nth-child(8)  { width: 115%; height: 125%; top: -12%; left: -8%; }
.hero-bg-img:nth-child(9)  { width: 40%; height: 65%; top: 20%; left: 10%; }
.hero-bg-img:nth-child(10) { width: 55%; height: 75%; top: 5%; left: 40%; }
.hero-bg-img:nth-child(11) { width: 125%; height: 135%; top: -18%; left: -12%; }
.hero-bg-img:nth-child(12) { width: 35%; height: 60%; top: 25%; left: 60%; }
.hero-bg-img:nth-child(13) { width: 45%; height: 70%; top: 0; left: 5%; }
.hero-bg-img:nth-child(14) { width: 120%; height: 130%; top: -15%; left: -10%; }
.hero-bg-img:nth-child(15) { width: 40%; height: 55%; top: 30%; left: 50%; }
.hero-bg-img:nth-child(16) { width: 110%; height: 120%; top: -10%; left: -5%; }
.hero-bg-img:nth-child(17) { width: 50%; height: 65%; top: 10%; left: 20%; }
.hero-bg-img:nth-child(18) { width: 30%; height: 45%; top: 5%; left: 65%; }
.hero-bg-img:nth-child(19) { width: 130%; height: 140%; top: -20%; left: -15%; }
.hero-bg-img:nth-child(20) { width: 45%; height: 75%; top: 15%; left: 0; }
.hero-bg-img:nth-child(21) { width: 120%; height: 130%; top: -15%; left: -10%; }
.hero-bg-img:nth-child(22) { width: 55%; height: 60%; top: 0; left: 45%; }
.hero-bg-img:nth-child(23) { width: 40%; height: 70%; top: 20%; left: 30%; }
.hero-bg-img:nth-child(24) { width: 115%; height: 125%; top: -12%; left: -8%; }
.hero-bg-img:nth-child(25) { width: 35%; height: 50%; top: 10%; left: 0; }
.hero-bg-img:nth-child(26) { width: 125%; height: 135%; top: -18%; left: -12%; }
.hero-bg-img:nth-child(27) { width: 50%; height: 55%; top: 5%; left: 50%; }
.hero-bg-img:nth-child(28) { width: 40%; height: 65%; top: 15%; left: 15%; }
.hero-bg-img:nth-child(29) { width: 120%; height: 130%; top: -15%; left: -10%; }
.hero-bg-img:nth-child(30) { width: 45%; height: 60%; top: 0; left: 55%; }

@keyframes bg-glitch {
  0% { transform: translate(0) scale(1); filter: grayscale(60%) contrast(1.4) brightness(0.55); }
  20% { transform: translate(-8px, 4px) scale(1.03); filter: grayscale(80%) contrast(1.8) brightness(0.4); }
  40% { transform: translate(5px, -3px) scale(0.98); filter: grayscale(40%) contrast(1.6) brightness(0.6) hue-rotate(15deg); }
  60% { transform: translate(-3px, -5px) scale(1.02); filter: grayscale(70%) contrast(1.2) brightness(0.45); }
  80% { transform: translate(6px, 2px) scale(1); filter: grayscale(50%) contrast(1.5) brightness(0.5) hue-rotate(-8deg); }
  100% { transform: translate(0) scale(1); filter: grayscale(60%) contrast(1.4) brightness(0.55); }
}

.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(5,5,5,0.2) 0%, rgba(5,5,5,0.6) 60%, var(--bg) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 1rem;
}

.tagline {
  font-family: var(--font-mono);
  font-size: 1.2rem;
  color: var(--text);
  margin-top: 0.5rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.genre-tags {
  font-family: var(--font-mono);
  font-size: 1.05rem;
  color: #555;
  margin-top: 0.75rem;
  letter-spacing: 0.15em;
}

.tag-sep { margin: 0 0.5rem; color: #333; }

.hero-stats {
  margin-top: 1rem;
  font-family: var(--font-mono);
  font-size: 1.05rem;
  color: #444;
}

.hero-stats .separator { margin: 0 0.75rem; }

.yt-button {
  display: inline-block;
  margin-top: 1.2rem;
  padding: 0.6rem 1.8rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--heading);
  border: 1px solid #333;
  background: transparent;
  transition: all 0.3s;
}

.yt-button:hover {
  border-color: var(--accent);
  box-shadow: 0 0 15px var(--accent-glow);
  color: #fff;
}

/* === SECTIONS === */
.section {
  padding: 3rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-family: var(--font-mono);
  font-size: 1.2rem;
  color: var(--heading);
  text-transform: uppercase;
  letter-spacing: 0.25em;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.5rem;
  text-align: center;
}

/* === TAPE DECK PLAYER === */
.tape-deck {
  background: #0c0c0c;
  border: 1px solid var(--border);
  max-width: 500px;
  margin: 0 auto 2rem;
  font-family: var(--font-mono);
}

.deck-header {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.deck-label {
  font-size: 0.55rem;
  color: #444;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  white-space: nowrap;
}

.deck-title {
  font-size: 0.8rem;
  color: var(--heading);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  animation: flicker 4s infinite;
}

.deck-body { padding: 1rem; }

.deck-reels {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.reel {
  width: 50px; height: 50px;
  border-radius: 50%;
  border: 2px solid #222;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #080808;
}

.reel-inner {
  width: 20px; height: 20px;
  border-radius: 50%;
  border: 2px solid #333;
  background: #0a0a0a;
}

.reel.spinning { animation: spin 1.5s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

.deck-window {
  flex: 1;
  height: 50px;
  background: #080808;
  border: 1px solid #1a1a1a;
  position: relative;
  overflow: hidden;
}

.tape-strip {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 6px;
  background: repeating-linear-gradient(90deg, #333 0px, #333 4px, #1a1a1a 4px, #1a1a1a 8px);
  width: 200%;
  animation: tape-move 2s linear infinite paused;
}

.tape-strip.playing { animation-play-state: running; }

@keyframes tape-move {
  0% { transform: translateY(-50%) translateX(0); }
  100% { transform: translateY(-50%) translateX(-50%); }
}

.deck-controls {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.deck-btn {
  background: #111;
  border: 1px solid #222;
  color: #666;
  width: 40px; height: 32px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.deck-btn:hover { border-color: var(--accent); color: var(--heading); }
.deck-btn.active { border-color: var(--accent); color: var(--accent); box-shadow: 0 0 8px var(--accent-glow); }

.deck-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.6rem;
  color: #444;
  letter-spacing: 0.1em;
}

.yt-embed-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

/* === CONTROLS === */
.controls {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
  font-family: var(--font-mono);
  justify-content: center;
}

.control-group {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.label {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #444;
  margin-right: 0.25rem;
}

.ctrl-btn {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0.35rem 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: all 0.2s;
}

.ctrl-btn:hover { border-color: #333; color: var(--heading); }
.ctrl-btn.active {
  border-color: var(--accent);
  color: var(--heading);
  background: rgba(139,0,0,0.12);
}

/* === HORIZONTAL TRACK SCROLL === */
.track-scroll-container {
  position: relative;
  margin: 0 -1.5rem;
  padding: 0 3rem;
  overflow: hidden;
}

.scroll-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(139,0,0,0.6);
  border: 1px solid var(--accent);
  color: var(--heading);
  width: 36px; height: 60px;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
}
.scroll-arrow:hover { background: var(--accent); box-shadow: 0 0 15px var(--accent-glow); }
.scroll-left { left: 0; }
.scroll-right { right: 0; }

.track-scroll {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding: 1rem 0 1.5rem;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: #222 transparent;
}

.track-scroll::-webkit-scrollbar { height: 4px; }
.track-scroll::-webkit-scrollbar-track { background: transparent; }
.track-scroll::-webkit-scrollbar-thumb { background: #222; border-radius: 2px; }

.track-card {
  flex: 0 0 160px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
}

.track-card:hover { transform: translateY(-4px); }
.track-card.active .track-thumb { border-color: var(--accent); box-shadow: 0 0 15px var(--accent-glow); }

.track-thumb {
  width: 160px; height: 160px;
  overflow: hidden;
  border: 1px solid var(--border);
  position: relative;
  background: #000;
}

.track-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(20%);
  transition: all 0.3s;
}

.track-card:hover .track-thumb img { filter: grayscale(0%); transform: scale(1.05); }

.track-duration {
  position: absolute;
  bottom: 4px; right: 4px;
  background: rgba(0,0,0,0.85);
  color: #aaa;
  font-family: var(--font-mono);
  font-size: 0.55rem;
  padding: 1px 5px;
  letter-spacing: 0.05em;
}

.track-info {
  padding: 0.5rem 0.25rem;
}

.track-title {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--text-bright);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.track-stats {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  color: #444;
  margin-top: 0.2rem;
}

/* === LOADING === */
.loading {
  width: 100%;
  text-align: center;
  padding: 3rem;
  color: #333;
  font-family: var(--font-mono);
  font-size: 0.75rem;
}

.spinner {
  width: 24px; height: 24px;
  border: 2px solid #1a1a1a;
  border-top-color: var(--accent);
  border-radius: 50%;
  margin: 0 auto 1rem;
  animation: spin 1s linear infinite;
}

/* === API PROMPT === */
.api-prompt {
  text-align: center;
  font-family: var(--font-mono);
  color: #444;
  padding: 2rem;
}
.api-prompt h3 { color: var(--heading); font-size: 0.9rem; margin-bottom: 0.5rem; }
.api-prompt p { font-size: 0.7rem; }

/* === TESTIMONIALS CAROUSEL === */
.testimonials-carousel {
  position: relative;
  min-height: 200px;
  overflow: hidden;
}

.testimonial-full {
  position: absolute;
  top: 0; left: 0; right: 0;
  text-align: center;
  padding: 2rem 1rem;
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  pointer-events: none;
}

.testimonial-full:first-child {
  position: relative;
}

.testimonial-full.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.testimonial-text {
  font-family: var(--font-mono);
  font-size: clamp(1.4rem, 3.5vw, 2.2rem);
  color: var(--heading);
  font-style: italic;
  line-height: 1.5;
  animation: text-glitch 8s infinite;
}

.testimonial-link {
  display: inline-block;
  margin-top: 1rem;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: #444;
  letter-spacing: 0.1em;
  transition: color 0.2s;
}

.testimonial-link:hover { color: var(--accent); }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.carousel-dot {
  width: 8px; height: 8px;
  background: #222;
  border: 1px solid #333;
  cursor: pointer;
  transition: all 0.3s;
}

.carousel-dot.active {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 6px var(--accent-glow);
}

/* === GALLERY === */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 3px;
}

.gallery-item {
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(40%) contrast(1.2);
  transition: all 0.4s;
}

.gallery-item:hover img {
  filter: grayscale(0%) contrast(1);
  transform: scale(1.1);
}

.gallery-item .overlay {
  position: absolute; inset: 0;
  background: rgba(5,5,5,0.8);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--heading);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-align: center;
  padding: 0.75rem;
}

.gallery-item:hover .overlay { opacity: 1; }

/* === CONTACT === */
.contact-form { max-width: 500px; margin: 0 auto; }

.form-group { margin-bottom: 1.25rem; }

.form-group label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #444;
  margin-bottom: 0.4rem;
}

.form-group input, .form-group textarea {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-bright);
  padding: 0.65rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  transition: border-color 0.2s;
}

.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 8px var(--accent-glow);
}

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

.submit-btn {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--heading);
  padding: 0.7rem 2rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  cursor: pointer;
  transition: all 0.3s;
}

.submit-btn:hover {
  background: var(--accent);
  box-shadow: 0 0 20px var(--accent-glow);
}

/* === FOOTER === */
.footer {
  text-align: center;
  padding: 2rem;
  border-top: 1px solid var(--border);
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: #333;
}

.footer a { color: #444; }
.footer a:hover { color: var(--accent); }

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .hero { height: 45vh; min-height: 260px; }
  .section { padding: 2rem 1rem; }
  .track-card { flex: 0 0 130px; }
  .track-thumb { width: 130px; height: 130px; }
  .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); }
  .controls { flex-direction: column; }
  .deck-reels .reel { width: 40px; height: 40px; }
  .deck-window { height: 40px; }
}

@media (max-width: 480px) {
  .track-card { flex: 0 0 120px; }
  .track-thumb { width: 120px; height: 120px; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}
