/* ============================================================
   AFROBOY — Future Rock
   Design: minimalist dark, #FF972E accent
   ============================================================ */

:root {
  --bg:          #090909;
  --surface:     #111111;
  --surface-2:   #181818;
  --surface-3:   #1f1f1f;
  --orange:      #FF972E;
  --orange-dim:  rgba(255, 151, 46, 0.12);
  --orange-glow: rgba(255, 151, 46, 0.25);
  --white:       #ffffff;
  --white-70:    rgba(255, 255, 255, 0.7);
  --white-40:    rgba(255, 255, 255, 0.4);
  --white-15:    rgba(255, 255, 255, 0.15);
  --white-08:    rgba(255, 255, 255, 0.08);
  --white-04:    rgba(255, 255, 255, 0.04);
  --font-h:      'Space Grotesk', sans-serif;
  --font-b:      'Inter', sans-serif;
  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
  --max:         1180px;
  --nav-h:       64px;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-b);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }

/* ---- TYPOGRAPHY ---- */
h1, h2 { font-family: 'Bebas Neue', sans-serif; font-weight: 400; letter-spacing: 0.03em; line-height: 1; }
h3, h4 { font-family: var(--font-h); font-weight: 700; letter-spacing: -0.02em; }
.label {
  display: inline-block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.25em;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 10px;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background 0.3s var(--ease), backdrop-filter 0.3s var(--ease);
}
.nav.scrolled {
  background: rgba(9, 9, 9, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--white-08);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  height: 100%;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
  font-size: 22px;
  letter-spacing: 0.12em;
  color: var(--orange);
  transition: opacity 0.2s;
}
.nav-logo:hover { opacity: 0.8; }

.nav-links {
  display: flex;
  gap: 40px;
}
.nav-links a {
  font-family: var(--font-b);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--white-70);
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform 0.25s var(--ease);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
}
.nav-toggle span {
  display: block;
  height: 1.5px;
  background: var(--white);
  transition: transform 0.3s var(--ease), opacity 0.3s;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 20%;
  background-repeat: no-repeat;
  transform: scale(1.05);
  transition: transform 8s ease-out;
}
.hero-bg.loaded { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(9,9,9,0.3) 0%,
    rgba(9,9,9,0.2) 40%,
    rgba(9,9,9,0.75) 80%,
    rgba(9,9,9,1) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  animation: fadeUp 1.2s var(--ease) both;
}
.hero-tag {
  font-family: var(--font-h);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.35em;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 20px;
  display: block;
  text-shadow: 1px 1px 0 #000, -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 0 0 10px rgba(0,0,0,0.9);
}
.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(80px, 13vw, 160px);
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 0.9;
  color: var(--white);
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--white-70);
  margin-bottom: 48px;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-h);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--white);
  border: 1px solid var(--white-40);
  padding: 14px 32px;
  transition: border-color 0.25s, color 0.25s, background 0.25s;
}
.hero-cta:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: var(--orange-dim);
}
.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-h);
  font-size: 9px;
  letter-spacing: 0.3em;
  color: var(--white-40);
  z-index: 2;
  animation: pulse 2s ease-in-out infinite;
}

/* ============================================================
   SECTIONS — general
   ============================================================ */
.section-wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 100px 24px;
}
.section-dark {
  background: var(--surface);
  border-top: 1px solid var(--white-08);
  border-bottom: 1px solid var(--white-08);
}
.section-dark .section-wrap { padding: 100px 24px; }
.section-header {
  margin-bottom: 24px;
}
.section-header h2 {
  font-size: 42px;
  font-weight: 400;
}
.section-desc {
  margin-top: 12px;
  color: var(--white-40);
  font-size: 15px;
  max-width: 480px;
}
.subsection-title {
  font-family: var(--font-h);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--white-40);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--white-08);
}

/* ============================================================
   PLAYER
   ============================================================ */
