/* ========== ROOT VARIABLES ========== */
:root {
  --bg: #080808;
  --bg2: #0f0f0f;
  --bg3: #141414;
  --surface: rgba(255,255,255,0.04);
  --surface2: rgba(255,255,255,0.07);
  --border: rgba(255,255,255,0.08);
  --red: #c0392b;
  --red2: #e74c3c;
  --gold: #c9a84c;
  --gold2: #f0c96a;
  --white: #f0ede8;
  --white2: rgba(240,237,232,0.7);
  --white3: rgba(240,237,232,0.4);
  --font-display: 'Bebas Neue', sans-serif;
  --font-serif: 'Cinzel', serif;
  --font-body: 'Inter', sans-serif;
  --font-italic: 'Playfair Display', serif;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --glow: 0 0 40px rgba(192, 57, 43, 0.25);
  --glow-gold: 0 0 30px rgba(201, 168, 76, 0.2);
}

/* ========== RESET & BASE ========== */
*, *::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-body);
  overflow-x: hidden;
  cursor: none;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
section { position: relative; overflow: hidden; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ========== SCROLLBAR ========== */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 2px; }

/* ========== LOADER ========== */
#loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#loader.hide { opacity: 0; visibility: hidden; pointer-events: none; }

.loader-inner { text-align: center; }

.loader-waves {
  display: flex; gap: 5px; justify-content: center;
  margin-bottom: 24px;
}
.loader-waves span {
  width: 4px; border-radius: 2px;
  background: var(--red);
  animation: loaderWave 1.2s ease-in-out infinite;
}
.loader-waves span:nth-child(1){height:20px;animation-delay:0s}
.loader-waves span:nth-child(2){height:35px;animation-delay:0.1s}
.loader-waves span:nth-child(3){height:50px;animation-delay:0.2s}
.loader-waves span:nth-child(4){height:65px;animation-delay:0.3s}
.loader-waves span:nth-child(5){height:80px;animation-delay:0.4s}
.loader-waves span:nth-child(6){height:65px;animation-delay:0.5s}
.loader-waves span:nth-child(7){height:50px;animation-delay:0.6s}
.loader-waves span:nth-child(8){height:35px;animation-delay:0.7s}
.loader-waves span:nth-child(9){height:20px;animation-delay:0.8s}
.loader-waves span:nth-child(10){height:10px;animation-delay:0.9s}

@keyframes loaderWave {
  0%,100%{transform:scaleY(0.4);opacity:.3}
  50%{transform:scaleY(1);opacity:1}
}

.loader-name {
  font-family: var(--font-display);
  font-size: 2.5rem; letter-spacing: 0.3em;
  color: var(--white);
}
.loader-sub { font-size: 0.75rem; letter-spacing: 0.2em; color: var(--white3); margin-top: 8px; }

/* ========== CUSTOM CURSOR ========== */
.cursor-dot {
  width: 8px; height: 8px; background: var(--red);
  border-radius: 50%;
  position: fixed; pointer-events: none; z-index: 9998;
  transform: translate(-50%,-50%);
  transition: transform 0.1s;
}
.cursor-ring {
  width: 32px; height: 32px;
  border: 1px solid rgba(192,57,43,0.5);
  border-radius: 50%;
  position: fixed; pointer-events: none; z-index: 9997;
  transform: translate(-50%,-50%);
  transition: transform 0.15s, width 0.2s, height 0.2s, border-color 0.2s;
}
.cursor-ring.hover { width: 48px; height: 48px; border-color: var(--gold); }

/* ========== NAVBAR ========== */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 40px;
  transition: background 0.4s, padding 0.4s, backdrop-filter 0.4s;
}
#navbar.scrolled {
  background: rgba(8,8,8,0.92);
  backdrop-filter: blur(20px);
  padding: 12px 40px;
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.8rem; letter-spacing: 0.15em;
  color: var(--red);
}

.nav-links {
  display: flex; list-style: none; gap: 36px;
}
.nav-links a {
  font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--white2);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--red);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.nav-toggle {
  display: none; cursor: pointer; flex-direction: column; gap: 5px;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--white); transition: var(--transition);
}

