/* ================================================================
   The Psychedelic Rocker — Official Artist Site
   psychedelicrocker.com
   ================================================================ */

:root {
  --bg: #080010;
  --bg2: #0e0020;
  --purple: #c77dff;
  --purple-deep: #7b2d8b;
  --purple-mid: #9d4edd;
  --pink: #ff006e;
  --green: #39ff14;
  --orange: #ff6b35;
  --gold: #ffd60a;
  --text: #f0e6ff;
  --text-muted: #9b8ab0;
  --border: rgba(199, 125, 255, 0.15);
  --card-bg: rgba(14, 0, 32, 0.7);
  --font-display: 'Abril Fatface', serif;
  --font-mono: 'Space Mono', monospace;
  --font-body: 'Inter', sans-serif;
}

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

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: inherit; text-decoration: none; }

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

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── NAVBAR ─────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.3s, backdrop-filter 0.3s, box-shadow 0.3s;
  padding: 0 24px;
}

.navbar.scrolled {
  background: rgba(8, 0, 16, 0.92);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
}

.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-icon { width: 32px; height: 32px; }

.logo-text {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--text);
}

.logo-accent { color: var(--purple); }

.nav-links {
  display: flex;
  gap: 28px;
  margin-left: auto;
}

.nav-links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s;
}

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

.btn-listen {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  border-radius: 100px;
  background: #1DB954;
  color: #000;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: transform 0.2s, box-shadow 0.2s;
  flex-shrink: 0;
}

.btn-listen:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(29, 185, 84, 0.4);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: 0.3s;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 0;
  background: rgba(8, 0, 16, 0.97);
  border-top: 1px solid var(--border);
  padding: 12px 0 20px;
}

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

.nav-mobile a {
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s;
}

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

/* ─── BUTTONS ─────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  background: linear-gradient(135deg, var(--purple-mid), var(--purple));
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(157, 78, 221, 0.5);
}

.btn-primary.btn-sm {
  padding: 10px 20px;
  font-size: 14px;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 100px;
  border: 1.5px solid rgba(199, 125, 255, 0.5);
  color: var(--purple);
  font-size: 15px;
  font-weight: 600;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.btn-outline:hover {
  background: rgba(199, 125, 255, 0.1);
  border-color: var(--purple);
  color: #fff;
}

/* ─── SECTION LABELS ─────────────────────────────────────────── */
.section-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--text);
  margin-bottom: 40px;
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: blur(2px) saturate(1.3);
  transform: scale(1.05);
  transition: transform 0.1s;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8, 0, 16, 0.75) 0%,
    rgba(8, 0, 16, 0.6) 40%,
    rgba(8, 0, 16, 0.85) 80%,
    rgba(8, 0, 16, 1) 100%
  );
}

/* Animated color blobs */
.blobs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.25;
  animation: blobFloat 12s ease-in-out infinite;
}

.blob-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #9d4edd, transparent 70%);
  top: -100px; left: -100px;
  animation-duration: 14s;
}

.blob-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #ff006e, transparent 70%);
  bottom: 100px; right: -80px;
  animation-duration: 11s;
  animation-delay: -4s;
}

.blob-3 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, #39ff14, transparent 70%);
  top: 40%; left: 50%;
  animation-duration: 16s;
  animation-delay: -8s;
  opacity: 0.12;
}

@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -40px) scale(1.08); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

/* Floating symbols */
.symbols {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.symbols span {
  position: absolute;
  font-size: 18px;
  color: rgba(199, 125, 255, 0.2);
  animation: symbolFloat linear infinite;
}

.symbols span:nth-child(1)  { left: 5%;  top: 20%; animation-duration: 18s; animation-delay: 0s; }
.symbols span:nth-child(2)  { left: 15%; top: 60%; animation-duration: 22s; animation-delay: -3s; font-size: 24px; }
.symbols span:nth-child(3)  { left: 25%; top: 35%; animation-duration: 16s; animation-delay: -7s; }
.symbols span:nth-child(4)  { left: 40%; top: 75%; animation-duration: 20s; animation-delay: -1s; color: rgba(255, 0, 110, 0.2); }
.symbols span:nth-child(5)  { left: 55%; top: 15%; animation-duration: 25s; animation-delay: -5s; }
.symbols span:nth-child(6)  { left: 65%; top: 50%; animation-duration: 19s; animation-delay: -9s; font-size: 22px; }
.symbols span:nth-child(7)  { left: 75%; top: 80%; animation-duration: 17s; animation-delay: -2s; color: rgba(57, 255, 20, 0.15); }
.symbols span:nth-child(8)  { left: 85%; top: 30%; animation-duration: 21s; animation-delay: -6s; }
.symbols span:nth-child(9)  { left: 90%; top: 65%; animation-duration: 23s; animation-delay: -11s; }
.symbols span:nth-child(10) { left: 8%;  top: 88%; animation-duration: 15s; animation-delay: -4s; color: rgba(255, 107, 53, 0.2); }
.symbols span:nth-child(11) { left: 32%; top: 10%; animation-duration: 24s; animation-delay: -8s; }
.symbols span:nth-child(12) { left: 48%; top: 92%; animation-duration: 18s; animation-delay: -2s; font-size: 20px; }
.symbols span:nth-child(13) { left: 70%; top: 8%;  animation-duration: 26s; animation-delay: -14s; color: rgba(255, 214, 10, 0.15); }
.symbols span:nth-child(14) { left: 20%; top: 82%; animation-duration: 20s; animation-delay: -6s; }
.symbols span:nth-child(15) { left: 92%; top: 45%; animation-duration: 22s; animation-delay: -10s; }

@keyframes symbolFloat {
  0%   { transform: translateY(0px) rotate(0deg); opacity: 0.15; }
  25%  { transform: translateY(-30px) rotate(90deg); opacity: 0.3; }
  50%  { transform: translateY(-15px) rotate(180deg); opacity: 0.2; }
  75%  { transform: translateY(-45px) rotate(270deg); opacity: 0.35; }
  100% { transform: translateY(0px) rotate(360deg); opacity: 0.15; }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 120px 24px 80px;
  max-width: 760px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(199, 125, 255, 0.15);
  border: 1px solid rgba(199, 125, 255, 0.3);
  border-radius: 100px;
  padding: 6px 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 28px;
}

.badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--pink);
  animation: pulse 1.8s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #fff 0%, var(--purple) 50%, var(--pink) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  max-width: 100%;
  overflow: hidden;
}

