/* Teddy Finger — reggaeton bling: black, gold, club neon */
:root {
  --bg: #070504;
  --bg-2: #100c08;
  --bg-card: rgba(22, 14, 8, 0.88);
  --gold: #f5c542;
  --gold-2: #e8a317;
  --gold-3: #ffd978;
  --gold-deep: #b8860b;
  --fur: #c49a6c;
  --fur-deep: #8b5e3c;
  --pink: #ff2d95;
  --pink-hot: #ff4ebd;
  --cyan: #00f0c8;
  --purple: #a855f7;
  --text: #fff8ec;
  --text-muted: #c4b39a;
  --border: rgba(245, 197, 66, 0.28);
  --glow-gold: 0 0 48px rgba(245, 197, 66, 0.35);
  --glow-pink: 0 0 40px rgba(255, 45, 149, 0.3);
  --radius: 20px;
  --font-display: "Bebas Neue", "Oswald", Impact, sans-serif;
  --font-head: "Oswald", system-ui, sans-serif;
  --font-body: "Outfit", system-ui, -apple-system, sans-serif;
  --max: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s, transform 0.15s, box-shadow 0.2s, border-color 0.2s;
}

/* Ambient layers */
.bg-base {
  position: fixed;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(ellipse 90% 60% at 50% -10%, rgba(245, 197, 66, 0.16), transparent 55%),
    radial-gradient(ellipse 50% 40% at 100% 30%, rgba(255, 45, 149, 0.12), transparent 50%),
    radial-gradient(ellipse 45% 35% at 0% 80%, rgba(0, 240, 200, 0.06), transparent 50%),
    linear-gradient(180deg, #0a0704 0%, #050302 100%);
}

.bg-glow {
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image: url("/images/teddy-bg.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  filter: saturate(1.3);
  pointer-events: none;
  mask-image: radial-gradient(ellipse at 70% 20%, black 10%, transparent 70%);
}

.bg-noise {
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.04;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* EQ bars decoration */
.eq-bars {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 40;
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 28px;
  opacity: 0.55;
  pointer-events: none;
}

.eq-bars span {
  width: 4px;
  border-radius: 2px;
  background: linear-gradient(180deg, var(--gold), var(--pink));
  animation: eq 0.9s ease-in-out infinite alternate;
}

.eq-bars span:nth-child(1) { height: 30%; animation-delay: 0s; }
.eq-bars span:nth-child(2) { height: 70%; animation-delay: 0.1s; }
.eq-bars span:nth-child(3) { height: 45%; animation-delay: 0.2s; }
.eq-bars span:nth-child(4) { height: 90%; animation-delay: 0.05s; }
.eq-bars span:nth-child(5) { height: 55%; animation-delay: 0.15s; }

@keyframes eq {
  from { transform: scaleY(0.45); }
  to { transform: scaleY(1); }
}

/* Marquee */
.marquee {
  overflow: hidden;
  background: linear-gradient(90deg, #1a1000, #2a1800, #1a1000);
  border-bottom: 1px solid var(--border);
  padding: 0.45rem 0;
}

.marquee-track {
  display: flex;
  gap: 1.25rem;
  width: max-content;
  animation: marquee 28s linear infinite;
  font-family: var(--font-display);
  letter-spacing: 0.12em;
  font-size: 0.95rem;
  color: var(--gold);
  white-space: nowrap;
}

.marquee-track span:nth-child(even) {
  color: var(--pink-hot);
  opacity: 0.85;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 5%;
  background: rgba(7, 5, 4, 0.82);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(245, 197, 66, 0.15);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--text);
}

.logo-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
  box-shadow: var(--glow-gold);
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.55rem;
  letter-spacing: 0.06em;
  line-height: 1;
}

.logo-text em {
  font-style: normal;
  background: linear-gradient(90deg, var(--gold-3), var(--gold-2), var(--pink));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav-links {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 1.5rem;
}

.nav-links a {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-family: var(--font-head);
}

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

.nav-cta {
  background: linear-gradient(135deg, var(--gold-3), var(--gold-2) 50%, #c9780a);
  color: #1a0e00 !important;
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  font-weight: 700 !important;
  box-shadow: var(--glow-gold);
}

.nav-cta:hover {
  filter: brightness(1.08);
  color: #1a0e00 !important;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
}

/* Hero */
.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem 3rem;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: 3rem 5% 4rem;
  min-height: calc(100vh - 110px);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.4rem 0.95rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(245, 197, 66, 0.08);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 0 0 rgba(255, 45, 149, 0.6);
  animation: pulse 1.6s infinite;
}

@keyframes pulse {
  70% { box-shadow: 0 0 0 10px rgba(255, 45, 149, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 45, 149, 0); }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(4.2rem, 12vw, 7.5rem);
  line-height: 0.88;
  letter-spacing: 0.02em;
  margin-bottom: 0.75rem;
}

.hero h1 .line {
  display: block;
}

.hero h1 .accent {
  background: linear-gradient(100deg, var(--gold-3) 0%, var(--gold-2) 35%, var(--pink) 70%, var(--cyan) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 24px rgba(245, 197, 66, 0.35));
}

.hero-tag {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.hero-sub {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 28ch;
  margin-bottom: 1.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.9rem 1.55rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  font-family: var(--font-head);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: transform 0.15s, filter 0.2s, box-shadow 0.2s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-gold {
  background: linear-gradient(135deg, #ffe08a, var(--gold) 40%, var(--gold-2));
  color: #1a0c00;
  box-shadow: var(--glow-gold);
}

.btn-gold:hover {
  filter: brightness(1.06);
  color: #1a0c00;
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.hero-pills span {
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
}

/* Hero visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 420px;
}

.hero-frame {
  position: relative;
  width: min(440px, 88vw);
  aspect-ratio: 1;
  border-radius: 28px;
  overflow: hidden;
  border: 2px solid rgba(245, 197, 66, 0.45);
  box-shadow:
    var(--glow-gold),
    0 30px 80px rgba(0, 0, 0, 0.55),
    inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  background: #0a0704;
  z-index: 2;
  animation: float 6s ease-in-out infinite;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    125deg,
    transparent 30%,
    rgba(255, 255, 255, 0.08) 45%,
    transparent 60%
  );
  animation: shine 5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes shine {
  0%, 100% { transform: translateX(-30%); opacity: 0.3; }
  50% { transform: translateX(30%); opacity: 0.7; }
}

.hero-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px dashed rgba(245, 197, 66, 0.35);
  z-index: 1;
}

.ring-a {
  width: min(500px, 95vw);
  aspect-ratio: 1;
  animation: spin 40s linear infinite;
}

.ring-b {
  width: min(560px, 100vw);
  aspect-ratio: 1;
  border-color: rgba(255, 45, 149, 0.25);
  animation: spin 55s linear infinite reverse;
}

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

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.float-chip {
  position: absolute;
  z-index: 3;
  padding: 0.5rem 0.9rem;
  border-radius: 12px;
  background: rgba(12, 8, 4, 0.9);
  border: 1px solid var(--border);
  backdrop-filter: blur(8px);
  font-size: 0.85rem;
  font-weight: 700;
  font-family: var(--font-head);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  animation: bob 4.5s ease-in-out infinite;
}

.chip-1 {
  top: 8%;
  right: 0;
  color: var(--cyan);
  animation-delay: 0s;
}

.chip-2 {
  bottom: 18%;
  left: 0;
  color: var(--pink-hot);
  animation-delay: 0.4s;
}

.chip-3 {
  top: 42%;
  right: -4%;
  color: var(--gold);
  animation-delay: 0.8s;
}

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

/* Gold strip */
.gold-strip {
  overflow: hidden;
  background: linear-gradient(90deg, var(--gold-2), var(--gold-3), var(--gold), var(--gold-2));
  color: #1a0c00;
  padding: 0.7rem 0;
  transform: rotate(-1.2deg) scale(1.02);
  margin: 0.5rem 0 2rem;
  box-shadow: 0 8px 30px rgba(245, 197, 66, 0.25);
}

.gold-strip-inner {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: marquee 18s linear infinite;
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.14em;
  white-space: nowrap;
}

/* Sections */
.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 4.5rem 5%;
}

.section-alt {
  max-width: none;
  padding-left: max(5%, calc((100% - var(--max)) / 2 + 5%));
  padding-right: max(5%, calc((100% - var(--max)) / 2 + 5%));
  background: linear-gradient(180deg, transparent, rgba(245, 197, 66, 0.04), transparent);
  border-top: 1px solid rgba(245, 197, 66, 0.08);
  border-bottom: 1px solid rgba(245, 197, 66, 0.08);
}

.section-alt > * {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

.section-head {
  margin-bottom: 2.25rem;
}

.section-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pink-hot);
  margin-bottom: 0.6rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  letter-spacing: 0.03em;
  line-height: 1;
  margin-bottom: 0.75rem;
}

.section-lead {
  color: var(--text-muted);
  max-width: 48ch;
  font-size: 1.08rem;
}

/* About */
.about-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2.5rem;
  align-items: center;
}

.about-portrait {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--glow-gold);
}

.about-portrait img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.about-portrait-glow {
  position: absolute;
  inset: auto 0 0 0;
  height: 40%;
  background: linear-gradient(transparent, rgba(7, 5, 4, 0.85));
}

.about-bio {
  font-size: 1.12rem;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}

.stat {
  text-align: center;
  padding: 1.1rem 0.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
}

.stat-value {
  font-family: var(--font-display);
  font-size: 1.85rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.3rem;
}

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

/* Music */
.music-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 1.1rem;
}

.track-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.4rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.track-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--pink), var(--cyan));
  opacity: 0.85;
}