.player {
  display: grid;
  grid-template-columns: 200px 1fr 120px;
  gap: 0;
  background: var(--surface);
  border: 1px solid var(--white-08);
  margin-bottom: 2px;
}
.player-cover-col {
  position: relative;
}
.player-cover-wrap {
  position: relative;
  width: 200px;
  height: 200px;
  overflow: hidden;
  flex-shrink: 0;
}
.player-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
  display: block;
}
.player.is-playing .player-cover { transform: scale(1.04); }
.player-cover-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(255,151,46,0.15) 100%);
  pointer-events: none;
}
.player-eq {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 24px;
  opacity: 0;
  transition: opacity 0.3s;
}
.player.is-playing .player-eq { opacity: 1; }
.player-eq span {
  display: block;
  width: 3px;
  background: var(--orange);
  border-radius: 1px;
  animation: eq 0.8s ease-in-out infinite;
}
.player-eq span:nth-child(1) { height: 40%; animation-delay: 0s; }
.player-eq span:nth-child(2) { height: 80%; animation-delay: 0.1s; }
.player-eq span:nth-child(3) { height: 60%; animation-delay: 0.2s; }
.player-eq span:nth-child(4) { height: 100%; animation-delay: 0.15s; }
.player-eq span:nth-child(5) { height: 50%; animation-delay: 0.05s; }

.player-main {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px 28px;
  min-width: 0;
}
.player-meta {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.player-num {
  font-family: var(--font-h);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--orange);
  flex-shrink: 0;
  margin-top: 4px;
}
.player-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  font-weight: 400;
  letter-spacing: 0.04em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.player-artist {
  font-size: 13px;
  color: var(--white-40);
  margin-top: 3px;
}

.player-progress-wrap {
  margin: 4px 0;
}
.player-progress {
  position: relative;
  height: 3px;
  background: var(--white-08);
  cursor: pointer;
  border-radius: 2px;
  overflow: visible;
}
.player-progress:hover .player-progress-thumb { opacity: 1; }
.player-progress-fill {
  position: absolute;
  top: 0; left: 0;
  height: 100%;
  background: var(--orange);
  border-radius: 2px;
  width: 0%;
  transition: width 0.1s linear;
  pointer-events: none;
}
.player-progress-thumb {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  background: var(--orange);
  border-radius: 50%;
  left: 0%;
  opacity: 0;
  transition: opacity 0.2s, left 0.1s linear;
  pointer-events: none;
}
.player-time {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-size: 11px;
  color: var(--white-40);
  font-variant-numeric: tabular-nums;
}

.player-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}
.btn-ctrl {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s, transform 0.15s;
  color: var(--white-70);
}
.btn-ctrl:hover { color: var(--white); }
.btn-ctrl:active { transform: scale(0.9); }
.btn-ctrl svg { width: 20px; height: 20px; }
.btn-play {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  color: var(--bg) !important;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.15s !important;
}
.btn-play:hover { background: var(--orange) !important; transform: scale(1.06) !important; }
.btn-play:active { transform: scale(0.95) !important; }
.btn-play svg { width: 22px; height: 22px; }

.player-side {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-left: 1px solid var(--white-08);
}
.player-volume {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex: 1;
}
.vol-icon { width: 16px; height: 16px; color: var(--white-40); }
.volume-track {
  position: relative;
  width: 2px;
  flex: 1;
  max-height: 80px;
  background: var(--white-08);
  border-radius: 1px;
  overflow: hidden;
  cursor: pointer;
}
.volume-fill {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: var(--orange);
  border-radius: 1px;
  pointer-events: none;
}
.volume-slider {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  writing-mode: vertical-lr;
  direction: rtl;
  -webkit-appearance: slider-vertical;
}
.btn-download-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 10px 12px;
  border: 1px solid var(--orange);
  color: var(--orange);
  font-family: var(--font-h);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: background 0.2s, color 0.2s;
  text-align: center;
  width: 100%;
}
.btn-download-main svg { width: 18px; height: 18px; }
.btn-download-main:hover {
  background: var(--orange);
  color: var(--bg);
}

/* ============================================================
   TRACK LIST
   ============================================================ */
.track-list {
  border: 1px solid var(--white-08);
  border-top: none;
}
.track-item {
  display: grid;
  grid-template-columns: 36px 52px 1fr auto 36px 80px;
  align-items: center;
  gap: 0 16px;
  padding: 10px 20px 10px 16px;
  border-bottom: 1px solid var(--white-04);
  cursor: pointer;
  transition: background 0.18s var(--ease);
}
.track-item:last-child { border-bottom: none; }
.track-item:hover { background: var(--white-04); }
.track-item.active { background: var(--orange-dim); }
.track-item.active .track-num { color: var(--orange); }

.track-num {
  font-family: var(--font-h);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--white-40);
  text-align: center;
  transition: color 0.2s;
}
.track-thumb {
  width: 44px;
  height: 44px;
  object-fit: cover;
  flex-shrink: 0;
}
.track-info { min-width: 0; }
.track-title-text {
  font-family: var(--font-b);
  font-size: 14px;
  font-weight: 400;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}