/* ========== SECTION HEADERS ========== */
.section-bg-text {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(6rem, 15vw, 14rem);
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.015);
  pointer-events: none; white-space: nowrap;
  user-select: none;
}

.section-header {
  text-align: center; margin-bottom: 64px;
}
.section-label {
  display: inline-block;
  font-size: 0.7rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--red); margin-bottom: 12px;
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  letter-spacing: 0.05em; line-height: 1;
  color: var(--white);
}
.section-header h2 em {
  font-family: var(--font-italic); font-style: italic;
  color: var(--gold); font-weight: 400;
}
.header-line {
  width: 60px; height: 2px;
  background: linear-gradient(90deg, var(--red), var(--gold));
  margin: 20px auto 0;
}

/* ========== GLASS ========== */
.glass {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 16px;
}

/* ========== BUTTONS ========== */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 32px;
  background: var(--red);
  color: var(--white);
  font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase;
  border: none; border-radius: 4px; cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  font-family: var(--font-body); font-weight: 600;
}
.btn-primary:hover {
  background: var(--red2);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(192,57,43,0.4);
}

.btn-outline {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 30px;
  background: transparent;
  color: var(--white);
  font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.25); border-radius: 4px; cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font-body); font-weight: 500;
}
.btn-outline:hover {
  background: rgba(255,255,255,0.05);
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

/* ========== HERO ========== */
#hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg);
  position: relative;
}

#particleCanvas {
  position: absolute; inset: 0; z-index: 0;
}

.hero-gradient {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(ellipse 60% 60% at 80% 50%, rgba(192,57,43,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(201,168,76,0.06) 0%, transparent 60%);
  animation: heroGrad 8s ease-in-out infinite alternate;
}
@keyframes heroGrad {
  0%{opacity:0.6} 100%{opacity:1}
}

.hero-content {
  position: relative; z-index: 2;
  display: flex; align-items: center; gap: 80px;
  max-width: 1200px; width: 100%; padding: 0 40px;
  padding-top: 100px;
}

/* Hero Left */
.hero-left { flex: 0 0 auto; }
.hero-img-wrap {
  position: relative; width: 320px; height: 420px;
}
.hero-photo {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top;
  border-radius: 4px;
  position: relative; z-index: 2;
  filter: grayscale(20%) contrast(1.1);
}
.hero-img-glow {
  position: absolute; inset: -20px; z-index: 1;
  background: radial-gradient(ellipse at center, rgba(192,57,43,0.3), transparent 70%);
  animation: pulse 4s ease-in-out infinite;
}
.hero-img-border {
  position: absolute; top: 16px; left: 16px;
  right: -16px; bottom: -16px;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 4px; z-index: 1;
  pointer-events: none;
}
@keyframes pulse {
  0%,100%{transform:scale(1);opacity:.8}
  50%{transform:scale(1.05);opacity:1}
}

/* Hero Right */
.hero-right { flex: 1; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
}
.dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold);
  animation: blink 1.5s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.2} }

.hero-name {
  font-family: var(--font-display);
  font-size: clamp(4rem, 9vw, 8.5rem);
  line-height: 0.9; letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 16px;
}
.hero-name span {
  color: transparent;
  -webkit-text-stroke: 1px rgba(240,237,232,0.35);
  display: block;
}

.hero-roles {
  font-size: 0.85rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--white2); margin-bottom: 20px;
}

.hero-typing-wrap {
  display: flex; align-items: center; gap: 6px;
  font-size: 1.1rem; margin-bottom: 28px;
  color: var(--white2);
}
.typing-text { color: var(--red); font-weight: 500; min-width: 180px; }
.typing-cursor {
  color: var(--red);
  animation: cursorBlink 0.8s step-end infinite;
}
@keyframes cursorBlink { 0%,100%{opacity:1} 50%{opacity:0} }