.track-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 197, 66, 0.5);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.track-card.featured {
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 320px;
  padding: 0;
  background: #0d0906;
}

.track-cover {
  position: absolute;
  inset: 0;
}

.track-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  filter: saturate(1.1);
}

.track-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(7, 5, 4, 0.95) 85%);
}

.play-fab {
  position: absolute;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 2;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, var(--gold-3), var(--gold-2));
  color: #1a0c00;
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: var(--glow-gold);
}

.track-meta {
  position: relative;
  z-index: 1;
  padding: 1.5rem;
}

.track-kicker {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.track-card h3 {
  font-family: var(--font-head);
  font-size: 1.35rem;
  margin-bottom: 0.4rem;
  letter-spacing: 0.02em;
}

.track-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.track-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, rgba(245, 197, 66, 0.2), rgba(255, 45, 149, 0.15));
  border: 1px solid var(--border);
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.15rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--bg-2);
  border: 1px solid var(--border);
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item .caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 2rem 1rem 1rem;
  background: linear-gradient(transparent, rgba(7, 5, 4, 0.95));
  transform: translateY(10px);
  opacity: 0;
  transition: opacity 0.25s, transform 0.25s;
}

.gallery-item:hover .caption {
  opacity: 1;
  transform: translateY(0);
}