.track-meta-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 2px;
}
.track-feat-text {
  font-size: 12px;
  color: var(--white-40);
  display: block;
  margin-top: 2px;
}
.track-year {
  font-size: 11px;
  color: var(--white-40);
  font-family: var(--font-h);
  letter-spacing: 0.05em;
}
.track-item.locked {
  opacity: 0.55;
  cursor: default;
  pointer-events: none;
}
.track-item.locked .track-dl {
  pointer-events: all;
}
.track-locked-badge {
  font-family: var(--font-h);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--orange);
  border: 1px solid rgba(255,151,46,0.4);
  padding: 3px 7px;
  white-space: nowrap;
  flex-shrink: 0;
}
.track-duration {
  font-size: 12px;
  color: var(--white-40);
  font-variant-numeric: tabular-nums;
  text-align: right;
  min-width: 36px;
}
.track-play-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-40);
  border: 1px solid var(--white-15);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  flex-shrink: 0;
}
.track-play-icon svg { width: 12px; height: 12px; }
.track-item:hover .track-play-icon,
.track-item.active .track-play-icon {
  border-color: var(--orange);
  color: var(--orange);
}
.track-item.active.is-paused .track-play-icon {
  background: none;
}
.track-item.active:not(.is-paused) .track-play-icon {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--bg);
}
.track-dl {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-h);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--orange);
  border: 1px solid rgba(255,151,46,0.35);
  padding: 5px 10px;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.track-dl svg { width: 12px; height: 12px; flex-shrink: 0; }
.track-dl:hover { background: var(--orange); color: var(--bg); }

/* ============================================================
   PORTFOLIO PLAYER
   ============================================================ */
.portfolio-player {
  display: grid;
  grid-template-columns: 160px 1fr 240px;
  gap: 0;
  background: var(--surface-2);
  border: 1px solid var(--white-08);
  margin-bottom: 16px;
}
.pp-cover-col { position: relative; }
.pp-cover {
  width: 160px;
  height: 160px;
  object-fit: cover;
  display: block;
  filter: grayscale(20%);
}
.pp-main {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px 24px;
  min-width: 0;
}
.pp-meta { margin-bottom: 4px; }
.pp-artist {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.pp-track {
  font-size: 13px;
  color: var(--white-70);
  margin-top: 2px;
}
.pp-role {
  font-size: 11px;
  color: var(--orange);
  font-family: var(--font-b);
  letter-spacing: 0.05em;
  margin-top: 6px;
}
.pp-progress-wrap { margin: 4px 0; }
.pp-progress {
  position: relative;
  height: 2px;
  background: var(--white-08);
  cursor: pointer;
  border-radius: 1px;
}
.pp-progress-fill {
  position: absolute;
  top: 0; left: 0;
  height: 100%;
  background: var(--orange);
  border-radius: 1px;
  width: 0%;
  pointer-events: none;
}
.pp-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}
.pp-btn-play {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--white);
  color: var(--bg) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s !important;
}
.pp-btn-play:hover { background: var(--orange) !important; }
.pp-btn-play svg { width: 18px; height: 18px; }

