@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&family=Syne:wght@400;500;600;700;800&family=JetBrains+Mono:wght@300;400;500&display=swap');

:root {
  --black: #0a0a0a;
  --black-warm: #0d0c0b;
  --surface: #141312;
  --surface-elevated: #1a1918;
  --surface-hover: #1f1e1c;
  --border: rgba(255, 255, 255, 0.06);
  --border-hover: rgba(255, 255, 255, 0.12);

  --gold: #c9a84c;
  --gold-light: #e2c87a;
  --gold-dim: rgba(201, 168, 76, 0.15);
  --gold-glow: rgba(201, 168, 76, 0.3);

  --text: #e8e6e1;
  --text-secondary: #9a9590;
  --text-dim: #5a5650;

  --font-display: 'Cormorant Garamond', serif;
  --font-heading: 'Syne', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quint: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--gold-dim) transparent;
}

body {
  background: var(--black);
  color: var(--text);
  font-family: var(--font-heading);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  line-height: 1.6;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--gold-dim); border-radius: 3px; }

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
img { display: block; max-width: 100%; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

input[type="range"]:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

#ambient-canvas,
.ambient-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.4;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 24px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.6s var(--ease-out-expo);
}

.nav.scrolled {
  mix-blend-mode: normal;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 16px 48px;
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text);
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text);
  position: relative;
  padding: 4px 0;
  transition: color 0.3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.4s var(--ease-out-expo);
}

.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  cursor: pointer;
  z-index: 1001;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text);
  transition: all 0.3s var(--ease-out-expo);
  transform-origin: center;
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(40px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-out-expo);
}

.mobile-nav.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav a {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
  transition: color 0.3s, transform 0.3s;
}

.mobile-nav a:hover {
  color: var(--gold);
  transform: translateX(8px);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 1;
  padding-bottom: 120px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 45%, rgba(201, 168, 76, 0.04), transparent 70%);
}

.hero-bg::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, var(--black), transparent);
}

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

.hero-portrait {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 48px;
  border: 2px solid rgba(201, 168, 76, 0.2);
  box-shadow:
    0 0 60px rgba(201, 168, 76, 0.1),
    0 0 120px rgba(201, 168, 76, 0.05);
  opacity: 0;
  transform: scale(0.9);
  animation: heroFadeUp 1.2s var(--ease-out-expo) 0.2s forwards;
}

.hero-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(15%) contrast(1.05);
}

.hero-label {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 1s var(--ease-out-expo) 0.5s forwards;
}

.hero-name {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 10vw, 8rem);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(30px);
  animation: heroFadeUp 1.2s var(--ease-out-expo) 0.7s forwards;
}

.hero-name em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 300;
  font-style: italic;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
  max-width: 500px;
  margin: 0 auto 48px;
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 1s var(--ease-out-expo) 1s forwards;
}

.hero-platforms {
  display: flex;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 1s var(--ease-out-expo) 1.2s forwards;
}

.hero-platforms a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-dim);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: all 0.3s;
  padding: 10px 20px;
  border: 1px solid var(--border);
  border-radius: 100px;
}

.hero-platforms a svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s var(--ease-spring);
}

.hero-platforms a:hover {
  color: var(--gold);
  border-color: var(--gold-dim);
  background: var(--gold-dim);
}

.hero-platforms a:hover svg { transform: scale(1.1); }

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-dim);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0;
  animation: heroFadeUp 1s var(--ease-out-expo) 1.6s forwards;
  z-index: 2;
  cursor: pointer;
  transition: color 0.3s;
}

.hero-scroll:hover {
  color: var(--gold);
}

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

@keyframes heroFadeUp {
  to { opacity: 1; transform: translateY(0) scale(1); }
}

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

.section {
  position: relative;
  z-index: 1;
  padding: 120px 48px;
}

.section-label {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.section-label::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold);
  opacity: 0.4;
}

.section-label--center {
  justify-content: center;
}

.section-label--center::before {
  display: none;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 48px;
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

.music-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.music-section .section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.music-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 56px;
  background: var(--black);
  border-radius: 8px;
  padding: 4px;
  width: fit-content;
}

.music-tab {
  padding: 12px 28px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
  border-radius: 6px;
  transition: all 0.3s var(--ease-out-expo);
  position: relative;
}

.music-tab:hover { color: var(--text-secondary); }

.music-tab.active {
  background: var(--surface-elevated);
  color: var(--gold);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.category-block {
  margin-bottom: 64px;
}

.category-block:last-child { margin-bottom: 0; }

.category-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--gold-dim);
}

.category-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.category-icon svg { width: 20px; height: 20px; }

.category-name {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}

.category-count {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--text-dim);
  margin-left: auto;
}

