:root {
  --bg: #060606;
  --bg-elev: #0d0d0d;
  --ink: #ffffff;
  --muted: #b0b0b0;
  --line: rgba(255, 255, 255, 0.10);
  --red: #ff1f1f;
  --red-2: #ff4d4d;
  --red-soft: rgba(255, 31, 31, 0.16);
  --white: #ffffff;
  --radius: 14px;
  --sans: "Manrope", ui-sans-serif, system-ui, sans-serif;
  --mono: "Space Mono", ui-monospace, "SF Mono", Menlo, monospace;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

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

a {
  color: var(--red-2);
  text-decoration: none;
}

/* ---------- Background layers ---------- */
.bg-grid {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 31, 31, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 31, 31, 0.05) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(ellipse at top, black 10%, transparent 80%);
  pointer-events: none;
  z-index: 0;
}

.bg-glow {
  position: fixed;
  width: 620px;
  height: 620px;
  top: -180px;
  right: -120px;
  background: radial-gradient(circle, rgba(255, 31, 31, 0.22), transparent 65%);
  filter: blur(10px);
  pointer-events: none;
  z-index: 0;
}

.bg-glow::after {
  content: "";
  position: absolute;
  width: 480px;
  height: 480px;
  left: -260px;
  top: 320px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.10), transparent 65%);
  filter: blur(10px);
}

/* Interactive floating DJ vinyl records background canvas */
.cd-field {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
  display: block;
}

/* scanline overlay for the technical vibe */
.scanlines {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  background: repeating-linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.025) 0 1px,
    transparent 1px 3px
  );
  mix-blend-mode: overlay;
  opacity: 0.6;
}

/* ---------- Layout chrome ---------- */
.site-header,
main,
.site-footer {
  position: relative;
  z-index: 3;
}

.site-header {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 18px 7vw;
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
  background: rgba(6, 6, 6, 0.55);
}

.logo {
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-right: auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(255, 31, 31, 0.5);
}

/* equalizer "now producing" indicator */
.eq {
  display: inline-flex;
  align-items: flex-end;
  gap: 3px;
  height: 18px;
}

.eq span {
  width: 3px;
  height: 100%;
  background: var(--red);
  border-radius: 2px;
  transform-origin: bottom;
  animation: eq-bounce 1s ease-in-out infinite;
}

.eq span:nth-child(2) { animation-delay: 0.15s; background: var(--white); }
.eq span:nth-child(3) { animation-delay: 0.3s; }
.eq span:nth-child(4) { animation-delay: 0.45s; background: var(--white); }
.eq span:nth-child(5) { animation-delay: 0.6s; }

@keyframes eq-bounce {
  0%, 100% { transform: scaleY(0.3); }
  50% { transform: scaleY(1); }
}

.cursor-dot,
.cursor-ring {
  position: fixed;
  left: 0;
  top: 0;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cursor-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 10px rgba(255, 31, 31, 0.7);
}

.cursor-ring {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 31, 31, 0.4);
  background: radial-gradient(circle, rgba(255, 31, 31, 0.08) 0%, transparent 70%);
  transition: width 0.08s ease, height 0.08s ease, transform 0.12s ease;
}

.card,
.btn,
.logo,
.text-link {
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.card:hover,
.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(255, 31, 31, 0.22);
}

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

/* avatar wrapper that emits the sound-wave ripples */
.logo-avatar {
  position: relative;
  display: inline-flex;
  flex: 0 0 auto;
}

/* expanding concentric sound-wave rings on the logo boundary */
.logo-avatar::before,
.logo-avatar::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(255, 31, 31, 0.7);
  animation: logo-wave 1.8s ease-out infinite;
  pointer-events: none;
}

.logo-avatar::after {
  animation-delay: 0.9s;
}

@keyframes logo-wave {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  100% {
    transform: scale(2.1);
    opacity: 0;
  }
}

/* site name + equalizer waveform bars */
.logo-name {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
  gap: 4px;
}

.logo-wave {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 12px;
}

.logo-wave i {
  width: 3px;
  height: 100%;
  border-radius: 2px;
  background: linear-gradient(to top, var(--red), var(--white));
  transform-origin: bottom;
  animation: name-wave 0.8s ease-in-out infinite;
}

