/* =========================================================
   Bunga - THEME: BLACK & YELLOW (GOLD)
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Vollkorn:ital,wght@0,400..900;1,400..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
  --navy-deep: #0a0a0a;         /* Hitam Pekat Utama */
  --navy-panel: #141414;        /* Hitam Kartu / Card Background */
  --line: rgba(212, 175, 55, 0.2); /* Garis Pembatas Dark Grey / Aksentuasi Emas */
  --cream: #ffffff;             /* Teks Putih Terang / Judul */
  --cream-dim: #d1d1d1;         /* Teks Abu-abu Dimmed / Paragraf */
  --dusk-orange: #d4af37;       /* Kuning Emas Elegan (Gold) */
  --dusk-rose: #f3e5ab;         /* Kuning Emas Soft (Aksen) */
  --yellow-glow: rgba(212, 175, 55, 0.2);
  
  --gutter: clamp(1.2rem, 5vw, 4rem);
  --radius: 8px;
  
  /* Font Vollkorn Semi-Bold untuk Seluruh Elemen Web */
  --display: 'Vollkorn', serif;
  --body: 'Vollkorn', serif;
  --mono: 'Vollkorn', serif;
}

/* Terapkan Font Vollkorn & Bobot Semi-Bold (600) ke Seluruh Teks Web */
*, *::before, *::after, body, html, h1, h2, h3, h4, h5, h6, p, a, span, button, input {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: var(--body) !important;
  font-weight: 600 !important;
}

html {
  scroll-behavior: smooth;
  background-color: var(--navy-deep);
  color: var(--cream);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
}

body {
  background-color: var(--navy-deep);
  color: var(--cream);
  overflow-x: hidden;
  line-height: 1.6;
  opacity: 0;
  animation: pageFadeIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes pageFadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.wrap {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Navigation Bar */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 90;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.25rem var(--gutter);
  background: rgba(10, 10, 10, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: all 0.3s ease;
}

.site-nav .brand {
  font-family: var(--display);
  font-size: 1.35rem; font-weight: 700 !important;
  letter-spacing: -0.02em; color: var(--cream);
}
.site-nav .brand span { color: var(--dusk-orange); }

.site-nav .links {
  display: flex; align-items: center; gap: 1.8rem;
}

.site-nav .links a {
  font-family: var(--mono);
  font-size: 0.82rem; letter-spacing: 0.05em;
  color: var(--cream-dim); transition: color 0.25s ease;
}

.site-nav .links a:hover, .site-nav .links a.active { color: var(--dusk-orange); }

.site-nav .links a.pill {
  padding: 0.5rem 1.1rem; border-radius: 999px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--dusk-orange);
  color: var(--dusk-orange); transition: all 0.3s ease;
}

.site-nav .links a.pill:hover {
  background: var(--dusk-orange); color: var(--navy-deep);
  box-shadow: 0 0 15px var(--yellow-glow);
}

/* ============ HERO BACKGROUND SLIDESHOW ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 8rem var(--gutter) 5rem;
  overflow: hidden;
  background-color: #0a0a0a;
}

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

.hero-bg-slider .slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: heroCrossfade 15s infinite ease-in-out;
}

/* Tautan 3 Gambar Background */
.hero-bg-slider .slide-1 {
  background-image: url('assets/album/ab67616d0000b273715683ac9ca703e6c72cac60.png');
  animation-delay: 0s;
}

.hero-bg-slider .slide-2 {
  background-image: url('assets/album/images (4).png');
  animation-delay: 5s;
}

.hero-bg-slider .slide-3 {
  background-image: url('assets/album/artworks-000108028318-oo3nfj-t500x500.jpg');
  animation-delay: 10s;
}

/* Overlay Gelap Agar Teks Tetap Jelas */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to top, rgba(13, 13, 13, 0.95) 15%, rgba(13, 13, 13, 0.5) 60%, rgba(13, 13, 13, 0.8) 100%);
}