.hero-wave {
  margin-bottom: 32px;
  height: 60px; width: 100%; max-width: 400px;
}
.hero-wave svg { width: 100%; height: 100%; }
.hero-wave polyline {
  fill: none; stroke: var(--red); stroke-width: 2;
  opacity: 0.7;
}

.hero-buttons {
  display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 36px;
}

.hero-socials {
  display: flex; gap: 20px;
}
.hero-socials a {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border); border-radius: 50%;
  color: var(--white3); font-size: 1rem;
  transition: all var(--transition);
}
.hero-socials a:hover {
  border-color: var(--red); color: var(--red);
  transform: translateY(-3px);
  box-shadow: 0 4px 20px rgba(192,57,43,0.3);
}

.hero-scroll-hint {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  z-index: 2;
  font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--white3);
}
.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--white3), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%{transform:scaleY(0);transform-origin:top}
  50%{transform:scaleY(1);transform-origin:top}
  51%{transform:scaleY(1);transform-origin:bottom}
  100%{transform:scaleY(0);transform-origin:bottom}
}

/* ========== ABOUT ========== */
#about { padding: 120px 0; background: var(--bg2); }

.about-grid {
  display: grid; grid-template-columns: 1fr 360px; gap: 80px; align-items: start;
}

.about-quote {
  font-family: var(--font-italic); font-style: italic;
  font-size: 1.4rem; color: var(--gold);
  border-left: 3px solid var(--red);
  padding-left: 20px; margin-bottom: 32px;
  line-height: 1.5;
}

.about-body p {
  font-size: 0.95rem; line-height: 1.85; color: var(--white2);
  margin-bottom: 14px;
}
.about-body strong { color: var(--white); font-weight: 600; }

.about-genres {
  display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px;
}
.about-genres span {
  padding: 6px 16px;
  font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase;
  border: 1px solid var(--border); border-radius: 100px;
  color: var(--white3);
  transition: all var(--transition);
}
.about-genres span:hover {
  border-color: var(--gold); color: var(--gold);
}

.about-stats-col {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}

.stat-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 12px; padding: 24px 20px;
  text-align: center; transition: all var(--transition);
}
.stat-card:hover {
  background: var(--surface2); border-color: rgba(192,57,43,0.3);
  transform: translateY(-4px);
  box-shadow: var(--glow);
}
.stat-icon {
  font-size: 1.5rem; color: var(--red); margin-bottom: 12px;
}
.stat-number {
  font-family: var(--font-display); font-size: 2.2rem;
  line-height: 1; color: var(--white);
}
.stat-suffix { font-size: 1rem; color: var(--gold); }
.stat-label {
  font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--white3); margin-top: 6px;
}

/* ========== FEATURED WORK ========== */
#work { padding: 120px 0; background: var(--bg); }

.tracks-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px;
}

.track-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px; overflow: hidden;
  transition: all var(--transition);
  position: relative;
}
.track-card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at top, rgba(var(--card-r,192),var(--card-g,57),var(--card-b,43),0.08), transparent 60%);
  pointer-events: none;
}
.track-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255,255,255,0.15);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
}

.track-cover-wrap {
  position: relative; height: 260px; overflow: hidden;
}
.track-cover {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  transition: transform 0.6s ease;
}
.track-card:hover .track-cover { transform: scale(1.05); }

.track-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity var(--transition);
}
.track-card:hover .track-overlay { opacity: 1; }
.track-play-btn {
  width: 64px; height: 64px;
  background: var(--red); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: white;
  transition: transform 0.2s, box-shadow 0.2s;
}
.track-play-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 30px rgba(192,57,43,0.6);
}