.logo-wave i:nth-child(1) { animation-delay: 0s; }
.logo-wave i:nth-child(2) { animation-delay: 0.15s; }
.logo-wave i:nth-child(3) { animation-delay: 0.3s; }
.logo-wave i:nth-child(4) { animation-delay: 0.45s; }
.logo-wave i:nth-child(5) { animation-delay: 0.6s; }
.logo-wave i:nth-child(6) { animation-delay: 0.75s; }

@keyframes name-wave {
  0%, 100% { transform: scaleY(0.25); }
  50% { transform: scaleY(1); }
}

.text-link:hover {
  background: linear-gradient(90deg, transparent, rgba(255, 31, 31, 0.08), transparent);
  border-radius: 4px;
}

.nav {
  display: flex;
  gap: 18px;
}

.nav a {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.95rem;
  font-family: var(--mono);
  letter-spacing: 0.02em;
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width 0.2s ease;
}

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

.nav a.active::after,
.nav a:hover::after {
  width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--red);
  color: var(--white);
  border: 0;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
  box-shadow: 0 8px 22px rgba(255, 31, 31, 0.25);
}

.btn:hover {
  background: #e01515;
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(255, 31, 31, 0.4);
}

.btn-ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: none;
  color: var(--white);
}

.btn-ghost:hover {
  background: rgba(255, 31, 31, 0.12);
  border-color: var(--red);
  box-shadow: 0 8px 22px rgba(255, 31, 31, 0.2);
}

.btn-sm {
  padding: 8px 14px;
  font-size: 0.88rem;
}

main {
  padding: 24px 7vw 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.hero,
.page-hero {
  padding: 28px 0 36px;
}

.page-hero {
  padding: 16px 0 28px;
}

.eyebrow {
  color: var(--red-2);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin: 0 0 12px;
  font-family: var(--mono);
}

.eyebrow::before {
  content: "// ";
  color: var(--muted);
}

h1 {
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
  margin: 0 0 16px;
  text-transform: uppercase;
}

h1 span {
  color: var(--red);
}

h2 {
  margin: 0 0 10px;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

h3 {
  margin: 8px 0;
  letter-spacing: -0.02em;
}

.lede {
  max-width: 640px;
  color: var(--muted);
  font-size: 1.12rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 12px 0 40px;
}

.panel {
  background: linear-gradient(180deg, rgba(13, 13, 13, 0.92), rgba(6, 6, 6, 0.92));
  border: 1px solid var(--line);
  border-left: 3px solid var(--red);
  border-radius: var(--radius);
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.panel::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle at top right, rgba(255, 31, 31, 0.18), transparent 70%);
  pointer-events: none;
}

.panel.wide {
  margin-top: 36px;
}

.panel p,
.card p {
  color: var(--muted);
}

.plain-list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.plain-list li::marker {
  color: var(--red);
}

.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 16px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.card {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  display: flex;
  flex-direction: column;
  min-height: 220px;
  position: relative;
}

.card .btn {
  margin-top: auto;
  align-self: flex-start;
}

.tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  border: 1px solid rgba(255, 31, 31, 0.4);
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 0.75rem;
  font-weight: 700;
  font-family: var(--mono);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  width: fit-content;
}

.text-link {
  font-weight: 700;
  font-family: var(--mono);
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
}

.form {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 6px;
  font-weight: 600;
  font-size: 0.92rem;
  font-family: var(--mono);
}

input,
select,
textarea {
  background: #0a0a0a;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  font: inherit;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(255, 31, 31, 0.5);
  border-color: var(--red);
}

.hp {
  position: absolute;
  left: -9999px;
}

.form-status {
  min-height: 1.4em;
  margin: 0;
  color: var(--muted);
  font-family: var(--mono);
}

.form-status.ok {
  color: #86efac;
}

.form-status.err {
  color: var(--red-2);
}

.site-footer {
  padding: 24px 7vw 40px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
  font-family: var(--mono);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

@media (max-width: 800px) {
  .site-header {
    flex-wrap: wrap;
  }

  .nav {
    order: 3;
    width: 100%;
  }

  .split,
  .contact-wrap {
    grid-template-columns: 1fr;
  }
}

.accent-bar {
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--white), var(--red));
  border-radius: 999px;
}

