*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; background: #0a0a0a; color: #f0f0f0; }

nav {
  position: sticky; top: 0; z-index: 100;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1rem 2rem;
  background: rgba(10,10,10,0.88);
  backdrop-filter: blur(12px);
  border-bottom: 0.5px solid rgba(255,255,255,0.1);
}
.nav-logo { font-size: 15px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: #f0f0f0; text-decoration: none; }
.nav-links { display: flex; gap: 2rem; flex-wrap: wrap; }
.nav-links a { font-size: 13px; color: rgba(255,255,255,0.55); text-decoration: none; letter-spacing: 0.04em; transition: color 0.2s; }
.nav-links a:hover { color: #f0f0f0; }
.nav-links a.active { color: #f0f0f0; }

.hero {
  min-height: 92vh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 4rem 2rem 3rem;
  background: #0d0d1a url('/assets/hero.jpg') center / cover no-repeat;
  position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(to bottom, rgba(10,10,10,0.25) 0%, rgba(10,10,10,0.55) 55%, rgba(10,10,10,0.92) 100%),
    radial-gradient(ellipse 60% 50% at 70% 30%, rgba(100,60,200,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 60%, rgba(200,80,120,0.10) 0%, transparent 60%);
}
.hero-tag { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 1rem; }
.hero-name { font-size: clamp(36px, 7vw, 64px); font-weight: 500; line-height: 1.05; color: #f0f0f0; position: relative; }
.hero-single { margin-top: 1.5rem; display: flex; align-items: center; gap: 1rem; position: relative; }
.single-art {
  width: 56px; height: 56px; border-radius: 6px; flex-shrink: 0;
  background: linear-gradient(135deg, #7c3aed 0%, #db2777 100%);
  display: flex; align-items: center; justify-content: center;
}
.single-art i { font-size: 24px; color: rgba(255,255,255,0.9); }
.single-info { flex: 1; }
.single-label { font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.4); }
.single-title { font-size: 18px; font-weight: 500; color: #f0f0f0; margin-top: 2px; }
.play-btn {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  background: #fff; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.15s, background 0.15s;
}
.play-btn:hover { transform: scale(1.08); background: #e8e8e8; }
.play-btn i { font-size: 18px; color: #0a0a0a; margin-left: 2px; }
.progress-bar {
  margin-top: 1rem; height: 2px; border-radius: 2px; cursor: pointer;
  background: rgba(255,255,255,0.12); position: relative;
}
.progress-fill { height: 100%; width: 0%; background: #fff; border-radius: 2px; transition: width 0.3s linear; }

section { padding: 4rem 2rem; }
.section-label { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 2rem; }

/* Page header (used on inner pages) */
.page-header { padding: 5rem 2rem 2rem; }
.page-title { font-size: clamp(30px, 6vw, 52px); font-weight: 500; line-height: 1.05; }
.page-subtitle { font-size: 14px; color: rgba(255,255,255,0.45); margin-top: 0.75rem; max-width: 580px; line-height: 1.6; }

.stream-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 10px; }
.stream-card {
  background: rgba(255,255,255,0.04);
  border: 0.5px solid rgba(255,255,255,0.1);
  border-radius: 10px; padding: 1rem;
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; color: inherit;
  transition: background 0.2s, border-color 0.2s;
}
.stream-card:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.2); }
.stream-icon { width: 32px; height: 32px; border-radius: 6px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.stream-icon i { font-size: 16px; color: #fff; }
.stream-name { font-size: 13px; color: rgba(255,255,255,0.8); }

.bio-block { max-width: 580px; }
.bio-block p { font-size: 16px; line-height: 1.8; color: rgba(255,255,255,0.65); margin-bottom: 1rem; }

.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 10px; }
.contact-card {
  background: rgba(255,255,255,0.04);
  border: 0.5px solid rgba(255,255,255,0.1);
  border-radius: 10px; padding: 1.25rem;
}
.contact-label { font-size: 11px; color: rgba(255,255,255,0.35); letter-spacing: 0.06em; margin-bottom: 6px; }
.contact-val { font-size: 14px; color: rgba(255,255,255,0.8); }

.social-row { display: flex; gap: 12px; margin-top: 1.5rem; flex-wrap: wrap; }
.social-btn {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: 8px;
  background: rgba(255,255,255,0.05);
  border: 0.5px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.7); font-size: 13px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.social-btn:hover { background: rgba(255,255,255,0.1); color: #fff; }
.social-btn i { font-size: 16px; }

hr.divider { border: none; border-top: 0.5px solid rgba(255,255,255,0.08); margin: 0 2rem; }

/* Photos */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
}
.photo-card {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  overflow: hidden;
  border: 0.5px solid rgba(255,255,255,0.1);
  background: linear-gradient(135deg, rgba(124,58,237,0.25), rgba(219,39,119,0.18));
  display: flex; align-items: flex-end;
  transition: transform 0.2s, border-color 0.2s;
}
.photo-card:nth-child(3n+2) { background: linear-gradient(135deg, rgba(37,99,235,0.22), rgba(124,58,237,0.18)); }
.photo-card:nth-child(3n+3) { background: linear-gradient(135deg, rgba(219,39,119,0.22), rgba(251,146,60,0.16)); }
.photo-card.wide { grid-column: span 2; aspect-ratio: 2 / 1; }
.photo-card:hover { transform: translateY(-3px); border-color: rgba(255,255,255,0.25); }
.photo-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.photo-caption {
  position: relative; z-index: 1; width: 100%;
  padding: 0.9rem 1rem;
  font-size: 12px; color: rgba(255,255,255,0.85); letter-spacing: 0.04em;
  background: linear-gradient(to top, rgba(10,10,10,0.7), transparent);
}
.photo-icon {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  font-size: 28px; color: rgba(255,255,255,0.35);
}

/* Lyrics */
.lyrics-wrap { max-width: 640px; }
.lyrics-track {
  margin-bottom: 2.5rem;
  border: 0.5px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  background: rgba(255,255,255,0.03);
  overflow: hidden;
}
.lyrics-head {
  display: flex; align-items: center; gap: 12px;
  padding: 1.1rem 1.25rem;
  border-bottom: 0.5px solid rgba(255,255,255,0.08);
}
.lyrics-head .single-art { width: 44px; height: 44px; }
.lyrics-head .single-art i { font-size: 20px; }
.lyrics-track-title { font-size: 16px; font-weight: 500; }
.lyrics-track-meta { font-size: 11px; color: rgba(255,255,255,0.4); letter-spacing: 0.08em; text-transform: uppercase; margin-top: 2px; }
.lyrics-body { padding: 1.5rem 1.5rem 1.75rem; }
.lyrics-body p {
  font-size: 15px; line-height: 2; color: rgba(255,255,255,0.7);
  margin-bottom: 1.25rem; white-space: pre-line;
}
.lyrics-body p:last-child { margin-bottom: 0; }

/* Video */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}
.video-card {
  border: 0.5px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255,255,255,0.03);
  text-decoration: none; color: inherit;
  transition: border-color 0.2s, transform 0.2s;
}
.video-card:hover { border-color: rgba(255,255,255,0.25); transform: translateY(-3px); }
.video-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, rgba(124,58,237,0.3), rgba(219,39,119,0.22));
  display: flex; align-items: center; justify-content: center;
}
.video-card:nth-child(2n) .video-thumb { background: linear-gradient(135deg, rgba(37,99,235,0.28), rgba(124,58,237,0.22)); }
.video-play {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(255,255,255,0.92);
  display: flex; align-items: center; justify-content: center;
}
.video-play i { font-size: 24px; color: #0a0a0a; margin-left: 3px; }
.video-meta { padding: 1rem 1.25rem 1.25rem; }
.video-title { font-size: 15px; font-weight: 500; }
.video-sub { font-size: 12px; color: rgba(255,255,255,0.4); margin-top: 4px; }

footer {
  padding: 2rem;
  border-top: 0.5px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: rgba(255,255,255,0.25);
  flex-wrap: wrap; gap: 0.5rem;
}

@media (max-width: 600px) {
  nav { padding: 1rem; }
  .nav-links { gap: 1.2rem; }
  section { padding: 3rem 1rem; }
  .page-header { padding: 3.5rem 1rem 1.5rem; }
  hr.divider { margin: 0 1rem; }
  footer { padding: 1.5rem 1rem; flex-direction: column; align-items: flex-start; }
  .photo-card.wide { grid-column: span 1; aspect-ratio: 1 / 1; }
}