/* Mengembalikan Styling Teks Hero ke Aslinya */
.hero-content {
  position: relative;
  z-index: 3;
  padding: 0 !important;
}

.hero .eyebrow {
  font-family: var(--mono);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--dusk-orange); /* Kembali ke warna Kuning Gold */
  margin-bottom: 1.6rem;
}

.hero h1 {
  font-family: var(--display);
  font-size: clamp(3rem, 10vw, 7.5rem);
  line-height: 0.92;
  color: var(--cream);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.hero .tagline {
  max-width: 38ch;
  margin-top: 1.6rem;
  font-size: 1.1rem;
  color: var(--cream-dim);
}

.hero .hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

/* Animasi Transisi Background */
@keyframes heroCrossfade {
  0% {
    opacity: 0;
    transform: scale(1);
  }
  6% {
    opacity: 1;
  }
  33% {
    opacity: 1;
  }
  40% {
    opacity: 0;
    transform: scale(1.04);
  }
  100% {
    opacity: 0;
    transform: scale(1);
  }
}

.btn {
  font-family: var(--mono); font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.95rem 1.6rem; border-radius: 999px;
  display: inline-flex; align-items: center; gap: 0.6em; cursor: pointer;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.btn-primary { background: var(--dusk-orange); color: var(--navy-deep); border: 1px solid var(--dusk-orange); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 20px var(--yellow-glow); background: #ffe033; }

.btn-ghost { border: 1px solid var(--line); color: var(--cream); background: transparent; }
.btn-ghost:hover { border-color: var(--dusk-orange); color: var(--dusk-orange); transform: translateY(-2px); }

.section { padding: 7rem var(--gutter); border-top: 1px solid var(--line); background: var(--navy-deep); }

.section-head { 
  display: flex; justify-content: space-between; align-items: flex-end; 
  gap: 2rem; flex-wrap: wrap; margin-bottom: 3.5rem; 
}

.section-head h2 { font-family: var(--display); font-size: clamp(2rem, 4.5vw, 3.2rem); letter-spacing: -0.02em; }
.section-head p { max-width: 38ch; color: var(--cream-dim); font-size: 0.95rem; }

/* Video */
.video-panel {
  position: relative; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 16/9; background: var(--navy-panel); cursor: pointer;
  border: 1px solid var(--line); transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.video-panel:hover { border-color: var(--dusk-orange); box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
.video-panel img { width: 100%; height: 100%; object-fit: cover; opacity: 0.55; transition: opacity 0.4s ease, transform 0.6s ease; }
.video-panel:hover img { opacity: 0.75; transform: scale(1.03); }

.video-panel .play {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 1rem;
}

.play-circle {
  width: 84px; height: 84px; border-radius: 50%; border: 1px solid var(--cream);
  display: flex; align-items: center; justify-content: center;
  background: rgba(13, 13, 13, 0.6); backdrop-filter: blur(4px);
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.video-panel:hover .play-circle { background: var(--dusk-orange); border-color: var(--dusk-orange); transform: scale(1.1); }
.play-circle svg { width: 22px; height: 22px; fill: var(--cream); margin-left: 3px; transition: fill 0.3s ease; }
.video-panel:hover .play-circle svg { fill: var(--navy-deep); }

.play-label { font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--cream); }
.video-caption { margin-top: 1.25rem; display: flex; justify-content: space-between; font-family: var(--mono); font-size: 0.75rem; color: var(--cream-dim); flex-wrap: wrap; gap: 0.5rem; }

/* Video Modal */
.video-modal {
  position: fixed; inset: 0; z-index: 100; display: flex; align-items: center; justify-content: center;
  background: rgba(10, 10, 10, 0.95); backdrop-filter: blur(8px);
  opacity: 0; pointer-events: none; transition: opacity 0.35s ease; padding: 2rem;
}
.video-modal.open { opacity: 1; pointer-events: auto; }
.video-modal .modal-inner { width: min(920px, 100%); }
.video-modal video { width: 100%; border-radius: var(--radius); display: block; background: #000; box-shadow: 0 20px 50px rgba(0,0,0,0.8); }
.video-modal .modal-close {
  display: flex; justify-content: flex-end; margin-bottom: 0.75rem;
  font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--cream-dim); cursor: pointer; gap: 0.5rem; align-items: center; transition: color 0.25s ease;
}
.video-modal .modal-close:hover { color: var(--dusk-orange); }

/* Timeline */
.timeline { position: relative; padding-left: 2.75rem; }
.timeline::before {
  content: ""; position: absolute; left: 6px; top: 6px; bottom: 6px; width: 2px;
  background: linear-gradient(to bottom, var(--dusk-orange), var(--dusk-rose), transparent);
}
.tl-item { position: relative; padding-bottom: 3.25rem; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before {
  content: ""; position: absolute; left: -2.75rem; top: 0.35rem;
  width: 13px; height: 13px; border-radius: 50%;
  background: var(--navy-deep); border: 3px solid var(--dusk-orange);
  transition: transform 0.3s ease, background 0.3s ease;
}
.tl-item:hover::before { transform: scale(1.3); background: var(--dusk-orange); }
.tl-year { font-family: var(--mono); color: var(--dusk-orange); font-size: 0.85rem; letter-spacing: 0.08em; font-weight: 600; }
.tl-item h3 { font-family: var(--display); font-size: 1.5rem; margin-top: 0.4rem; margin-bottom: 0.55rem; font-weight: 600; }
.tl-item p { color: var(--cream-dim); max-width: 58ch; font-size: 0.95rem; }

/* Tracklist */
.tracklist { border-top: 1px solid var(--line); }
.track {
  display: grid; grid-template-columns: 2.5rem 72px 1fr auto auto; align-items: center;
  gap: 1.25rem; padding: 1.15rem 0; border-bottom: 1px solid var(--line); transition: background 0.3s ease;
}
.track:hover { background: rgba(255, 254, 250, 0.02); }
.track-num { font-family: var(--mono); color: var(--cream-dim); font-size: 0.85rem; }
.track-art { width: 72px; height: 72px; object-fit: cover; border-radius: 4px; border: 1px solid var(--line); }
.track-title { font-family: var(--display); font-size: 1.2rem; font-weight: 600; }
.track-sub { font-family: var(--body); font-size: 0.82rem; color: var(--cream-dim); margin-top: 0.15rem; }
.track-year { font-family: var(--mono); font-size: 0.8rem; color: var(--cream-dim); }
.track-tag {
  font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--dusk-orange); border: 1px solid var(--dusk-orange); border-radius: 999px;
  padding: 0.3rem 0.75rem; justify-self: end; background: rgba(255, 204, 0, 0.05);
}

@media (max-width: 640px) {
  .track { grid-template-columns: 1.5rem 56px 1fr; row-gap: 0.35rem; }
  .track-year, .track-tag { display: none; }
  .track-art { width: 56px; height: 56px; }
}

/* Gallery */
.gallery { display: grid; grid-template-columns: repeat(6, 1fr); grid-auto-rows: 120px; gap: 0.75rem; }
.gallery img { 
  width: 100%; height: 100%; object-fit: cover; border-radius: 4px; border: 1px solid var(--line);
  transition: transform 0.4s ease, filter 0.4s ease; filter: grayscale(20%);
}
.gallery img:hover { transform: scale(1.02); filter: grayscale(0%); border-color: var(--dusk-orange); }
.gallery > *:nth-child(1) { grid-column: span 3; grid-row: span 3; }
.gallery > *:nth-child(2) { grid-column: span 3; grid-row: span 2; }
.gallery > *:nth-child(3) { grid-column: span 3; grid-row: span 2; }
.gallery > *:nth-child(4) { grid-column: span 2; grid-row: span 2; }
.gallery > *:nth-child(5) { grid-column: span 2; grid-row: span 2; }
.gallery > *:nth-child(6) { grid-column: span 2; grid-row: span 2; }

@media (max-width: 760px) {
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .gallery > * { grid-column: span 1 !important; grid-row: span 1 !important; }
}

/* CTA */
.cta-personil, .cta-back {
  display: flex; justify-content: space-between; align-items: center; gap: 2rem; flex-wrap: wrap;
  padding: 5rem var(--gutter); background: linear-gradient(135deg, #161616 0%, #0d0d0d 100%);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.cta-personil h2, .cta-back h2 { font-family: var(--display); font-size: clamp(1.8rem, 4vw, 2.6rem); max-width: 22ch; letter-spacing: -0.02em; }
.cta-personil p { color: var(--cream-dim); margin-top: 0.6rem; max-width: 42ch; font-size: 0.95rem; }

/* Page Hero */
.page-hero { padding: 9rem var(--gutter) 4rem; background: linear-gradient(to bottom, var(--navy-deep), #161616); border-bottom: 1px solid var(--line); }
.page-hero h1 { font-family: var(--display); font-size: clamp(2.6rem, 6.5vw, 4.6rem); line-height: 1.02; max-width: 18ch; letter-spacing: -0.02em; }
.page-hero p { max-width: 46ch; color: var(--cream-dim); margin-top: 1.2rem; font-size: 1.02rem; }

.roster-strip { display: flex; flex-wrap: wrap; gap: 0 2.5rem; margin-top: 2.75rem; padding-top: 1.75rem; border-top: 1px solid var(--line); }
.roster-strip a {
  font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--cream-dim); padding: 0.5rem 0; display: inline-block; border-bottom: 2px solid transparent;
  transition: color 0.25s ease, border-color 0.25s ease;
}
.roster-strip a:hover { color: var(--dusk-orange); border-color: var(--dusk-orange); }

/* Member Cards */
.member {
  display: grid; grid-template-columns: minmax(280px, 420px) 1fr; gap: clamp(2rem, 6vw, 6rem);
  align-items: center; padding: 6rem var(--gutter); border-bottom: 1px solid var(--line);
}
.member:nth-child(even) { background: var(--navy-panel); }
.member:nth-child(even) .member-photo { order: 2; }
.member-photo { position: relative; }
.member-photo img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: 6px; border: 1px solid var(--line); box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
.member-photo .num {
  position: absolute; top: -0.9rem; left: -0.9rem; font-family: var(--mono); font-size: 0.8rem; font-weight: 700;
  color: var(--navy-deep); background: var(--dusk-orange); width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 15px var(--yellow-glow);
}

.member-info .position { font-family: var(--mono); font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--dusk-orange); display: flex; align-items: center; gap: 0.6em; margin-bottom: 1rem; }
.member-info .position::before { content: ""; width: 22px; height: 2px; background: var(--dusk-orange); display: inline-block; }
.member-info h2 { font-family: var(--display); font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -0.02em; }
.member-info .role-format { font-family: var(--body); font-size: 0.95rem; color: var(--cream-dim); margin-top: 0.5rem; margin-bottom: 1.75rem; }
.member-info .role-format strong { color: var(--cream); font-weight: 600; }
.member-info p.bio { max-width: 52ch; color: var(--cream-dim); font-size: 1rem; margin-bottom: 1.75rem; }

.member-meta { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.tag { font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.06em; text-transform: uppercase; border: 1px solid var(--line); color: var(--cream-dim); padding: 0.4rem 0.85rem; border-radius: 999px; background: rgba(255, 255, 255, 0.02); }

@media (max-width: 800px) {
  .member { grid-template-columns: 1fr; }
  .member:nth-child(even) .member-photo { order: 0; }
  .member-photo .num { top: -0.7rem; left: -0.7rem; }
}

.site-footer { padding: 4rem var(--gutter) 3rem; background: var(--navy-deep); border-top: 1px solid var(--line); display: flex; flex-direction: column; gap: 2rem; }
.foot-brand { font-family: var(--display); font-size: 1.5rem; font-weight: 700; color: var(--dusk-orange); }
.foot-links { display: flex; gap: 2rem; flex-wrap: wrap; }
.foot-links a { font-family: var(--mono); font-size: 0.8rem; color: var(--cream-dim); transition: color 0.25s ease; }
.foot-links a:hover { color: var(--dusk-orange); }
.foot-note { font-family: var(--mono); font-size: 0.75rem; color: #666; border-top: 1px solid var(--line); padding-top: 1.5rem; }

.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============ INTRO HIGHLIGHTS (CARD RAPI) ============ */
.intro-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.highlight-card {
  background: #181818;
  padding: 1.25rem 1.5rem;
  border-radius: 8px;
  border-left: 4px solid #ffcc00;
  border-top: 1px solid #282828;
  border-right: 1px solid #282828;
  border-bottom: 1px solid #282828;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.highlight-card:hover {
  transform: translateY(-3px);
  border-left-color: #ffe033;
}

.highlight-card span.label {
  display: block;
  font-family: 'Space Grotesk', monospace;
  font-size: 0.75rem;
  text-transform: uppercase;
  color: #ffcc00;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.highlight-card h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
  line-height: 1.4;
}

/* ============ MEMBER CARDS (PROPORTIONAL & BALANCED) ============ */
.member {
  display: grid;
  grid-template-columns: minmax(320px, 450px) 1fr; /* Proporsi gambar & teks seimbang */
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: center;
  padding: 5rem var(--gutter);
  border-bottom: 1px solid var(--line);
  max-width: 1200px; /* Menjaga agar tidak terlalu renggang di layar lebar */
  margin: 0 auto;
}

.member:nth-child(even) {
  background: var(--navy-panel);
}

.member:nth-child(even) .member-photo {
  order: 2; /* Selang-seling kiri & kanan */
}

/* Gambar Personil & Efek Transisi */
.member-photo {
  position: relative;
  width: 100%;
}

.member-photo img {
  width: 100%;
  height: 480px; /* Tinggi seragam untuk semua personil */
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
  border: 1px solid var(--line);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.6);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, box-shadow 0.4s ease;
}

/* Transisi Hover Gambar */
.member-photo:hover img {
  transform: translateY(-6px) scale(1.01);
  border-color: var(--dusk-orange);
  box-shadow: 0 18px 40px rgba(255, 204, 0, 0.2);
}

/* Badge Nomor Personil */
.member-photo .num {
  position: absolute;
  top: -12px;
  left: -12px;
  z-index: 2;
  font-family: var(--mono);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy-deep);
  background: var(--dusk-orange);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px var(--yellow-glow);
  transition: transform 0.3s ease;
}

.member-photo:hover .num {
  transform: scale(1.1) rotate(-5deg);
}

/* Teks & Deskripsi */
.member-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.member-info .position {
  font-family: var(--mono);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dusk-orange);
  display: flex;
  align-items: center;
  gap: 0.6em;
  margin-bottom: 0.8rem;
}

.member-info .position::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--dusk-orange);
  display: inline-block;
}

.member-info h2 {
  font-family: var(--display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 0.4rem;
}

.member-info .role-format {
  font-family: var(--body);
  font-size: 1rem;
  color: var(--cream-dim);
  margin-bottom: 1.5rem;
}

.member-info p.bio {
  color: var(--cream-dim);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 60ch; /* Lebar paragraf ideal agar tidak kepanjangan */
}

/* Tag / Pills */
.member-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.tag {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid var(--line);
  color: var(--cream-dim);
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  transition: all 0.3s ease;
}

.tag:hover {
  border-color: var(--dusk-orange);
  color: var(--dusk-orange);
  background: rgba(255, 204, 0, 0.08);
}

/* Responsif Layar HP/Tablet */
@media (max-width: 850px) {
  .member {
    grid-template-columns: 1fr;
    padding: 3.5rem var(--gutter);
  }
  .member:nth-child(even) .member-photo {
    order: 0;
  }
  .member-photo img {
    height: 380px;
  }
}

/* ============ CUSTOM GRAFIK WAVEFORM PLAYER ============ */
.custom-player {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: #161616;
  border: 1px solid var(--line);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  width: 100%;
  max-width: 320px;
  transition: border-color 0.3s ease;
}

.custom-player:hover, .custom-player.playing {
  border-color: var(--dusk-orange);
}

.play-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--dusk-orange);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: transform 0.2s ease, background 0.2s ease;
}

.play-btn:hover {
  transform: scale(1.08);
  background: #ffe033;
}

.play-btn svg {
  width: 16px;
  height: 16px;
  fill: var(--navy-deep);
}

.play-btn .icon-pause {
  display: none;
}

.custom-player.playing .play-btn .icon-play {
  display: none;
}

.custom-player.playing .play-btn .icon-pause {
  display: block;
}

/* Grafik Batang Waveform */
.audio-waveform {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 20px;
  flex-grow: 1;
}

.audio-waveform .bar {
  width: 3px;
  height: 20%;
  background: #333333;
  border-radius: 2px;
  transition: height 0.2s ease, background 0.3s ease;
}

/* Animasi grafik saat musik diputar */
.custom-player.playing .audio-waveform .bar {
  background: var(--dusk-orange);
  animation: waveAnim 1.2s infinite ease-in-out alternate;
}

.audio-waveform .bar:nth-child(1) { animation-delay: 0.1s; }
.audio-waveform .bar:nth-child(2) { animation-delay: 0.3s; }
.audio-waveform .bar:nth-child(3) { animation-delay: 0.5s; }
.audio-waveform .bar:nth-child(4) { animation-delay: 0.2s; }
.audio-waveform .bar:nth-child(5) { animation-delay: 0.4s; }
.audio-waveform .bar:nth-child(6) { animation-delay: 0.6s; }
.audio-waveform .bar:nth-child(7) { animation-delay: 0.15s; }
.audio-waveform .bar:nth-child(8) { animation-delay: 0.35s; }
.audio-waveform .bar:nth-child(9) { animation-delay: 0.55s; }
.audio-waveform .bar:nth-child(10){ animation-delay: 0.25s; }
.audio-waveform .bar:nth-child(11){ animation-delay: 0.45s; }
.audio-waveform .bar:nth-child(12){ animation-delay: 0.65s; }
.audio-waveform .bar:nth-child(13){ animation-delay: 0.18s; }
.audio-waveform .bar:nth-child(14){ animation-delay: 0.38s; }
.audio-waveform .bar:nth-child(15){ animation-delay: 0.58s; }
.audio-waveform .bar:nth-child(16){ animation-delay: 0.28s; }

@keyframes waveAnim {
  0% { height: 15%; }
  50% { height: 95%; }
  100% { height: 30%; }
}

.time-display {
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--cream-dim);
  flex-shrink: 0;
}

/* ============ FOOTER LINK SPOTIFY DI BWAH LAGU 06 ============ */
.tracklist-footer {
  display: flex;
  justify-content: flex-end;
  padding-top: 1.5rem;
}

.spotify-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--mono);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--cream-dim);
  text-decoration: none;
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  transition: all 0.25s ease;
}

