/* === BASE === */
* { box-sizing: border-box; }

body.bg-aura {
  margin: 0;
  font-family: 'Poppins', system-ui, sans-serif;
  color: #fff;
  background: url("assets/bg-main2.png") center center / cover no-repeat fixed;
  background-color: #000;
  display: flex;
  justify-content: center;
  min-height: 100vh;
  scroll-behavior: smooth;
}

/* Headings (add a hint of personality) */
h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-shadow: 0 0 12px rgba(63,169,255,0.25), 0 2px 10px rgba(0,0,0,0.8);
}

/* Body text balance */
p, li {
  font-family: 'Poppins', system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: #eaeaea;
}


/* === CONTAINER === */
.container {
  width: 100%;
  max-width: 1200px;
  padding: 100px 20px 60px; /* space for sticky header */
}

/* === DARK GLASS CORE === */
.hero .panel,
.panel,
.header,
.footer {
  position: relative;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(63,169,255,0.15);
  border-radius: 20px;
  box-shadow:
    inset 0 0 12px rgba(63,169,255,0.08),
    0 0 25px rgba(0,0,0,0.55),
    0 0 12px rgba(63,169,255,0.08);
  padding: 28px;
  backdrop-filter: blur(4px) saturate(120%);
  transition: transform .2s ease, box-shadow .3s ease, border-color .3s ease;
}

.hero .panel::before,
.panel::before,
.header::before,
.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(135deg,rgba(63,169,255,0.25),rgba(122,92,255,0.15));
  mix-blend-mode: overlay;
  opacity: .3;
  pointer-events: none;
  transition: opacity .3s ease;
}

.hero .panel:hover,
.panel:hover,
.header:hover,
.footer:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(63,169,255,0.25),0 0 80px rgba(63,169,255,0.1);
  border-color: rgba(63,169,255,0.35);
}
.hero .panel:hover::before,
.panel:hover::before,
.header:hover::before,
.footer:hover::before { opacity: .55; }

/* === LAYOUT GRID FIX === */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr; /* Hero | Out Now | Coming Soon */
  gap: 28px;
  margin-bottom: 40px;
  align-items: start;
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
}

/* === STICKY HEADER === */
.header {
  position: sticky;
  top: 0;
  z-index: 999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 36px;
  margin-bottom: 40px;
  border-radius: 18px;
  border: 1px solid rgba(63,169,255,0.15);
  background: rgba(0, 0, 0, 0.45);
  box-shadow:
    inset 0 0 10px rgba(63,169,255,0.08),
    0 0 25px rgba(0,0,0,0.6),
    0 0 10px rgba(63,169,255,0.08);
  backdrop-filter: blur(6px) saturate(120%);
  transition: all .4s ease;
  opacity: 0.95;
}

.header.scrolled {
  background: rgba(0,0,0,0.7);
  box-shadow: 0 0 20px rgba(63,169,255,0.25), inset 0 0 10px rgba(63,169,255,0.1);
  opacity: 1;
}

/* === BRAND LOGO === */
.header .brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #3fa9ff;
  box-shadow: 0 0 12px #3fa9ff;
  animation: pulseDot 2.5s ease-in-out infinite;
}

.brand h1 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
  margin: 0;
  text-shadow: 0 0 10px rgba(63,169,255,0.5), 0 0 20px rgba(63,169,255,0.3);
}

@keyframes pulseDot {
  0%,100%{opacity:1;box-shadow:0 0 8px #3fa9ff;}
  50%{opacity:0.6;box-shadow:0 0 16px #3fa9ff;}
}

/* === NAVIGATION === */
.nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-btn {
  position: relative;
  color: #e0eaff;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.5px;
  padding: 10px 18px;
  border-radius: 12px;
  border: 1px solid rgba(63,169,255,0.15);
  background: rgba(10,10,20,0.5);
  box-shadow: inset 0 0 6px rgba(63,169,255,0.2), 0 0 12px rgba(0,0,0,0.4);
  transition: all 0.25s ease;
}

.nav-btn:hover {
  color: #fff;
  border-color: rgba(63,169,255,0.4);
  background: rgba(63,169,255,0.2);
  box-shadow: 0 0 20px rgba(63,169,255,0.35), inset 0 0 8px rgba(63,169,255,0.25);
  transform: translateY(-2px);
}

.nav-btn.active {
  color: #3fa9ff;
  background: rgba(63,169,255,0.15);
  box-shadow: 0 0 20px rgba(63,169,255,0.3);
}

/* === FOOTER === */
.footer {
  margin-top: 40px;
  text-align: center;
  font-size: .9rem;
  color: #aaa;
  padding: 16px;
  opacity: 0.85;
}

/* === TEXT & HEADINGS === */
h1,h2,h3 {
  color:#fff;
  text-shadow:0 0 12px rgba(63,169,255,0.25),0 2px 10px rgba(0,0,0,0.8);
  letter-spacing:.5px;
}
p,li {
  color:#eaeaea;
  text-shadow:0 1px 4px rgba(0,0,0,0.7);
}
a {
  color:#3fa9ff;
  text-decoration:none;
  transition:color .3s ease,text-shadow .3s ease;
}
a:hover {
  color:#7a5cff;
  text-shadow:0 0 10px rgba(63,169,255,0.8);
}

/* === HERO PANEL === */
.hero.panel {
  text-align: center;
  padding: 70px 40px;
  line-height: 1.5;
  margin-bottom: 40px;
}

.hero .intro {
  font-size: 0.95rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 12px;
}

.hero .headline {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 20px;
  color: #fff;
}

.hero .description {
  max-width: 600px;
  margin: 0 auto 35px;
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
}

/* === STREAMING LOGOS === */
.stream-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin-top: 25px;
}

.stream-buttons a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: none;
  border: none;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.stream-buttons img {
  height: 36px;
  width: auto;
  object-fit: contain;
  border-radius: 8px;
  transition: transform 0.2s ease;
}

.stream-buttons a:hover img {
  transform: scale(1.06);
  filter: drop-shadow(0 0 8px rgba(63,169,255,0.4));
}

@media (max-width: 600px) {
  .stream-buttons img { height: 30px; }
}

/* === PANEL ALIGNMENT FIX === */
.hero-grid .panel {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  height: auto;
}

/* === COMING SOON LIST === */
#comingList {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

#comingList li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(63,169,255,0.1);
  box-shadow: 0 0 10px rgba(0,0,0,0.4);
  transition: all 0.25s ease;
}

#comingList li:hover {
  background: rgba(63,169,255,0.15);
  border-color: rgba(63,169,255,0.3);
  box-shadow: 0 0 15px rgba(63,169,255,0.25);
}

/* Compact artwork thumbnails */
#comingList img.song-art {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid rgba(63,169,255,0.25);
  box-shadow: 0 0 10px rgba(63,169,255,0.25);
  transition: transform 0.3s ease;
}

#comingList img.song-art:hover {
  transform: scale(1.05);
}

#comingList span {
  flex: 1;
  font-size: 0.95rem;
  color: #eaeaea;
  line-height: 1.4;
}

#comingList strong {
  color: #3fa9ff;
  font-weight: 600;
}

/* === FADE-IN ANIMATION === */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