.track-badge {
  position: absolute; bottom: 12px; left: 12px;
  padding: 5px 12px;
  font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase;
  background: rgba(0,0,0,0.7); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px; color: var(--gold);
}
.track-badge.apeksha { color: #7eceff; }
.track-badge.fusion { color: #e091f0; }
.track-badge.rath { color: #7af0a0; }

.track-info { padding: 24px; }
.track-info h3 {
  font-family: var(--font-display);
  font-size: 1.8rem; letter-spacing: 0.05em;
  margin-bottom: 6px; color: var(--white);
}
.track-meta {
  font-size: 0.75rem; color: var(--white3);
  letter-spacing: 0.05em; margin-bottom: 12px;
}
.track-desc {
  font-size: 0.875rem; line-height: 1.7; color: var(--white2);
  margin-bottom: 20px;
}
.track-desc strong { color: var(--gold); }

.track-links { display: flex; gap: 10px; flex-wrap: wrap; }

.listen-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 20px;
  font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase;
  border-radius: 4px;
  transition: all var(--transition); font-weight: 500;
}
.listen-btn.spotify { background: #1DB954; color: #000; }
.listen-btn.youtube { background: #FF0000; color: #fff; }
.listen-btn.amazon { background: #FF9900; color: #000; }
.listen-btn.apple { background: #FC3C44; color: #fff; }
.listen-btn:hover { filter: brightness(1.15); transform: translateY(-2px); }

/* ========== PROJECTS / TIMELINE ========== */
#projects { padding: 120px 0; background: var(--bg2); }

.timeline {
  position: relative; max-width: 900px; margin: 0 auto;
}
.timeline::before {
  content: ''; position: absolute;
  left: 50%; top: 0; bottom: 0;
  width: 1px; background: linear-gradient(to bottom, transparent, var(--red), var(--gold), transparent);
  transform: translateX(-50%);
}

.timeline-item {
  display: flex; margin-bottom: 60px; position: relative;
  align-items: flex-start;
}
.timeline-item.left { flex-direction: row-reverse; }
.timeline-item.right { flex-direction: row; }

.timeline-dot {
  position: absolute; left: 50%; top: 32px;
  transform: translateX(-50%);
  width: 14px; height: 14px;
  background: var(--red); border-radius: 50%;
  border: 3px solid var(--bg2);
  box-shadow: 0 0 16px rgba(192,57,43,0.6);
  z-index: 2;
}

.timeline-card {
  width: calc(50% - 50px); padding: 28px 32px;
  border-radius: 16px;
}
.timeline-item.left .timeline-card { margin-right: 50px; }
.timeline-item.right .timeline-card { margin-left: 50px; }

.tl-status {
  display: inline-block;
  font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 100px; margin-bottom: 16px;
}
.tl-status.production { background: rgba(192,57,43,0.2); color: var(--red2); border: 1px solid rgba(192,57,43,0.3); }
.tl-status.recorded { background: rgba(30,215,96,0.1); color: #1ed760; border: 1px solid rgba(30,215,96,0.3); }
.tl-status.composed { background: rgba(201,168,76,0.15); color: var(--gold); border: 1px solid rgba(201,168,76,0.3); }

.tl-icon { font-size: 2rem; margin-bottom: 12px; color: var(--red); }

.timeline-card h3 {
  font-family: var(--font-display); font-size: 2rem;
  letter-spacing: 0.05em; margin-bottom: 12px;
}
.tl-genres { display: flex; gap: 8px; margin-bottom: 12px; flex-wrap: wrap; }
.tl-genres span {
  font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 3px 10px; border: 1px solid var(--border); border-radius: 100px;
  color: var(--white3);
}
.timeline-card p {
  font-size: 0.875rem; line-height: 1.75; color: var(--white2);
  margin-bottom: 16px;
}
.timeline-card p strong { color: var(--white); }
.tl-release {
  font-size: 0.75rem; letter-spacing: 0.1em; color: var(--gold);
  display: flex; align-items: center; gap: 8px;
}

/* ========== INFLUENCES ========== */
#influences { padding: 120px 0; background: var(--bg); }

.chester-tribute {
  display: flex; gap: 60px; align-items: center;
  margin-bottom: 80px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px; padding: 48px;
  position: relative; overflow: hidden;
}
.chester-tribute::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at right, rgba(192,57,43,0.1), transparent 60%);
  pointer-events: none;
}

.chester-quote { flex: 1; }
.chester-quote .fa-quote-left { font-size: 2rem; color: var(--red); margin-bottom: 16px; opacity: 0.5; }
.chester-quote p {
  font-family: var(--font-italic); font-style: italic;
  font-size: 1.4rem; line-height: 1.6; color: var(--white);
  margin-bottom: 16px;
}
.chester-quote span {
  font-size: 0.8rem; letter-spacing: 0.1em; color: var(--gold);
}

.chester-visual {
  flex: 0 0 200px; text-align: center;
  position: relative;
}
.chester-ring {
  width: 160px; height: 160px;
  border-radius: 50%; margin: 0 auto 16px;
  border: 1px solid rgba(192,57,43,0.3);
  box-shadow: 0 0 40px rgba(192,57,43,0.2), inset 0 0 40px rgba(192,57,43,0.1);
  animation: rotate 20s linear infinite;
}
@keyframes rotate { from{transform:rotate(0deg)} to{transform:rotate(360deg)} }
.chester-name {
  font-family: var(--font-display);
  font-size: 1.3rem; letter-spacing: 0.1em;
  color: var(--white); line-height: 1.2;
}
.chester-years { font-size: 0.75rem; color: var(--white3); margin-top: 6px; letter-spacing: 0.15em; }

.influences-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.influence-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 12px; padding: 28px; text-align: center;
  transition: all var(--transition);
}
.influence-card:hover {
  background: var(--surface2); transform: translateY(-6px);
  border-color: rgba(192,57,43,0.3);
  box-shadow: var(--glow);
}
.influence-card.primary {
  border-color: rgba(192,57,43,0.4);
  background: rgba(192,57,43,0.06);
}

.inf-icon {
  width: 56px; height: 56px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; font-size: 1.2rem; font-weight: 900;
  font-family: var(--font-display); font-size: 1.4rem;
}
.inf-icon.lp { background: rgba(192,57,43,0.2); color: var(--red); border: 1px solid rgba(192,57,43,0.4); }
.inf-icon.rock { background: rgba(255,100,50,0.1); color: #ff6432; border: 1px solid rgba(255,100,50,0.3); }
.inf-icon.ghazal { background: rgba(201,168,76,0.1); color: var(--gold); border: 1px solid rgba(201,168,76,0.3); }
.inf-icon.bollywood { background: rgba(255,200,50,0.1); color: #ffc832; border: 1px solid rgba(255,200,50,0.3); }
.inf-icon.pop { background: rgba(200,100,255,0.1); color: #c864ff; border: 1px solid rgba(200,100,255,0.3); }
.inf-icon.nm { background: rgba(100,100,255,0.1); color: #6464ff; border: 1px solid rgba(100,100,255,0.3); }

.influence-card h4 {
  font-family: var(--font-display); font-size: 1.4rem; letter-spacing: 0.05em;
  margin-bottom: 4px;
}
.influence-card > p { font-size: 0.8rem; color: var(--white3); margin-bottom: 12px; }
.inf-tags { display: flex; gap: 6px; justify-content: center; flex-wrap: wrap; }
.inf-tags span {
  font-size: 0.6rem; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 3px 10px; border: 1px solid var(--border); border-radius: 100px;
  color: var(--white3);
}

/* ========== INSTAGRAM ========== */
#instagram { padding: 120px 0; background: var(--bg2); }

.insta-profile {
  display: flex; gap: 40px; align-items: center;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 20px; padding: 40px; margin-bottom: 48px;
}
.insta-avatar {
  width: 100px; height: 100px; border-radius: 50%;
  overflow: hidden; flex-shrink: 0;
  border: 3px solid;
  border-image: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888) 1;
  border-radius: 50%;
  box-shadow: 0 0 0 3px transparent,
    0 0 0 5px #bc1888;
}
.insta-avatar img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(20%); }

.insta-info h3 {
  font-family: var(--font-display); font-size: 1.8rem;
  letter-spacing: 0.05em; margin-bottom: 8px;
}
.insta-info p {
  font-size: 0.875rem; line-height: 1.6; color: var(--white2); margin-bottom: 20px;
}
.insta-btn { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743); }
.insta-btn:hover { filter: brightness(1.1); }

.insta-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px;
  margin-bottom: 40px;
}
.insta-post {
  aspect-ratio: 1; border-radius: 8px; overflow: hidden;
  position: relative; cursor: pointer;
  animation: fadeSlideUp 0.5s ease both;
  animation-delay: var(--delay);
}
.insta-thumb {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; color: rgba(255,255,255,0.2);
  transition: transform 0.4s;
}
.insta-post:hover .insta-thumb { transform: scale(1.1); }
.insta-hover {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex; align-items: center; justify-content: center; gap: 16px;
  opacity: 0; transition: opacity var(--transition);
  color: white; font-size: 1rem;
}
.insta-post:hover .insta-hover { opacity: 1; }

.insta-cta { text-align: center; }

/* ========== STREAMING ========== */
#streaming { padding: 120px 0; background: var(--bg); }

.platform-links {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  margin-bottom: 64px;
}
.platform-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 16px; padding: 32px 20px; text-align: center;
  transition: all var(--transition);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.platform-card i { font-size: 2.5rem; }
.platform-card span { font-family: var(--font-display); font-size: 1.3rem; letter-spacing: 0.05em; }
.platform-card small { font-size: 0.7rem; color: var(--white3); letter-spacing: 0.1em; }

.platform-card:hover { transform: translateY(-8px); }
.platform-card i { color: #1DB954; }
.platform-card.yt i { color: #FF0000; }
.platform-card.amz i { color: #FF9900; }
.platform-card.apple i { color: #FC3C44; }
.platform-card:hover { box-shadow: 0 20px 50px rgba(0,0,0,0.4); border-color: rgba(255,255,255,0.15); }

.featured-player { }
.featured-player h3 {
  font-family: var(--font-display); font-size: 1.8rem; letter-spacing: 0.05em;
  margin-bottom: 20px; color: var(--white);
}
.player-list { display: flex; flex-direction: column; gap: 2px; }

.player-track {
  display: flex; align-items: center; gap: 16px;
  padding: 14px 20px; border-radius: 8px;
  transition: background var(--transition);
  cursor: pointer;
}
.player-track:hover { background: var(--surface); }
.pt-num { font-size: 0.8rem; color: var(--white3); width: 24px; text-align: center; flex-shrink: 0; }
.pt-thumb {
  width: 44px; height: 44px; border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.05em;
  flex-shrink: 0;
}
.pt-info { flex: 1; }
.pt-info strong { display: block; font-size: 0.9rem; font-weight: 500; }
.pt-info span { font-size: 0.75rem; color: var(--white3); }
.pt-badge {
  font-size: 0.65rem; letter-spacing: 0.08em; color: var(--gold);
  white-space: nowrap; padding: 3px 10px;
  border: 1px solid rgba(201,168,76,0.3); border-radius: 100px;
}
.pt-play {
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--surface2); color: var(--white2); font-size: 0.75rem;
  transition: all var(--transition);
}
.pt-play:hover { background: var(--red); color: white; }

/* ========== TESTIMONIALS ========== */
#testimonials { padding: 120px 0; background: var(--bg2); }

.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.testimonial-card {
  padding: 32px;
  transition: all var(--transition);
}
.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201,168,76,0.3);
  box-shadow: var(--glow-gold);
}
.testi-stars { color: var(--gold); font-size: 0.9rem; letter-spacing: 3px; margin-bottom: 16px; }
.testimonial-card > p {
  font-family: var(--font-italic); font-style: italic;
  font-size: 0.95rem; line-height: 1.8; color: var(--white2);
  margin-bottom: 24px;
}
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 700; flex-shrink: 0;
}
.testi-author strong { display: block; font-size: 0.875rem; font-weight: 600; }
.testi-author span { font-size: 0.75rem; color: var(--white3); }

/* ========== CONTACT ========== */
#contact { padding: 120px 0; background: var(--bg); }

.contact-grid {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: start;
}

.contact-info h3 {
  font-family: var(--font-display); font-size: 2.2rem; letter-spacing: 0.05em;
  margin-bottom: 16px;
}
.contact-info > p {
  font-size: 0.9rem; line-height: 1.75; color: var(--white2); margin-bottom: 36px;
}
.contact-details { display: flex; flex-direction: column; gap: 16px; margin-bottom: 36px; }

.contact-item {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 20px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 12px; transition: all var(--transition);
}
.contact-item:hover { border-color: rgba(192,57,43,0.4); background: var(--surface2); }
.ci-icon {
  width: 44px; height: 44px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(192,57,43,0.15); color: var(--red); font-size: 1.1rem;
  flex-shrink: 0;
}
.ci-icon.insta { background: rgba(220,39,67,0.1); color: #e1306c; }
.contact-item strong { display: block; font-size: 0.8rem; letter-spacing: 0.05em; margin-bottom: 2px; }
.contact-item span { font-size: 0.875rem; color: var(--white2); }

.contact-socials { display: flex; gap: 14px; }
.contact-socials a {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border); border-radius: 10px;
  color: var(--white2); font-size: 1rem;
  transition: all var(--transition);
}
.contact-socials a:hover { border-color: var(--red); color: var(--red); transform: translateY(-3px); }

.contact-form-wrap { padding: 40px; }

.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: 0.7rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--white3); margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: 12px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border); border-radius: 8px;
  color: var(--white); font-family: var(--font-body); font-size: 0.9rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none; appearance: none;
}
.form-group select option { background: #1a1a1a; }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: rgba(192,57,43,0.5);
  box-shadow: 0 0 0 3px rgba(192,57,43,0.08);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--white3); }