.spotify-link:hover {
  color: #1DB954; /* Hijau khas Spotify */
  background: rgba(29, 185, 84, 0.08);
}

/* Ukuran Logo Spotify Diperkecil Ringkas */
.spotify-logo-small {
  width: 16px;
  height: 16px;
  fill: currentColor;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.spotify-link:hover .spotify-logo-small {
  transform: scale(1.15);
}

/* ============ TRACKLIST BARIS SEJAJAR (1 LINE) ============ */
.track {
  display: grid;
  /* Menyusun 6 elemen secara sejajar sempurna dalam 1 baris */
  grid-template-columns: 2.5rem 72px 1fr 280px 4rem 5.5rem;
  align-items: center;
  gap: 1.5rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--line);
  transition: background 0.3s ease;
}

.track:hover {
  background: rgba(255, 255, 255, 0.015);
}

/* Memastikan Badge (SINGLE/EP/ALBUM) Tidak Terpotong & Tetap di Kanan */
.track-tag {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dusk-orange);
  border: 1px solid var(--dusk-orange);
  border-radius: 999px;
  padding: 0.3rem 0.75rem;
  text-align: center;
  white-space: nowrap; /* Mencegah teks terlipat/pindah baris */
  background: rgba(255, 204, 0, 0.05);
}