/* terminal-style hero badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red-soft);
  color: var(--red-2);
  border: 1px solid rgba(255, 31, 31, 0.35);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.82rem;
  font-weight: 700;
  font-family: var(--mono);
  letter-spacing: 0.04em;
}

.hero-badge::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 8px rgba(255, 31, 31, 0.8);
  animation: pulse 1.6s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

.card-highlight {
  border-color: rgba(255, 31, 31, 0.4);
  box-shadow: 0 0 0 1px rgba(255, 31, 31, 0.12);
}

.card-highlight:hover {
  box-shadow: 0 12px 30px rgba(255, 31, 31, 0.25), 0 0 0 1px rgba(255, 31, 31, 0.25);
}

.link-red {
  color: var(--red-2);
}

.link-red:hover {
  text-decoration: underline;
  text-decoration-color: var(--red-soft);
}

/* glitch hero heading */
.glitch {
  position: relative;
  display: inline-block;
  color: var(--red);
}

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

.glitch::before {
  color: var(--white);
  transform: translate(-2px, 0);
  animation: glitch-a 2.6s infinite linear alternate-reverse;
}

.glitch::after {
  color: var(--red-2);
  transform: translate(2px, 0);
  animation: glitch-b 2.2s infinite linear alternate-reverse;
}

@keyframes glitch-a {
  0% { clip-path: inset(0 0 82% 0); }
  20% { clip-path: inset(28% 0 40% 0); }
  40% { clip-path: inset(60% 0 12% 0); }
  60% { clip-path: inset(10% 0 70% 0); }
  80% { clip-path: inset(45% 0 30% 0); }
  100% { clip-path: inset(75% 0 5% 0); }
}

@keyframes glitch-b {
  0% { clip-path: inset(70% 0 10% 0); }
  20% { clip-path: inset(15% 0 65% 0); }
  40% { clip-path: inset(48% 0 28% 0); }
  60% { clip-path: inset(5% 0 80% 0); }
  80% { clip-path: inset(35% 0 45% 0); }
  100% { clip-path: inset(82% 0 2% 0); }
}

.sample-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px;
  margin: 32px 0;
}

.sample-card {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
}

.sample-card .sample-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.sample-card h3 {
  margin: 0;
  font-size: 1.1rem;
}

.sample-card audio {
  width: 100%;
  outline: none;
}

.sample-card audio::-webkit-media-controls-panel {
  background: #0a0a0a;
  color: var(--ink);
}

.audio-wrap {
  background: #0a0a0a;
  border-radius: 12px;
  padding: 10px 14px;
  border: 1px solid var(--line);
}

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

/* ---------- DJ deck player ---------- */
.dj-stage {
  background: linear-gradient(180deg, rgba(13, 13, 13, 0.95), rgba(6, 6, 6, 0.95));
  border: 1px solid var(--line);
  border-top: 3px solid var(--red);
  border-radius: var(--radius);
  padding: 26px;
  margin-bottom: 40px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5);
}

.deck {
  display: flex;
  align-items: center;
  gap: 28px;
}

.deck-platter {
  position: relative;
  width: 168px;
  height: 168px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #000;
  box-shadow:
    inset 0 0 0 2px rgba(255, 31, 31, 0.35),
    0 0 26px rgba(255, 31, 31, 0.18);
  display: grid;
  place-items: center;
}

.deck-cd {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 158px;
  height: 158px;
  border-radius: 50%;
  background:
    repeating-radial-gradient(circle at center, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 4px),
    conic-gradient(from 210deg, #1a1a1a, #e9e9e9, #ff3b3b, #ffffff, #ff3b3b, #1a1a1a);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
  z-index: 0;
}

.deck-art {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 146px;
  height: 146px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.85);
  background: #111;
  box-shadow: 0 0 18px rgba(255, 31, 31, 0.3), inset 0 0 0 5px rgba(0, 0, 0, 0.35);
  z-index: 1;
}

.deck-platter.playing .deck-cd,
.deck-platter.playing .deck-art {
  animation: cd-spin 2.4s linear infinite;
}

@keyframes cd-spin {
  to { transform: rotate(360deg); }
}

.deck-spindle {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 12px rgba(255, 31, 31, 0.8);
  z-index: 2;
}

.deck-info {
  min-width: 0;
}

.deck-eyebrow {
  font-family: var(--mono);
  color: var(--red-2);
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  margin: 0 0 6px;
}