.gallery-item .caption h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  margin-bottom: 0.2rem;
}

.gallery-item .caption p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.gallery-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 3.5rem 1.5rem;
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  color: var(--text-muted);
}

.gallery-empty .emoji {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}

/* Connect */
.connect-card {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.connect-copy {
  padding: 2.25rem;
}

.connect-art {
  height: 100%;
  min-height: 280px;
}

.connect-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 0.5rem;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.7rem 1.15rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--border);
  color: var(--text);
  font-weight: 600;
  font-family: var(--font-head);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-size: 0.88rem;
}

.social-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(245, 197, 66, 0.08);
  transform: translateY(-2px);
}

.social-empty {
  color: var(--text-muted);
  font-size: 0.98rem;
}

/* Footer */
.footer {
  border-top: 1px solid rgba(245, 197, 66, 0.15);
  padding: 2.5rem 5%;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.footer-brand img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  object-fit: cover;
}

.footer .brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  color: var(--text);
  line-height: 1;
}

.footer .brand em {
  font-style: normal;
  color: var(--gold);
}

.footer-brand p {
  font-size: 0.85rem;
  margin-top: 0.15rem;
  text-align: left;
}

.footer-tag {
  margin-top: 0.5rem;
  opacity: 0.8;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(5, 3, 2, 0.94);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  backdrop-filter: blur(10px);
}

.lightbox.open {
  display: flex;
}

.lightbox[hidden] {
  display: none !important;
}

.lightbox.open[hidden] {
  display: flex !important;
}

.lightbox img {
  max-width: min(900px, 94vw);
  max-height: 84vh;
  border-radius: 14px;
  border: 1px solid var(--border);
  box-shadow: var(--glow-gold);
}

.lightbox-close {
  position: absolute;
  top: 1.1rem;
  right: 1.4rem;
  background: none;
  border: none;
  color: white;
  font-size: 2.2rem;
  cursor: pointer;
  line-height: 1;
}

