/* ============================================================
   TRISS H — Official Artist Page
   Premium Dark Neon Design System
   ============================================================ */

:root {
  --accent: #c084fc;
  /* purple-400 */
  --accent2: #f0abfc;
  /* fuchsia-300 */
  --accent3: #fb7185;
  /* rose-400 */
  --gold: #fbbf24;
  --bg: #06030d;
  --bg2: #0d0818;
  --bg3: #130f22;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-hover: rgba(255, 255, 255, 0.08);
  --border: rgba(192, 132, 252, 0.2);
  --border-hover: rgba(192, 132, 252, 0.5);
  --text: #f5f0ff;
  --text-muted: rgba(245, 240, 255, 0.55);
  --nav-h: 72px;
  --radius: 16px;
  --radius-lg: 24px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --glow: 0 0 40px rgba(192, 132, 252, 0.35);
  --glow-sm: 0 0 20px rgba(192, 132, 252, 0.25);
}

/* ===== RESET ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
}

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 3px;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  z-index: 999;
  transition: background var(--transition), backdrop-filter var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
  background: rgba(6, 3, 13, 0.85);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border), 0 4px 30px rgba(0, 0, 0, 0.5);
}

.nav-brand {
  font-size: 1.7rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  background: linear-gradient(135deg, var(--text) 0%, var(--accent2) 60%, var(--accent3) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-brand span {
  font-style: italic;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.nav-links a:hover {
  color: var(--text);
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('img/portada.jpg') center top / cover no-repeat;
  transform: scale(1.05);
  transition: transform 10s ease;
  filter: saturate(1.15) brightness(0.55);
}

.hero:hover .hero-bg {
  transform: scale(1.0);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, var(--bg) 0%, transparent 45%),
    linear-gradient(135deg, rgba(6, 3, 13, 0.7) 0%, rgba(90, 20, 120, 0.3) 50%, rgba(6, 3, 13, 0.6) 100%);
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.particle {
  position: absolute;
  border-radius: 50%;
  animation: float-up var(--dur) linear infinite;
  opacity: 0;
}

@keyframes float-up {
  0% {
    transform: translateY(100vh) scale(0);
    opacity: 0;
  }

  10% {
    opacity: 0.6;
  }

  90% {
    opacity: 0.2;
  }

  100% {
    transform: translateY(-20vh) scale(1.2);
    opacity: 0;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 1rem;
  animation: fade-up 1s ease both;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent2);
  margin-bottom: 1rem;
  animation: fade-up 1s 0.2s ease both;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(5rem, 15vw, 12rem);
  line-height: 0.9;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  animation: fade-up 1s 0.3s ease both;
}

.hero-name {
  display: inline-block;
  background: linear-gradient(135deg, #fff 0%, var(--accent2) 50%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 40px rgba(192, 132, 252, 0.4));
}

.hero-name.accent {
  font-style: italic;
  background: linear-gradient(135deg, var(--accent2) 0%, var(--accent3) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-tagline {
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  font-weight: 300;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  margin-bottom: 3rem;
  animation: fade-up 1s 0.45s ease both;
}

.hero-cta {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fade-up 1s 0.6s ease both;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: fade-up 1s 1s ease both;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {

  0%,
  100% {
    transform: scaleY(0.3);
    opacity: 0.4;
  }

  50% {
    transform: scaleY(1);
    opacity: 1;
  }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: all var(--transition);
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent3) 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(192, 132, 252, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 35px rgba(192, 132, 252, 0.6);
}

.btn-ghost {
  border: 1.5px solid var(--border-hover);
  color: var(--text);
  background: transparent;
}

.btn-ghost:hover {
  background: var(--surface-hover);
  border-color: var(--accent2);
  box-shadow: var(--glow-sm);
}

.btn-add {
  background: var(--surface);
  border: 1.5px dashed var(--border-hover);
  color: var(--accent2);
  border-radius: 50px;
  padding: 0.8rem 2rem;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all var(--transition);
}

.btn-add:hover {
  background: var(--surface-hover);
  border-color: var(--accent);
  box-shadow: var(--glow-sm);
  transform: translateY(-2px);
}

/* ===== NOW PLAYING BAR ===== */
.now-playing-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 70px;
  background: rgba(13, 8, 24, 0.92);
  backdrop-filter: blur(24px);
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  padding: 0 2rem;
  gap: 1.5rem;
  z-index: 998;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 -8px 40px rgba(192, 132, 252, 0.1);
}

.now-playing-bar.visible {
  transform: translateY(0);
}

.np-info {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 0;
  flex: 1;
}