.deck-title {
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  margin: 0 0 4px;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.deck-sub {
  margin: 0 0 14px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.85rem;
}

.vu {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 34px;
}

.vu span {
  width: 5px;
  height: 8%;
  background: linear-gradient(to top, var(--red), var(--white));
  border-radius: 2px;
  transition: height 0.06s linear;
}

.transport {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.t-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #0a0a0a;
  color: var(--white);
  font-size: 1rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: transform 0.12s ease, border-color 0.12s ease, background 0.12s ease;
}

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

.t-play {
  width: 58px;
  height: 58px;
  background: var(--red);
  border-color: transparent;
  font-size: 1.2rem;
  box-shadow: 0 8px 22px rgba(255, 31, 31, 0.35);
}

.t-play:hover {
  background: #e01515;
  border-color: transparent;
}

.transport-right {
  flex: 1;
  min-width: 0;
}

.progress {
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
  cursor: pointer;
}

.progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--red), var(--white));
  border-radius: 999px;
  transition: width 0.1s linear;
}

.time {
  display: block;
  margin-top: 8px;
  font-family: var(--mono);
  font-size: 0.8rem;
  color: var(--muted);
}

.catalog {
  display: grid;
  gap: 10px;
}

.track-row {
  display: grid;
  grid-template-columns: 56px 1fr auto 46px;
  align-items: center;
  gap: 16px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--bg-elev);
  cursor: pointer;
  transition: transform 0.12s ease, border-color 0.12s ease, background 0.12s ease;
}

.track-row:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 31, 31, 0.4);
}

.track-row.active {
  border-color: var(--red);
  background: rgba(255, 31, 31, 0.08);
}

.track-cover {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.track-meta {
  min-width: 0;
}

.track-title {
  margin: 0;
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.track-album {
  margin: 2px 0 0;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.82rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.track-stats {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--muted);
}

.track-bpm {
  color: var(--red-2);
  font-weight: 700;
}

.track-play {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255, 31, 31, 0.4);
  background: transparent;
  color: var(--white);
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 0.9rem;
  transition: background 0.12s ease, transform 0.12s ease;
}

.track-play:hover {
  background: var(--red-soft);
  transform: scale(1.05);
}

.track-row.active .track-play {
  background: var(--red);
  border-color: transparent;
}

@media (max-width: 640px) {
  .deck {
    flex-direction: column;
    text-align: center;
  }
  .deck-title {
    white-space: normal;
  }
  .track-stats {
    display: none;
  }
  .track-row {
    grid-template-columns: 48px 1fr 42px;
  }
}

/* ---------- Social links in footer ---------- */
.social-link {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  transition: transform 0.15s ease, color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

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

.social-link.s-spotify {
  color: #1ed760;
  border-color: rgba(30, 215, 96, 0.4);
}

.social-link.s-youtube {
  color: #ff0000;
  border-color: rgba(255, 0, 0, 0.4);
}

.social-link.s-instagram {
  color: #e4405f;
  border-color: rgba(228, 64, 95, 0.4);
}

.social-link.s-instagram svg {
  fill: url(#ig-grad);
}

.social-link.s-behance {
  color: #1769ff;
  border-color: rgba(23, 105, 255, 0.4);
}

.social-link:hover {
  transform: translateY(-3px);
}

.social-link.s-spotify:hover {
  border-color: #1ed760;
  box-shadow: 0 10px 24px rgba(30, 215, 96, 0.35);
}

.social-link.s-youtube:hover {
  border-color: #ff0000;
  box-shadow: 0 10px 24px rgba(255, 0, 0, 0.35);
}

.social-link.s-instagram:hover {
  border-color: #e4405f;
  box-shadow: 0 10px 24px rgba(228, 64, 95, 0.35);
}

.social-link.s-behance:hover {
  border-color: #1769ff;
  box-shadow: 0 10px 24px rgba(23, 105, 255, 0.35);
}

@media (prefers-reduced-motion: reduce) {
  .cd,
  .eq span,
  .hero-badge::before,
  .glitch::before,
  .glitch::after,
  .deck-platter.playing .deck-cd,
  .logo-avatar::before,
  .logo-avatar::after,
  .logo-wave i {
    animation: none !important;
  }
}