.form-group textarea { resize: vertical; min-height: 120px; }

.form-buttons { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 8px; }

.form-success {
  text-align: center; padding: 40px;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.form-success i { font-size: 3rem; color: #1ed760; }
.form-success p { color: var(--white2); font-size: 1rem; }
.hidden { display: none !important; }

/* ========== FOOTER ========== */
#footer {
  background: #0a0a0a;
  position: relative; overflow: hidden;
}
.footer-wave { margin-bottom: -4px; }
.footer-wave svg { display: block; }
.footer-inner {
  padding: 60px 40px 40px;
  display: flex; flex-direction: column; align-items: center; gap: 32px;
  text-align: center;
}
.footer-name {
  font-family: var(--font-display); font-size: 3rem;
  letter-spacing: 0.2em; color: var(--white);
}
.footer-logo p {
  font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--white3); margin-top: 6px;
}
.footer-links { display: flex; gap: 32px; flex-wrap: wrap; justify-content: center; }
.footer-links a {
  font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--white3); transition: color var(--transition);
}
.footer-links a:hover { color: var(--red); }
.footer-socials { display: flex; gap: 16px; }
.footer-socials a {
  width: 42px; height: 42px;
  border: 1px solid var(--border); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white3); font-size: 1rem;
  transition: all var(--transition);
}
.footer-socials a:hover {
  border-color: var(--red); color: var(--red);
  transform: translateY(-3px);
}
.footer-copy {
  font-size: 0.75rem; color: var(--white3); letter-spacing: 0.05em;
}
.footer-copy .fa-heart { color: var(--red); }