.np-pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
  animation: pulse-glow 1.5s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pulse-glow {

  0%,
  100% {
    box-shadow: 0 0 5px var(--accent);
    transform: scale(1);
  }

  50% {
    box-shadow: 0 0 15px var(--accent), 0 0 30px rgba(192, 132, 252, 0.3);
    transform: scale(1.2);
  }
}

.np-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
}

.np-track {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.np-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.np-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all var(--transition);
  font-size: 0.95rem;
}

.np-btn:hover {
  color: var(--text);
  background: var(--surface-hover);
}

.np-play {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--accent), var(--accent3));
  color: #fff;
  box-shadow: 0 0 20px rgba(192, 132, 252, 0.4);
}

.np-play:hover {
  transform: scale(1.1);
  box-shadow: 0 0 30px rgba(192, 132, 252, 0.6);
}

.np-right {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
  justify-content: flex-end;
}

.np-vol-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.np-vol-icon {
  color: var(--text-muted);
  font-size: 0.85rem;
  cursor: pointer;
  transition: color var(--transition);
}

.np-vol-icon:hover {
  color: var(--accent);
}

.np-volume {
  -webkit-appearance: none;
  width: 80px;
  height: 3px;
  border-radius: 3px;
  background: var(--surface-hover);
  outline: none;
  cursor: pointer;
}

.np-volume::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  cursor: pointer;
  box-shadow: 0 0 6px var(--accent);
}

.np-progress-container {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.np-time {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 500;
  width: 32px;
  text-align: center;
}

.np-progress-bar {
  position: relative;
  width: 120px;
  height: 3px;
  background: var(--surface-hover);
  border-radius: 3px;
  cursor: pointer;
}

.np-progress-fill {
  height: 100%;
  background: linear-gradient(to right, var(--accent), var(--accent3));
  border-radius: 3px;
  transition: width 0.1s linear;
}

.np-progress-thumb {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(192, 132, 252, 0.8);
  transition: left 0.1s linear;
  pointer-events: none;
}

/* ===== SECTIONS ===== */
.section {
  padding: 100px 5% 80px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--accent2);
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  line-height: 1.15;
  background: linear-gradient(135deg, var(--text) 0%, var(--accent2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.section-title.left {
  text-align: left;
}

.title-deco {
  width: 60px;
  height: 3px;
  background: linear-gradient(to right, var(--accent), var(--accent3));
  border-radius: 3px;
  margin: 0 auto;
}

.title-deco.left {
  margin: 0;
}

/* ===== MUSIC SECTION ===== */
.music-section {
  background:
    radial-gradient(ellipse at 20% 50%, rgba(120, 50, 180, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(200, 80, 120, 0.06) 0%, transparent 50%),
    var(--bg2);
}

.tracks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}

/* ===== TRACK CARD ===== */
.track-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  cursor: pointer;
  position: relative;
}

.track-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-hover);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), var(--glow-sm);
}

.track-card.playing {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), var(--glow);
}

.track-cover {
  position: relative;
  height: 220px;
  background: linear-gradient(135deg, #1a0a30 0%, #2d1050 50%, #1a0a25 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.track-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.track-cover-default {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.3);
  font-size: 3rem;
  z-index: 1;
}

.track-cover-default span {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.2);
}

.track-cover-vinyl {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.vinyl {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: conic-gradient(from 0deg,
      #0d0818 0%, #1a0a30 10%, #0d0818 20%, #1a0a30 30%,
      #0d0818 40%, #1a0a30 50%, #0d0818 60%, #1a0a30 70%,
      #0d0818 80%, #1a0a30 90%, #0d0818 100%);
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition);
}

.vinyl::before {
  content: '';
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent2) 0%, var(--accent) 100%);
  box-shadow: 0 0 10px var(--accent);
}

.track-card.playing .vinyl {
  animation: spin 4s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.track-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: opacity var(--transition);
  z-index: 5;
}

.track-card:hover .track-play-overlay {
  opacity: 1;
}

.track-card.playing .track-play-overlay {
  opacity: 1;
}

.track-play-btn {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent3));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #fff;
  box-shadow: 0 0 30px rgba(192, 132, 252, 0.6);
  transition: transform 0.2s ease;
}

.track-card:hover .track-play-btn {
  transform: scale(1.1);
}

.track-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(192, 132, 252, 0.15);
  border: 1px solid var(--accent);
  border-radius: 50px;
  padding: 0.2rem 0.7rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent2);
  z-index: 6;
  backdrop-filter: blur(10px);
}

.track-body {
  padding: 1.2rem 1.4rem 1.4rem;
}

.track-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.3rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.track-artist {
  font-size: 0.82rem;
  color: var(--accent2);
  font-weight: 500;
  margin-bottom: 1rem;
}

.track-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.track-year {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}

.track-listen-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent2);
  padding: 0.4rem 1rem;
  border: 1px solid var(--border-hover);
  border-radius: 50px;
  transition: all var(--transition);
}