@media (min-width: 480px) { .hero-title { font-size: 2rem; } }
@media (min-width: 768px) { .hero-title { font-size: 2.4rem; } }
@media (min-width: 1024px) { .hero-title { font-size: 2.6rem; } }

.hero-genre {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(240, 230, 255, 0.75);
  max-width: 560px;
  margin: 0 auto 36px;
}

.hero-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-lbl {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero-stat-divider {
  font-size: 24px;
  color: rgba(199, 125, 255, 0.3);
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--text-muted);
  animation: scrollBob 2s ease-in-out infinite;
}

@keyframes scrollBob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ─── LATEST RELEASE ─────────────────────────────────────────── */
.latest {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%);
}

.latest-inner {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 60px;
  align-items: start;
}

.latest-art {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(157, 78, 221, 0.3);
}

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

.latest-glow {
  position: absolute;
  inset: -2px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--purple-mid), var(--pink));
  z-index: -1;
  animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.latest-date {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 10px;
}

.latest-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  margin-bottom: 10px;
  background: linear-gradient(135deg, #fff, var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.latest-meta {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.latest-desc {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(240, 230, 255, 0.75);
  margin-bottom: 28px;
}

.tracklist {
  margin-bottom: 28px;
  background: rgba(199, 125, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.tracklist-header {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 14px 18px 10px;
  border-bottom: 1px solid var(--border);
}

.tracks {
  list-style: none;
  max-height: 320px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--purple-mid) transparent;
}

.tracks::-webkit-scrollbar { width: 4px; }
.tracks::-webkit-scrollbar-track { background: transparent; }
.tracks::-webkit-scrollbar-thumb { background: var(--purple-mid); border-radius: 4px; }

.tracks li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px;
  transition: background 0.15s;
  border-bottom: 1px solid rgba(199, 125, 255, 0.06);
}

.tracks li:last-child a { border-bottom: none; }

.tracks li a:hover { background: rgba(199, 125, 255, 0.08); }

.t-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  min-width: 22px;
}

.t-name {
  flex: 1;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  transition: color 0.15s;
}

.tracks li a:hover .t-name { color: var(--purple); }

.t-dur {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
}

/* ─── DISCOGRAPHY ─────────────────────────────────────────────── */
.discography {
  padding: 100px 0;
  background: var(--bg2);
}

.albums-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}

.album-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.album-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(157, 78, 221, 0.25);
  border-color: rgba(199, 125, 255, 0.4);
}

.album-card-featured {
  border-color: rgba(199, 125, 255, 0.4);
  box-shadow: 0 10px 40px rgba(157, 78, 221, 0.2);
}

.album-art-wrap {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}

.album-art-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.album-card:hover .album-art-wrap img { transform: scale(1.04); }

.album-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 0, 16, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s;
}

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

.album-play-btn {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple-mid), var(--purple));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 8px 24px rgba(157, 78, 221, 0.5);
}

.album-play-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(157, 78, 221, 0.7);
}

.new-badge, .single-badge {
  position: absolute;
  top: 14px; right: 14px;
  padding: 5px 12px;
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.new-badge {
  background: var(--pink);
  color: #fff;
  box-shadow: 0 4px 12px rgba(255, 0, 110, 0.4);
}

.single-badge {
  background: rgba(199, 125, 255, 0.2);
  border: 1px solid rgba(199, 125, 255, 0.5);
  color: var(--purple);
}

.album-info {
  padding: 20px;
}

.album-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 6px;
}

.album-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.single-desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 16px;
  font-style: italic;
}