/* ========== ANIMATIONS ========== */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0; transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0; transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-stats-col { grid-template-columns: repeat(4,1fr); }
  .tracks-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .influences-grid { grid-template-columns: repeat(3, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; gap: 20px; }
  .platform-links { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed; top: 0; right: -100%; width: 80%; max-width: 320px; height: 100vh;
    background: rgba(10,10,10,0.98); backdrop-filter: blur(20px);
    flex-direction: column; align-items: flex-start; justify-content: center;
    padding: 80px 40px; gap: 32px;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 1px solid var(--border);
  }
  .nav-links.open { right: 0; }
  .nav-links a { font-size: 1rem; }
  .nav-toggle { display: flex; }
  #navbar { padding: 16px 24px; }

  .hero-content { flex-direction: column; padding: 120px 24px 60px; gap: 48px; text-align: center; }
  .hero-left { display: flex; justify-content: center; }
  .hero-img-wrap { width: 240px; height: 320px; }
  .hero-right { display: flex; flex-direction: column; align-items: center; }
  .hero-typing-wrap { justify-content: center; }
  .hero-buttons { justify-content: center; }
  .hero-socials { justify-content: center; }
  .hero-wave { display: none; }

  .timeline::before { left: 20px; }
  .timeline-item { flex-direction: column !important; padding-left: 48px; }
  .timeline-dot { left: 20px; }
  .timeline-card { width: 100%; margin: 0 !important; }

  .chester-tribute { flex-direction: column; text-align: center; padding: 32px; gap: 32px; }
  .influences-grid { grid-template-columns: repeat(2, 1fr); }

  .insta-grid { grid-template-columns: repeat(3, 1fr); }
  .insta-profile { flex-direction: column; text-align: center; }

  .about-stats-col { grid-template-columns: repeat(2,1fr); }
  .platform-links { grid-template-columns: repeat(2,1fr); }
  .container { padding: 0 20px; }
  section { padding: 80px 0 !important; }
  .section-header { margin-bottom: 48px; }
}