.lightbox-meta {
  position: absolute;
  bottom: 1.4rem;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: var(--text-muted);
  font-family: var(--font-head);
  letter-spacing: 0.04em;
}

/* Responsive */
@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    min-height: auto;
    padding-top: 2rem;
  }

  .hero-sub {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions,
  .hero-pills {
    justify-content: center;
  }

  .hero-visual {
    order: -1;
    min-height: 340px;
  }

  .hero-frame {
    width: min(300px, 78vw);
  }

  .about-layout,
  .connect-card {
    grid-template-columns: 1fr;
  }

  .connect-art {
    min-height: 240px;
    order: -1;
  }

  .music-grid {
    grid-template-columns: 1fr;
  }

  .track-card.featured {
    grid-row: auto;
    min-height: 280px;
  }

  .stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: rgba(7, 5, 4, 0.97);
    padding: 1rem 5% 1.25rem;
    border-bottom: 1px solid var(--border);
    gap: 0.35rem;
  }

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

  .nav-links a {
    padding: 0.75rem 0.5rem;
  }

  .nav-cta {
    text-align: center;
    margin-top: 0.35rem;
  }

  .float-chip.chip-3 {
    display: none;
  }
}

@media (max-width: 520px) {
  .chip-1,
  .chip-2 {
    display: none;
  }

  .eq-bars {
    display: none;
  }
}

/* Songs section */
.songs-list {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.song-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.35rem;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.28);
}

.song-main {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem 1.15rem;
  align-items: start;
}

.song-num {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--gold);
  line-height: 1;
  opacity: 0.85;
  min-width: 2.2rem;
}

.song-title {
  font-family: var(--font-head);
  font-size: 1.35rem;
  letter-spacing: 0.03em;
  margin-bottom: 0.25rem;
}

.song-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.song-audio {
  width: 100%;
  max-width: 520px;
  height: 40px;
  margin-bottom: 0.75rem;
  filter: drop-shadow(0 0 8px rgba(245, 197, 66, 0.15));
}

.song-stores {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.song-stores-empty {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
}

.song-store-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.3);
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 600;
  font-family: var(--font-head);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.song-store-link:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.song-lyrics {
  margin-top: 1rem;
  border-top: 1px solid rgba(245, 197, 66, 0.15);
  padding-top: 0.75rem;
}

.song-lyrics summary {
  cursor: pointer;
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.88rem;
  color: var(--gold);
  list-style: none;
}

.song-lyrics summary::-webkit-details-marker {
  display: none;
}

.song-lyrics summary::before {
  content: "♪ ";
}

.song-lyrics-text {
  margin-top: 0.85rem;
  white-space: pre-wrap;
  font-family: var(--font-body);
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--text-muted);
  max-height: 320px;
  overflow-y: auto;
  padding: 0.85rem 1rem;
  background: rgba(0, 0, 0, 0.35);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Background music player */
.music-player {
  position: fixed;
  left: 1rem;
  bottom: 1rem;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 0.75rem 0.55rem 0.55rem;
  border-radius: 999px;
  background: rgba(12, 8, 4, 0.92);
  border: 1px solid var(--border);
  box-shadow: var(--glow-gold), 0 12px 32px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(12px);
  max-width: min(320px, calc(100vw - 2rem));
}

.music-player[hidden] {
  display: none !important;
}

.music-toggle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold-3), var(--gold-2));
  color: #1a0c00;
  font-size: 0.95rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(245, 197, 66, 0.35);
  transition: transform 0.15s, filter 0.15s;
}

.music-toggle:hover {
  transform: scale(1.06);
  filter: brightness(1.05);
}

.music-player.playing .music-toggle {
  animation: music-pulse 1.4s ease-in-out infinite;
}

@keyframes music-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245, 197, 66, 0.45); }
  50% { box-shadow: 0 0 0 10px rgba(245, 197, 66, 0); }
}

.music-info {
  display: flex;
  flex-direction: column;
  min-width: 0;
  flex: 1;
}

.music-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: var(--font-head);
}

.music-title {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.music-vol {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.05rem;
  line-height: 1;
  padding: 0.25rem;
  opacity: 0.85;
  flex-shrink: 0;
}

.music-vol:hover {
  opacity: 1;
}

@media (max-width: 520px) {
  .music-player {
    left: 0.65rem;
    bottom: 0.65rem;
    padding-right: 0.55rem;
  }

  .music-info {
    max-width: 120px;
  }

  .eq-bars {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