.pp-tracklist {
  border-left: 1px solid var(--white-08);
  display: flex;
  flex-direction: column;
  justify-content: stretch;
}
.pp-track-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 16px;
  cursor: pointer;
  border-bottom: 1px solid var(--white-04);
  transition: background 0.18s;
  min-height: 52px;
}
.pp-track-item:last-child { border-bottom: none; }
.pp-track-item:hover { background: var(--white-04); }
.pp-track-item.active { background: var(--orange-dim); }
.pp-track-item.active .pp-tn { color: var(--orange); }
.pp-tn {
  font-family: var(--font-h);
  font-size: 11px;
  font-weight: 600;
  color: var(--white-40);
  flex-shrink: 0;
  width: 20px;
}
.pp-ti { flex: 1; min-width: 0; }
.pp-ti span {
  display: block;
  font-family: var(--font-b);
  font-size: 14px;
  font-weight: 400;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pp-tart {
  font-family: var(--font-b) !important;
  font-size: 11px !important;
  color: var(--white-40);
  font-weight: 400 !important;
}
.pp-spotify {
  color: #1DB954;
  font-size: 16px;
  flex-shrink: 0;
  transition: transform 0.2s;
}
.pp-spotify:hover { transform: scale(1.15); }
.pp-note {
  font-size: 12px;
  color: var(--white-40);
  margin-top: 8px;
}
.pp-note code {
  font-family: monospace;
  color: var(--orange);
  background: var(--orange-dim);
  padding: 1px 5px;
  border-radius: 2px;
}

@media (max-width: 720px) {
  .portfolio-player {
    grid-template-columns: 1fr;
  }
  .pp-cover { width: 100%; height: 180px; }
  .pp-tracklist { border-left: none; border-top: 1px solid var(--white-08); }
}

/* ============================================================
   BIO
   ============================================================ */
.bio-wrap {
  border-top: 1px solid var(--white-08);
  position: relative;
  overflow: hidden;
}
.bio-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/artist/afroboy.jpg') center 20% / cover no-repeat;
  opacity: 0.10;
  pointer-events: none;
}
.bio-grid {
  position: relative;
  z-index: 1;
  max-width: 720px;
}
.bio-text-col h2 {
  font-size: 42px;
  margin-bottom: 24px;
  margin-top: 8px;
}
.bio-text-col p {
  color: var(--white-70);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 18px;
}
.bio-text-col p strong { color: var(--white); font-weight: 500; }
.bio-text-col p a { color: inherit; text-decoration: underline; text-underline-offset: 3px; transition: color 0.2s; }
.bio-text-col p a:hover { color: var(--orange); }

/* ============================================================
   PLATFORMS
   ============================================================ */
.platforms-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.platform-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  border: 1px solid var(--white-15);
  font-family: var(--font-h);
  font-size: 13px;
  font-weight: 500;
  color: var(--white-70);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.platform-btn i { font-size: 18px; }
.platform-btn:hover {
  border-color: var(--orange);
  color: var(--white);
  background: var(--orange-dim);
}

/* ============================================================
   PRODUCER / PORTFOLIO
   ============================================================ */
.portfolio-block { margin-bottom: 64px; }
.spotify-block { margin-bottom: 0; }
#productor .section-wrap { padding-bottom: 48px; }
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}
.portfolio-card {
  background: var(--surface-2);
  border: 1px solid var(--white-08);
  overflow: hidden;
  transition: border-color 0.2s;
}
.portfolio-card:hover { border-color: var(--white-15); }
.portfolio-card-cover {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  filter: grayscale(30%);
  transition: filter 0.3s;
}
.portfolio-card:hover .portfolio-card-cover { filter: grayscale(0%); }
.portfolio-card-info {
  padding: 14px;
}
.portfolio-card-name {
  font-family: var(--font-h);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}
.portfolio-card-sub {
  font-size: 12px;
  color: var(--white-40);
}
.portfolio-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  font-size: 11px;
  color: var(--orange);
  font-family: var(--font-h);
  font-weight: 500;
}
.portfolio-card-link i { font-size: 12px; }
.portfolio-empty {
  grid-column: 1 / -1;
  padding: 48px;
  border: 1px dashed var(--white-15);
  text-align: center;
  color: var(--white-40);
  font-size: 14px;
}
.spotify-embed-wrap {
  border: 1px solid var(--white-08);
  overflow: hidden;
}
.spotify-embed-wrap iframe { display: block; }

/* ============================================================
   DIRECTO — event cards
   ============================================================ */
#directo {
  position: relative;
  overflow: hidden;
}
#directo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/artist/portfolio-cover.jpg') center center / cover no-repeat;
  opacity: 0.08;
  pointer-events: none;
}
#directo .section-wrap { position: relative; z-index: 1; }
.directo-events { display: flex; flex-direction: column; gap: 2px; }
.event-card {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 24px 28px;
  background: var(--surface);
  border: 1px solid var(--white-08);
  transition: border-color 0.2s;
}
.event-card:hover { border-color: var(--white-15); }
.event-date-col { text-align: center; flex-shrink: 0; width: 52px; }
.event-day {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 42px;
  line-height: 1;
  color: var(--white);
}
.event-month {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px;
  letter-spacing: 0.2em;
  color: var(--orange);
}
.event-info { flex: 1; min-width: 0; }
.event-venue {
  font-family: var(--font-h);
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.event-location {
  font-family: var(--font-b);
  font-size: 13px;
  color: var(--white-40);
  margin-top: 4px;
}
.event-free-badge {
  display: inline-block;
  margin-top: 6px;
  font-family: var(--font-h);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--orange);
  border: 1px solid rgba(255,151,46,0.4);
  padding: 2px 8px;
}
.directo-empty {
  color: var(--white-40);
  font-size: 14px;
  font-family: var(--font-b);
}