@media (max-width: 480px) {
  .influences-grid { grid-template-columns: 1fr 1fr; }
  .insta-grid { grid-template-columns: repeat(2,1fr); }
  .platform-links { grid-template-columns: 1fr 1fr; }
  .hero-name { font-size: 3.5rem; }
  .footer-inner { padding: 40px 24px 32px; }
  .footer-links { gap: 16px; }
}

/* ========== ACHIEVEMENTS ========== */
#achievements { padding: 120px 0; background: var(--bg2); }

.achievements-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.achievement-card {
  padding: 36px 32px;
  border-radius: 16px;
  position: relative; overflow: hidden;
  transition: all var(--transition);
  cursor: default;
}
.achievement-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201,168,76,0.3);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4), var(--glow-gold);
}
.achievement-card.featured-ach {
  border-color: rgba(192,57,43,0.4);
  background: rgba(192,57,43,0.05);
}
.achievement-card.featured-ach:hover {
  border-color: rgba(192,57,43,0.6);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4), var(--glow);
}

.ach-year {
  position: absolute; top: 20px; right: 24px;
  font-family: var(--font-display);
  font-size: 0.85rem; letter-spacing: 0.15em;
  color: var(--white3);
}

.ach-icon {
  width: 58px; height: 58px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--gold);
  margin-bottom: 18px;
  transition: all var(--transition);
}
.achievement-card.featured-ach .ach-icon {
  background: rgba(192,57,43,0.15);
  border-color: rgba(192,57,43,0.35);
  color: var(--red2);
}
.achievement-card:hover .ach-icon {
  transform: scale(1.1) rotate(-5deg);
}

.ach-badge {
  display: inline-block;
  font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 100px; margin-bottom: 14px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.25);
  color: var(--gold);
}
.ach-badge.highlight {
  background: rgba(192,57,43,0.15);
  border-color: rgba(192,57,43,0.4);
  color: var(--red2);
}

.achievement-card h3 {
  font-family: var(--font-display);
  font-size: 1.65rem; letter-spacing: 0.04em;
  color: var(--white); margin-bottom: 12px; line-height: 1.15;
}

.achievement-card p {
  font-size: 0.875rem; line-height: 1.8;
  color: var(--white2);
}
.achievement-card p strong { color: var(--white); }
.achievement-card p em { color: var(--gold); font-style: italic; }

/* Shine sweep on hover */
.ach-shine {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(
    120deg,
    transparent 0%, transparent 40%,
    rgba(255,255,255,0.04) 50%,
    transparent 60%, transparent 100%
  );
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}
.achievement-card:hover .ach-shine { transform: translateX(100%); }

@media (max-width: 768px) {
  .achievements-grid { grid-template-columns: 1fr; }
}