/* Memastikan Player Audio Lebarnya Pas */
.custom-player {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #161616;
  border: 1px solid var(--line);
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  width: 100%;
  max-width: 280px;
  box-sizing: border-box;
}

/* Penyesuaian Responsif Layar Kecil / HP */
@media (max-width: 900px) {
  .track {
    grid-template-columns: 2rem 56px 1fr auto;
    row-gap: 0.8rem;
  }
  .custom-player {
    grid-column: 1 / -1;
    max-width: 100%;
  }
}

/* ============ PERFECTLY ALIGNED VIDEO SECTION ============ */
.video-container {
  width: 100%;
  max-width: 1000px; /* Lebar dikunci sama persis untuk semua elemen */
  margin: 0 auto;
}

.video-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.video-head h2 {
  font-family: var(--display);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.video-desc {
  max-width: 38ch;
  color: var(--cream-dim);
  font-size: 0.95rem;
  line-height: 1.6;
}

.inline-video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000000;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
}

.inline-video-player {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  display: block;
  outline: none;
}

.video-caption {
  width: 100%;
  margin-top: 1.25rem;
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 0.8rem;
  color: var(--cream-dim);
  flex-wrap: wrap;
  gap: 0.5rem;
}

@media (max-width: 768px) {
  .video-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}