.track-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.track-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid transparent;
  background: transparent;
  transition: all 0.35s var(--ease-out-expo);
  cursor: default;
  position: relative;
  overflow: hidden;
}

.track-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, var(--gold-dim), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s;
}

.track-item:hover {
  background: var(--surface-hover);
  border-color: var(--border);
}

.track-item:hover::before { opacity: 0.3; }

.track-item.active-track {
  background: var(--surface-elevated);
  border-color: var(--gold-dim);
}

.track-item.active-track::before { opacity: 0.5; }

.track-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.track-info {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.track-number {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 300;
  color: var(--text-dim);
  min-width: 20px;
  text-align: right;
}

.track-item.active-track .track-number { color: var(--gold); }

.track-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--text);
  letter-spacing: 0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.track-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0;
  transform: translateX(8px);
  transition: all 0.3s var(--ease-out-expo);
}

.track-item:hover .track-actions,
.track-item.active-track .track-actions {
  opacity: 1;
  transform: none;
}

.track-action-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  transition: all 0.2s;
}

.track-action-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
}

.track-action-btn svg { width: 14px; height: 14px; }

.copy-success svg { stroke: var(--gold) !important; }

.track-controls {
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
  z-index: 1;
}

.play-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-secondary);
  flex-shrink: 0;
  transition: all 0.25s var(--ease-out-expo);
}

.play-btn:hover {
  background: var(--gold-dim);
  color: var(--gold);
  transform: scale(1.08);
}

.track-item.active-track .play-btn {
  background: var(--gold);
  color: var(--black);
}

.track-item.active-track .play-btn:hover {
  background: var(--gold-light);
  transform: scale(1.08);
}

.play-icon {
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 9px solid currentColor;
  margin-left: 2px;
}

.pause-icon {
  width: 10px;
  height: 11px;
  position: relative;
}

.pause-icon::before, .pause-icon::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2.5px;
  background: currentColor;
  border-radius: 1px;
}

.pause-icon::before { left: 0; }
.pause-icon::after { right: 0; }

.track-item .progress-container {
  flex-grow: 1;
  height: 40px;
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.waveform-canvas {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 4px;
}

.sticky-player .progress-container {
  flex-grow: 1;
  height: 28px;
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.progress-track {
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 3px;
  position: relative;
  overflow: visible;
  transition: height 0.2s;
}

.sticky-player .progress-container:hover .progress-track { height: 5px; }

.progress-fill {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 3px;
  transition: none;
}

.progress-handle {
  position: absolute;
  left: 0%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 12px;
  height: 12px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--gold-glow);
  transition: transform 0.15s var(--ease-spring);
}

.sticky-player .progress-container:hover .progress-handle {
  transform: translate(-50%, -50%) scale(1);
}

.time-display {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 300;
  color: var(--text-dim);
  min-width: 95px;
  text-align: right;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.track-item.active-track .time-display { color: var(--text-secondary); }

.about-section {
  background: var(--black);
}

.about-section .section-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-portrait {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: 16px;
  overflow: hidden;
}

.about-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%) contrast(1.05);
  transition: transform 0.8s var(--ease-out-expo), filter 0.8s;
}

.about-portrait:hover img {
  transform: scale(1.03);
  filter: grayscale(0%) contrast(1.05);
}

.about-portrait::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.4), transparent 40%);
  pointer-events: none;
}

.about-portrait-frame {
  position: absolute;
  inset: -1px;
  border: 1px solid var(--gold-dim);
  border-radius: 16px;
  pointer-events: none;
}

.about-text h3 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 24px;
}

.about-text p {
  font-family: var(--font-heading);
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 20px;
  font-weight: 400;
}

.about-stats {
  display: flex;
  gap: 48px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.about-stat-value {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2.4rem);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}

.about-stat-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.contact-section {
  background: var(--black-warm);
  border-top: 1px solid var(--border);
  text-align: center;
}

.contact-section .section-inner {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-heading {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 24px;
}

.contact-sub {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 48px;
  font-weight: 400;
  line-height: 1.7;
}

.contact-email-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  background: transparent;
  border: 1px solid var(--gold);
  border-radius: 100px;
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  transition: all 0.4s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}

.contact-email-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out-expo);
  border-radius: 100px;
}

.contact-email-btn:hover {
  color: var(--black);
}

.contact-email-btn:hover::before {
  transform: scaleX(1);
}

.contact-email-btn span {
  position: relative;
  z-index: 1;
}

.contact-email-btn svg {
  position: relative;
  z-index: 1;
  width: 18px;
  height: 18px;
  transition: transform 0.3s var(--ease-spring);
}

.contact-email-btn:hover svg { transform: scale(1.1); }

.contact-tooltip {
  height: 0;
  overflow: visible;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  pointer-events: none;
  padding-top: 12px;
  transition: opacity 0.3s;
}