.album-tracks-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--purple);
  cursor: pointer;
  margin-bottom: 10px;
  transition: color 0.2s;
  user-select: none;
}

.album-tracks-toggle:hover { color: var(--text); }

.album-tracks-toggle svg { transition: transform 0.25s; }
.album-tracks-toggle.open svg { transform: rotate(180deg); }

.album-tracks {
  list-style: none;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease;
  margin-bottom: 0;
}

.album-tracks.open {
  max-height: 600px;
  margin-bottom: 14px;
}

.album-tracks li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 0;
  border-bottom: 1px solid rgba(199, 125, 255, 0.07);
  font-size: 13px;
}

.album-tracks li:last-child { border-bottom: none; }

.album-tracks li a {
  color: rgba(240, 230, 255, 0.75);
  flex: 1;
  transition: color 0.15s;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-right: 8px;
}

.album-tracks li a:hover { color: var(--purple); }

.album-tracks li span {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  flex-shrink: 0;
}

.album-links {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.platform-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.2s, box-shadow 0.2s;
}

.platform-badge:hover { transform: translateY(-1px); }

.platform-badge.spotify {
  background: rgba(29, 185, 84, 0.15);
  border: 1px solid rgba(29, 185, 84, 0.4);
  color: #1DB954;
}

.platform-badge.spotify:hover { box-shadow: 0 4px 16px rgba(29, 185, 84, 0.3); }

.platform-badge.apple {
  background: rgba(252, 60, 60, 0.1);
  border: 1px solid rgba(252, 60, 60, 0.3);
  color: #fc3c3c;
}

.platform-badge.apple:hover { box-shadow: 0 4px 16px rgba(252, 60, 60, 0.25); }

/* ─── STREAM ──────────────────────────────────────────────────── */
.stream {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.stream-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(157, 78, 221, 0.12) 0%, transparent 70%);
}

.stream-sub {
  font-size: 17px;
  color: var(--text-muted);
  margin-top: -20px;
  margin-bottom: 50px;
}

.platforms {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.platform-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 36px 44px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  min-width: 180px;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.platform-card:hover {
  transform: translateY(-6px);
  border-color: rgba(199, 125, 255, 0.4);
}

.platform-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s;
}

.platform-card:hover .platform-icon { transform: scale(1.1); }

.spotify-icon {
  background: rgba(29, 185, 84, 0.15);
  color: #1DB954;
}

.platform-card:hover .spotify-icon { box-shadow: 0 8px 28px rgba(29, 185, 84, 0.35); }

.apple-icon {
  background: rgba(252, 60, 60, 0.1);
  color: #fc3c3c;
}

.platform-card:hover .apple-icon { box-shadow: 0 8px 28px rgba(252, 60, 60, 0.25); }

.yt-icon {
  background: rgba(255, 0, 0, 0.1);
  color: #ff0000;
}

.platform-card:hover .yt-icon { box-shadow: 0 8px 28px rgba(255, 0, 0, 0.25); }

.platform-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
}

.platform-action {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--purple);
  transition: letter-spacing 0.2s;
}

.platform-card:hover .platform-action { letter-spacing: 0.15em; }

/* ─── ABOUT ──────────────────────────────────────────────────── */
.about {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--bg2) 0%, var(--bg) 100%);
}

.about-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.about-symbol {
  font-size: 4rem;
  color: var(--purple);
  opacity: 0.4;
  margin-bottom: 20px;
  animation: symbolSpin 20s linear infinite;
}

@keyframes symbolSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.about-text p {
  font-size: 17px;
  line-height: 1.85;
  color: rgba(240, 230, 255, 0.75);
  margin-bottom: 20px;
}

.about-text p:last-child { margin-bottom: 0; }

.about-text em { color: var(--purple); font-style: italic; }

.about-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 36px;
}

.about-tags span {
  padding: 7px 18px;
  border-radius: 100px;
  background: rgba(199, 125, 255, 0.1);
  border: 1px solid rgba(199, 125, 255, 0.25);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--purple);
}

/* ─── FOOTER ─────────────────────────────────────────────────── */
.footer {
  padding: 48px 0;
  border-top: 1px solid var(--border);
  background: var(--bg);
}

.footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  gap: 28px;
}

.footer-links a {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--purple); }

.footer-copy {
  font-size: 12px;
  color: rgba(155, 138, 176, 0.5);
  letter-spacing: 0.04em;
}

/* ─── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 900px) {
  .latest-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .latest-art { max-width: 360px; margin: 0 auto; }

  .nav-links, .btn-listen { display: none; }

  .nav-hamburger { display: flex; }

  .nav-inner { gap: 0; }
}

@media (max-width: 600px) {
  .hero-cta { flex-direction: column; align-items: center; }
  .hero-stats { gap: 14px; }
  .stat-num { font-size: 1.8rem; }
  .platforms { flex-direction: column; align-items: center; }
  .platform-card { width: 100%; max-width: 280px; }
  .albums-grid { grid-template-columns: 1fr; }
  .footer-links { flex-wrap: wrap; justify-content: center; gap: 16px; }
}