/* ============ STABILISASI HALAMAN SEJAARAH ============ */
.history-container {
  width: 100%;
  max-width: 900px; /* Dikunci 900px presisi agar teks tidak terlalu lebar/renggang */
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.history-head {
  margin-bottom: 2.5rem;
  border-bottom: none; /* Menghilangkan garis tipis */
  padding-bottom: 0;
}

.history-head h1 {
  font-family: var(--display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 1rem;
}

.history-sub {
  font-size: 1.1rem;
  color: var(--cream-dim);
  line-height: 1.7;
  max-width: 65ch;
}

.history-story {
  width: 100%;
}

.story-chapter-title {
  font-family: var(--display);
  font-size: 1.45rem;
  color: var(--dusk-orange);
  margin-top: 2.8rem;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.story-paragraph {
  color: var(--cream-dim);
  font-size: 1.08rem;
  line-height: 1.85;
  margin-bottom: 1.6rem;
}

.story-paragraph strong {
  color: var(--cream);
}

.story-image-wrap {
  margin: 3.5rem 0;
  width: 100%;
}

.story-image-wrap img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--line);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.story-image-caption {
  font-family: var(--mono);
  font-size: 0.8rem;
  color: var(--dusk-orange);
  text-align: center;
  margin-top: 0.85rem;
  letter-spacing: 0.04em;
}

/* Position relatif agar background tidak bocor */
  .social-hero-bg {
    position: relative;
    overflow: hidden;
  }

  /* Layer Gambar dengan Efek Blur 70% (8px) & Zoom sedikit agar pinggirannya tidak putih */
  .bg-blur-layer {
    position: absolute;
    inset: -20px;
    background-size: cover;
    background-position: center;
    filter: blur(8px);
    z-index: 1;
    opacity: 0.6;
  }

  /* Overlay Hitam Transparan agar Teks Tetap Jelas */
  .bg-overlay-layer {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.75);
    z-index: 2;
  }

  /* Mengangkat Konten Teks di Atas Background */
  .social-container {
    position: relative;
    z-index: 3;
  }