.contact-tooltip.show {
  opacity: 1;
}

.contact-platforms {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}

.contact-platform-link {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  transition: all 0.3s var(--ease-out-expo);
}

.contact-platform-link:hover {
  border-color: var(--gold-dim);
  color: var(--gold);
  background: var(--gold-dim);
  transform: translateY(-3px);
}

.contact-platform-link svg { width: 20px; height: 20px; }

.footer {
  padding: 32px 48px 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border);
  background: var(--black);
  position: relative;
  z-index: 1;
}

.footer-copy {
  font-size: 0.7rem;
  color: var(--text-dim);
  letter-spacing: 0.1em;
}

.footer-back-top {
  font-size: 0.7rem;
  color: var(--text-dim);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-back-top:hover { color: var(--gold); }

.footer-back-top svg {
  width: 14px;
  height: 14px;
  transition: transform 0.3s var(--ease-spring);
}

.footer-back-top:hover svg { transform: translateY(-3px); }

.sticky-player {
  position: fixed;
  bottom: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: min(92%, 780px);
  padding: 14px 28px;
  background: rgba(13, 12, 11, 0.92);
  backdrop-filter: blur(40px) saturate(1.5);
  -webkit-backdrop-filter: blur(40px) saturate(1.5);
  border: 1px solid var(--border-hover);
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.7),
    0 0 0 1px rgba(255, 255, 255, 0.03) inset,
    0 0 40px rgba(201, 168, 76, 0.03);
  transition: bottom 0.6s var(--ease-out-expo);
  z-index: 500;
}

.sticky-player.visible { bottom: 28px; }

.sticky-info {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 120px;
  max-width: 200px;
}

.sticky-track-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 400;
  color: var(--text);
}

.sticky-controls {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-grow: 1;
}

.sticky-controls .play-btn {
  width: 38px;
  height: 38px;
  background: var(--gold);
  color: var(--black);
}

.sticky-controls .play-btn:hover {
  background: var(--gold-light);
}

.sticky-controls .time-display {
  color: var(--text-secondary);
}

.volume-control {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-dim);
  flex-shrink: 0;
}

.volume-control svg {
  width: 16px;
  height: 16px;
  opacity: 0.6;
  flex-shrink: 0;
}

.volume-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 72px;
  height: 3px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 3px;
  outline: none;
  cursor: pointer;
}

.volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  cursor: pointer;
  transition: transform 0.2s var(--ease-spring);
}

.volume-slider::-webkit-slider-thumb:hover { transform: scale(1.3); }

.volume-slider::-moz-range-thumb {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  border: none;
  cursor: pointer;
}

.sticky-close {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  border-radius: 50%;
  transition: all 0.2s;
  flex-shrink: 0;
  margin-left: 4px;
}

.sticky-close:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
}

.sticky-close svg { width: 16px; height: 16px; }

.section-divider {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

@media (max-width: 1024px) {
  .about-section .section-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-portrait {
    max-width: 400px;
    margin: 0 auto;
  }

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

@media (max-width: 768px) {
  .section { padding: 80px 24px; }

  .nav { padding: 20px 24px; }
  .nav.scrolled { padding: 14px 24px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .hero-portrait {
    width: 120px;
    height: 120px;
    margin-bottom: 36px;
  }

  .hero-platforms {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }

  .hero-platforms a {
    width: 100%;
    max-width: 240px;
    justify-content: center;
  }

  .music-tabs {
    width: 100%;
  }

  .music-tab {
    flex: 1;
    text-align: center;
    padding: 12px 16px;
    font-size: 0.65rem;
  }

  .about-stats {
    gap: 32px;
    flex-wrap: wrap;
  }

  .track-actions {
    opacity: 1;
    transform: none;
  }

  .footer { padding: 24px 24px 100px; flex-direction: column; gap: 12px; }

  .sticky-player {
    width: 96%;
    padding: 12px 18px;
    gap: 14px;
    border-radius: 14px;
  }

  .sticky-info { min-width: 80px; max-width: 120px; }
  .sticky-track-name { font-size: 0.85rem; }
  .volume-control { display: none; }

  .sticky-player.visible { bottom: 16px; }
}

@media (max-width: 480px) {
  .hero-name { font-size: 3rem; }
  .section { padding: 60px 18px; }
  .track-item { padding: 14px; }
  .track-title { font-size: 1rem; }
  .about-stats { gap: 24px; }
  .contact-heading { font-size: 2.2rem; }
}


.loading-state {
  text-align: center;
  padding: 60px 0;
  color: var(--text-dim);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
}


body.nav-open {
  overflow: hidden;
}

.track-list {
  min-height: 200px;
}

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

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 480px) {
  .hide-mobile { display: none; }
}