/* ============================================================
   MENTORING
   ============================================================ */
.mentoring-desc {
  font-size: 14px;
  color: var(--white-70);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 600px;
}
.mentoring-link {
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.2s;
}
.mentoring-link:hover { opacity: 0.75; }
.mentoring-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.mentoring-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px 24px;
  border: 1px solid var(--white-08);
  background: var(--surface-2);
  transition: border-color 0.25s, background 0.25s;
}
.mentoring-card:hover {
  border-color: var(--orange);
  background: var(--orange-dim);
}
.mentoring-icon {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  border-radius: 4px;
  overflow: hidden;
}
.mentoring-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.mentoring-info { flex: 1; min-width: 0; }
.mentoring-info h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
}
.mentoring-info p {
  font-size: 13px;
  color: var(--white-40);
  line-height: 1.5;
}
.mentoring-card .arrow {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--white-40);
  transition: color 0.2s, transform 0.2s;
}
.mentoring-card:hover .arrow {
  color: var(--orange);
  transform: translateX(4px);
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: #050505;
  border-top: 1px solid var(--white-08);
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 64px 24px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}
.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--orange);
  display: block;
  margin-bottom: 6px;
}
.footer-slogan {
  font-family: var(--font-h);
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--white-40);
}
.footer-contact h4,
.footer-social h4 {
  font-family: var(--font-b);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--white-40);
  margin-bottom: 16px;
}
.footer-contact a {
  display: block;
  font-size: 13px;
  color: var(--white-70);
  margin-bottom: 8px;
  transition: color 0.2s;
}
.footer-contact a:hover { color: var(--orange); }
.footer-booking-label {
  display: block;
  font-family: var(--font-b);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--white-40);
  margin-top: 16px;
  margin-bottom: 8px;
}
.social-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.social-links a {
  font-size: 18px;
  color: var(--white-40);
  transition: color 0.2s;
}
.social-links a:hover { color: var(--orange); }
.footer-bottom {
  max-width: var(--max);
  margin: 0 auto;
  padding: 20px 24px;
  border-top: 1px solid var(--white-08);
  font-size: 12px;
  color: var(--white-40);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
.animate-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.animate-in.visible {
  opacity: 1;
  transform: none;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { opacity: 0.4; }
  50%       { opacity: 0.8; }
}
@keyframes eq {
  0%, 100% { transform: scaleY(0.4); }
  50%       { transform: scaleY(1); }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .mentoring-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .nav-links {
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: rgba(9,9,9,0.97);
    backdrop-filter: blur(16px);
    flex-direction: column;
    gap: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s var(--ease);
    border-bottom: 1px solid var(--white-08);
  }
  .nav-links.open { max-height: 300px; }
  .nav-links a {
    display: block;
    padding: 18px 24px;
    border-bottom: 1px solid var(--white-04);
    font-size: 13px;
  }
  .nav-links a::after { display: none; }
  .nav-toggle { display: flex; }

  .player {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }
  .player-cover-col { order: 1; }
  .player-cover-wrap { width: 100%; height: 240px; }
  .player-main { order: 2; padding: 20px; }
  .player-side {
    order: 3;
    flex-direction: row;
    border-left: none;
    border-top: 1px solid var(--white-08);
    padding: 16px 20px;
  }
  .player-volume { flex-direction: row; gap: 10px; flex: none; }
  .volume-track {
    width: 80px;
    height: 2px;
    max-height: none;
    writing-mode: unset;
  }
  .volume-fill { bottom: unset; left: 0; top: 0; height: 100%; width: 80%; }
  .volume-slider { writing-mode: unset; -webkit-appearance: auto; }
  .btn-download-main { flex-direction: row; width: auto; padding: 10px 20px; }

  .track-item {
    grid-template-columns: 28px 44px 1fr auto 32px;
    gap: 0 10px;
    padding: 10px 14px;
  }
  .track-dl { display: none; }

  .section-wrap { padding: 64px 20px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; padding: 48px 20px 32px; }
}

@media (max-width: 480px) {
  .platforms-grid { gap: 8px; }
  .platform-btn { padding: 11px 16px; font-size: 12px; }
}