.track-listen-btn:hover,
.track-card.playing .track-listen-btn {
  background: linear-gradient(135deg, var(--accent), var(--accent3));
  border-color: transparent;
  color: #fff;
  box-shadow: var(--glow-sm);
}

/* ===== ADD TRACK MODAL ===== */
.add-track-wrap {
  text-align: center;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
  padding: 1rem;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.modal-box {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7), var(--glow-sm);
  transform: scale(0.95);
  transition: transform var(--transition);
}

.modal-overlay.open .modal-box {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--surface-hover);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: all var(--transition);
}

.modal-close:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.1);
}

.modal-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--accent2);
}

.form-group {
  margin-bottom: 1.2rem;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.form-input {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(192, 132, 252, 0.15);
}

.form-input::placeholder {
  color: var(--text-muted);
}

textarea.form-input {
  resize: vertical;
}

.file-drop {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.5rem;
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  color: var(--text-muted);
  transition: all var(--transition);
  cursor: pointer;
  font-size: 0.9rem;
  text-align: center;
}

.file-drop:hover {
  border-color: var(--accent);
  color: var(--accent2);
  background: rgba(192, 132, 252, 0.05);
}

.file-drop i {
  font-size: 1.8rem;
  margin-bottom: 0.2rem;
}

.modal-submit {
  width: 100%;
  justify-content: center;
  margin-top: 0.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* ===== ABOUT ===== */
.about-section {
  background: var(--bg);
}

.about-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-img-ring {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent3), var(--accent2));
  padding: 3px;
  margin: 0 auto;
  box-shadow: var(--glow);
  animation: ring-pulse 4s ease-in-out infinite;
}

@keyframes ring-pulse {

  0%,
  100% {
    box-shadow: 0 0 30px rgba(192, 132, 252, 0.4);
  }

  50% {
    box-shadow: 0 0 60px rgba(192, 132, 252, 0.7), 0 0 100px rgba(240, 171, 252, 0.2);
  }
}

.about-img-placeholder {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: url('img/portada.jpg') center top / cover no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.about-img-placeholder i,
.about-img-placeholder span {
  display: none;
}

.about-stat-card {
  position: absolute;
  background: rgba(13, 8, 24, 0.9);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.9rem 1.3rem;
  text-align: center;
  backdrop-filter: blur(10px);
  box-shadow: var(--glow-sm);
}

.stat-1 {
  bottom: -10px;
  right: -20px;
}

.stat-2 {
  top: 20px;
  left: -30px;
}

.stat-num {
  display: block;
  font-size: 1.8rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--accent2), var(--accent3));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.about-bio {
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 1.2rem;
  font-size: 1rem;
}

.about-socials {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.social-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--text-muted);
  transition: all var(--transition);
}

.social-link:hover {
  border-color: var(--accent);
  color: var(--accent2);
  background: rgba(192, 132, 252, 0.1);
  box-shadow: var(--glow-sm);
  transform: translateY(-3px);
}

/* ===== CONTACT ===== */
.contact-section {
  background:
    radial-gradient(ellipse at 50% 100%, rgba(120, 50, 180, 0.12) 0%, transparent 70%),
    var(--bg2);
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.contact-success {
  display: none;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.2rem;
  padding: 1rem 1.5rem;
  background: rgba(192, 132, 252, 0.1);
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  color: var(--accent2);
  font-weight: 600;
}

.contact-success.show {
  display: flex;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 2.5rem 5%;
  padding-bottom: calc(2.5rem + 70px);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-brand {
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  background: linear-gradient(135deg, var(--text) 0%, var(--accent2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-socials {
  display: flex;
  gap: 1rem;
}

.footer-socials a {
  color: var(--text-muted);
  font-size: 1.1rem;
  transition: color var(--transition);
}

.footer-socials a:hover {
  color: var(--accent2);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: rgba(6, 3, 13, 0.97);
    backdrop-filter: blur(20px);
    padding: 2rem;
    gap: 1.5rem;
    border-bottom: 1px solid var(--border);
  }

  .nav-toggle {
    display: flex;
  }

  .hero-title {
    font-size: clamp(4rem, 20vw, 6rem);
  }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about-visual {
    order: -1;
  }

  .stat-1,
  .stat-2 {
    position: static;
    display: inline-flex;
    margin: 0.5rem;
  }

  .about-img-ring {
    width: 220px;
    height: 220px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .now-playing-bar {
    padding: 0 1rem;
    gap: 0.8rem;
  }

  .np-vol-wrap,
  .np-progress-container {
    display: none;
  }

  .np-info {
    flex: 1;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .tracks-grid {
    grid-template-columns: 1fr;
  }
}