/* ------------------------------------------------------------
   SO SMOOTH PROMO | SUPREME NUCLEAR MAXIMUM GLOW THEME
   ------------------------------------------------------------ */

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;600;800&display=swap');

/* ---------- GLOBAL SETTINGS ---------- */
:root {
  --neon-blue: #00f0ff;
  --neon-purple: #a040ff;
  --neon-pink: #ff00f7;
  --neon-gold: #ffd700;
  --deep-bg: rgba(0, 0, 20, 0.85);
  --max-radius: 18px;
  --glow-spread: 0 0 25px;
  --max-width: 1080px;
}

* {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: 'Orbitron', sans-serif;
  color: #fff;
  background: url('assets/background.png') no-repeat center center fixed;
  background-size: cover;
  overflow-x: hidden;
}

/* ---------- BACKGROUND SHOOTING STARS ---------- */
body.shooting-stars::before,
body.shooting-stars::after {
  content: "";
  position: fixed;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
  animation: starMove 40s linear infinite;
  opacity: 0.2;
  z-index: -2;
}

@keyframes starMove {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-500px, -1000px, 0); }
}

/* ---------- GLOW HELPERS ---------- */
.glow-box {
  background: rgba(10,10,30,0.75);
  border: 2px solid var(--neon-blue);
  border-radius: var(--max-radius);
  box-shadow: 0 0 25px var(--neon-blue), 0 0 40px var(--neon-purple), inset 0 0 10px var(--neon-blue);
  padding: 25px 40px;
  margin: 40px auto;
  width: 90%;
  max-width: var(--max-width);
  text-align: center;
  position: relative;
  animation: pulseGlow 4s infinite ease-in-out;
}

@keyframes pulseGlow {
  0%,100% { box-shadow: 0 0 25px var(--neon-blue), 0 0 40px var(--neon-purple), inset 0 0 10px var(--neon-blue); }
  50% { box-shadow: 0 0 35px var(--neon-purple), 0 0 60px var(--neon-pink), inset 0 0 15px var(--neon-purple); }
}

/* ---------- NAVIGATION ---------- */
.nav-bar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 85px 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0, 0, 30, 0.75);
  backdrop-filter: blur(10px);
  box-shadow: 0 0 20px var(--neon-blue);
  z-index: 1000;
}

.logo {
  width: 110px;
  height: auto;
  filter: drop-shadow(0 0 20px var(--neon-blue))
          drop-shadow(0 0 40px var(--neon-purple))
          drop-shadow(0 0 60px var(--neon-pink));
  animation: spinPulse 12s linear infinite;
}

@keyframes spinPulse {
  0% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(180deg) scale(1.1); filter: drop-shadow(0 0 35px var(--neon-gold)); }
  100% { transform: rotate(360deg) scale(1); }
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.btn-glow {
  color: #fff;
  text-decoration: none;
  padding: 10px 22px;
  border: 2px solid var(--neon-blue);
  border-radius: 50px;
  text-transform: uppercase;
  font-weight: 600;
  transition: 0.3s;
  box-shadow: 0 0 15px var(--neon-blue);
}

.btn-glow:hover, .btn-glow.active {
  color: #000;
  background: var(--neon-blue);
  box-shadow: 0 0 35px var(--neon-purple), 0 0 60px var(--neon-pink);
  transform: scale(1.08);
}

/* ------------------------------------------------------------
   🍔 SO SMOOTH PROMO | SUPREME MOBILE MENU
------------------------------------------------------------ */

/* Hamburger base (hidden on desktop) */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  cursor: pointer;
  z-index: 1100;
  transition: transform 0.4s ease-in-out;
}

.bar {
  height: 3px;
  width: 100%;
  background: var(--neon-blue);
  border-radius: 5px;
  transition: all 0.4s ease;
  box-shadow: 0 0 10px var(--neon-blue);
}

/* Glowing hover */
.hamburger:hover .bar {
  box-shadow: 0 0 15px var(--neon-pink), 0 0 25px var(--neon-blue);
}

/* Active animation (turn into X) */
.hamburger.active .bar:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
  background: var(--neon-pink);
  box-shadow: 0 0 20px var(--neon-pink);
}
.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}
.hamburger.active .bar:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
  background: var(--neon-pink);
  box-shadow: 0 0 20px var(--neon-pink);
}

/* Mobile menu container */
.mobile-menu {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 75px;
  right: 20px;
  width: 230px;
  background: rgba(0,0,30,0.9);
  border: 2px solid var(--neon-blue);
  border-radius: 15px;
  padding: 20px 0;
  box-shadow: 0 0 25px var(--neon-blue), 0 0 45px var(--neon-purple);
  backdrop-filter: blur(10px);
  text-align: center;
  animation: dropdownSlide 0.4s ease forwards;
}

@keyframes dropdownSlide {
  0% { opacity: 0; transform: translateY(-10px); }
  100% { opacity: 1; transform: translateY(0); }
}

.mobile-link {
  color: #fff;
  padding: 14px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  display: block;
  transition: all 0.3s ease;
  text-shadow: 0 0 12px var(--neon-blue);
}

.mobile-link:hover {
  background: var(--neon-blue);
  color: #000;
  box-shadow: 0 0 25px var(--neon-pink);
}

/* Active dropdown visible */
.mobile-menu.active {
  display: flex;
  animation: dropdownSlide 0.4s ease forwards;
}

/* Hide desktop nav on mobile */
@media (max-width: 900px) {
  .nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
    position: absolute;
    top: 25px;
    right: 25px;
  }
}


/* ---------- HERO SECTION ---------- */
.hero {
  margin-top: 75px; /* space under nav */
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  position: relative;
  min-height: 50vh;
}

.hero-title {
  font-size: 3rem;
  text-shadow: 0 0 25px var(--neon-blue), 0 0 40px var(--neon-purple);
  animation: titlePulse 3s infinite;
}

.hero-sub {
  font-size: 1.2rem;
  margin-top: 10px;
  opacity: 0.9;
  animation: fadeSlide 4s infinite alternate;
}

@keyframes titlePulse {
  0%,100% { text-shadow: 0 0 25px var(--neon-blue), 0 0 40px var(--neon-purple); }
  50% { text-shadow: 0 0 35px var(--neon-pink), 0 0 55px var(--neon-gold); }
}

@keyframes fadeSlide {
  0% { transform: translateY(0); opacity: 0.9; }
  100% { transform: translateY(5px); opacity: 1; }
}

/* FOOTER FIXED HEIGHT VARIABLE */
.site-footer {
  --footer-height: 198px;
  height: var(--footer-height);
}

/* NAV BAR FIXED HEIGHT VARIABLE */
.nav-bar {
  --nav-height: 120px;
  height: var(--nav-height);
}

/* Responsive Tweaks */
@media (max-height: 750px) {
  html, body { overflow-y: auto; } /* fallback for small screens */
  .hero, .section.center { min-height: auto; padding: 60px 20px; }
}
/* ---------- SPARKLE PARTICLES (reliable tiled version) ---------- */
.site-footer::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;                     /* below content, above footer bg */
  pointer-events: none;
  opacity: 0.25;
  mix-blend-mode: screen;

  /* Tile tiny glowing dots in 3 color layers */
  background-image:
    radial-gradient(circle, rgba(0,240,255,0.35) 1px, transparent 2.5px),
    radial-gradient(circle, rgba(160,64,255,0.30) 1px, transparent 2.5px),
    radial-gradient(circle, rgba(255,0,247,0.28) 1px, transparent 2.5px);
  background-size: 120px 120px, 160px 160px, 200px 200px;
  background-position: 0 0, 40px 20px, 80px 60px;
  animation: sparklePan 60s linear infinite;
}

/* Pan the tiled sparkles diagonally right->left / up->down */
@keyframes sparklePan {
  0%   { background-position:   0px    0px,  40px  20px,  80px  60px; }
  100% { background-position: -800px  400px, -600px 300px, -400px 200px; }
}

/* Respect reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .site-footer::after { animation: none; opacity: 0.2; }
}
.sparkCanvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  background: transparent;
}

/* ---------- FORMS ---------- */
.input-glow {
  width: 100%;
  padding: 12px;
  margin: 8px 0;
  background: rgba(0,0,0,0.4);
  border: 2px solid var(--neon-blue);
  border-radius: 10px;
  color: #fff;
  font-size: 1rem;
  outline: none;
  box-shadow: 0 0 15px var(--neon-blue);
  transition: 0.4s;
}

.input-glow:focus {
  border-color: var(--neon-purple);
  box-shadow: 0 0 25px var(--neon-purple), 0 0 50px var(--neon-pink);
}

.btn-cta {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 28px;
  font-size: 1rem;
  border-radius: 50px;
  border: 2px solid var(--neon-blue);
  background: transparent;
  color: #fff;
  cursor: pointer;
  transition: 0.3s;
  text-transform: uppercase;
  font-weight: 600;
  box-shadow: 0 0 20px var(--neon-blue);
}

.btn-cta:hover {
  background: var(--neon-blue);
  color: #000;
  box-shadow: 0 0 35px var(--neon-purple), 0 0 60px var(--neon-pink);
  transform: scale(1.08);
}

/* ---------- LAYOUT ---------- */
.section {
  padding: 100px 20px 140px 20px;
  text-align: center;
}

.center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* ---------- GRID ---------- */
.glow-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  justify-content: center;
}


/* ---------- SPARKLE PARTICLES ---------- */
.site-footer::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
  animation: sparkleDrift 60s linear infinite;
  opacity: 0.2;
  z-index: 0;
}

@keyframes sparkleDrift {
  0% { transform: translate3d(0,0,0); }
  100% { transform: translate3d(-400px,-800px,0); }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
  .soc { font-size: 1.3rem; }
  .footer-link { font-size: 0.9rem; margin: 0 6px; }
  .site-footer { padding: 18px 10px 24px 10px; }
}


/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
  .soc { font-size: 1.3rem; }
  .footer-link { font-size: 0.9rem; margin: 0 6px; }
  .site-footer { padding: 18px 10px 24px 10px; }
}

/* ---------- POPUP ---------- */
.popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0,0,20,0.9);
  border: 2px solid var(--neon-blue);
  border-radius: var(--max-radius);
  padding: 30px 50px;
  box-shadow: 0 0 25px var(--neon-blue), 0 0 50px var(--neon-purple);
  text-align: center;
  z-index: 2000;
  animation: fadeInPop 0.5s ease-in-out;
}

.popup.hidden { display: none; }

@keyframes fadeInPop {
  from { opacity: 0; transform: translate(-50%, -60%) scale(0.9); }
  to { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

/* ---------- MEDIA QUERIES ---------- */
@media (max-width: 768px) {
  .logo { width: 60px; }
  .hero-title { font-size: 2.2rem; }
  .btn-glow { padding: 8px 16px; }
  .glow-box { padding: 20px; }
  .nav-links { flex-wrap: wrap; gap: 12px; }
  .section { padding: 80px 10px 140px 10px; }
}

/* ------------------------------------------------------------
   🌟 SUPREME GLOW ABOUT SECTION — So Smooth Promo
   Fully Centered | Universal Device Support | Neon Glow Perfection
------------------------------------------------------------ */

.about-container {
  background: rgba(0, 0, 0, 0.65);
  border: 1px solid rgba(0, 240, 255, 0.35);
  border-radius: 25px;
  box-shadow:
    0 0 25px rgba(0, 240, 255, 0.25),
    0 0 55px rgba(255, 0, 247, 0.25);
  padding: 60px 80px;
  margin: 60px auto;
  max-width: 1100px;
  color: #fff;
  text-align: center; /* ✅ Center everything universally */
  line-height: 1.8;
  font-size: 1.1rem;
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
}

.about-container:hover {
  transform: scale(1.01);
  box-shadow:
    0 0 35px rgba(0, 240, 255, 0.4),
    0 0 75px rgba(255, 0, 247, 0.3);
}

/* ✨ Section Titles */
.about-container .section-title {
  font-size: 2.2rem;
  letter-spacing: 1.8px;
  color: #00f0ff;
  text-transform: uppercase;
  text-shadow: 0 0 12px #00f0ff, 0 0 25px #ff00f7;
  margin-top: 40px;
  margin-bottom: 15px;
  position: relative;
  text-align: center;
}

.about-container .section-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 3px;
  background: linear-gradient(90deg, #00f0ff, #ff00f7);
  border-radius: 5px;
  box-shadow: 0 0 15px rgba(255, 0, 247, 0.5);
}

/* 📜 Paragraphs */
.about-container p {
  margin-bottom: 20px;
  color: #e0e0e0;
  text-align: center;
}

.about-container strong {
  color: #00f0ff;
  text-shadow: 0 0 10px rgba(0, 240, 255, 0.6);
}

/* 💠 Feature List */
.feature-list {
  list-style: none;
  margin: 20px auto 40px;
  padding: 0;
  display: inline-block;
  text-align: left; /* keep bullet readability inside center container */
}

.feature-list li {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 240, 255, 0.25);
  border-radius: 15px;
  margin-bottom: 15px;
  padding: 14px 20px;
  line-height: 1.6;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.2);
}

.feature-list li:hover {
  background: rgba(0, 240, 255, 0.1);
  box-shadow:
    0 0 20px rgba(0, 240, 255, 0.4),
    0 0 40px rgba(255, 0, 247, 0.2);
  transform: translateX(4px);
}

/* ✨ Divider */
.glow-divider {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #00f0ff, #ff00f7);
  margin: 50px 0;
  box-shadow: 0 0 15px rgba(255, 0, 247, 0.5);
  border-radius: 3px;
}

/* 🚀 CTA Button */
.btn-cta {
  display: inline-block;
  background: linear-gradient(90deg, #00f0ff, #ff00f7);
  padding: 14px 36px;
  border-radius: 50px;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  box-shadow: 0 0 25px rgba(0, 240, 255, 0.3), 0 0 55px rgba(255, 0, 247, 0.3);
  transition: all 0.4s ease;
}

.btn-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 0 35px rgba(0, 240, 255, 0.6), 0 0 75px rgba(255, 0, 247, 0.5);
}

/* 📱 UNIVERSAL MOBILE OPTIMIZATION */
@media (max-width: 991px) {
  .about-container {
    padding: 40px 25px;
    font-size: 1rem;
    text-align: center;
  }

  .about-container .section-title {
    font-size: 1.8rem;
  }

  .feature-list {
    text-align: left;
    margin: 0 auto 30px;
  }

  .feature-list li {
    font-size: 0.95rem;
    padding: 12px 16px;
  }

  .btn-cta {
    padding: 12px 28px;
    font-size: 0.9rem;
  }
}

@media (max-width: 600px) {
  .about-container {
    padding: 30px 20px;
    font-size: 0.95rem;
  }

  .feature-list li {
    padding: 10px 14px;
  }

  .about-container .section-title {
    font-size: 1.6rem;
  }
}


/* ------------------------------------------------------------
   🌌 SO SMOOTH PROMO | SUPREME MAXIMUM FOOTER GLOW
------------------------------------------------------------ */
.site-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  background: radial-gradient(circle at center top, rgba(0, 0, 60, 0.95) 0%, rgba(0, 0, 25, 0.92) 100%);
  border-top: 2px solid var(--neon-blue);
  box-shadow:
    0 -5px 35px var(--neon-purple),
    0 -10px 60px var(--neon-pink),
    inset 0 5px 30px rgba(0, 240, 255, 0.25);
  padding: 35px 25px 10px;
  backdrop-filter: blur(12px) saturate(180%);
  overflow: hidden;
  z-index: 1000;
  animation: footerFlow 10s ease-in-out infinite;
}

@keyframes footerFlow {
  0%,100% { box-shadow: 0 -5px 35px var(--neon-purple), 0 -10px 60px var(--neon-pink); }
  50% { box-shadow: 0 -5px 45px var(--neon-blue), 0 -12px 70px var(--neon-pink); }
}

/* Floating aurora glow lines */
.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 9px;
  background: linear-gradient(90deg, var(--neon-blue), var(--neon-pink), var(--neon-purple), var(--neon-blue));
  background-size: 400%;
  animation: auroraFlow 12s linear infinite;
  box-shadow: 0 0 25px var(--neon-blue);
}

@keyframes auroraFlow {
  0% { background-position: 0% 50%; }
  100% { background-position: 400% 50%; }
}

/* ------------------------------ LINKS ------------------------------ */
.footer-links {
  margin-bottom: 12px;
  z-index: 5;
  position: relative;
}

.footer-link {
  color: var(--neon-blue);
  margin: 0 14px;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  transition: all 0.4s ease;
  position: relative;
}

.footer-link:hover {
  color: var(--neon-pink);
  text-shadow: 0 0 12px var(--neon-pink), 0 0 25px var(--neon-blue);
  transform: scale(1.15);
}

/* Animated underline effect */
.footer-link::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--neon-pink);
  box-shadow: 0 0 12px var(--neon-pink);
  transition: width 0.4s ease-in-out;
}
.footer-link:hover::after {
  width: 100%;
}

/* ------------------------------ SOCIAL ICONS ------------------------------ */
.social-icons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin: 20px 0;
  position: relative;
  z-index: 10;
}

/* Glowing circular icons */
.social-glow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border: 2px solid var(--neon-blue);
  border-radius: 50%;
  font-size: 22px;
  color: #fff;
  background: rgba(0, 0, 30, 0.6);
  box-shadow:
    0 0 20px var(--neon-blue),
    0 0 35px var(--neon-purple),
    inset 0 0 10px var(--neon-blue);
  transition: all 0.4s ease;
  animation: pulseOrbit 3.5s infinite ease-in-out;
  position: relative;
  overflow: hidden;
}

/* Radiant ripple light inside icons */
.social-glow::after {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
  background: conic-gradient(from 0deg, var(--neon-blue), var(--neon-pink), var(--neon-purple), var(--neon-blue));
  animation: spinGlow 8s linear infinite;
  opacity: 0.15;
  pointer-events: none;
  filter: blur(8px);
}

/* Hover – mega shine + pulse */
.social-glow:hover {
  color: #000;
  background: var(--neon-blue);
  transform: scale(1.25) rotate(10deg);
  box-shadow:
    0 0 25px var(--neon-pink),
    0 0 45px var(--neon-purple),
    0 0 65px var(--neon-blue);
  border-color: var(--neon-pink);
}

/* Orbiting pulse animation */
@keyframes pulseOrbit {
  0%,100% { transform: scale(1); filter: brightness(1); }
  50% { transform: scale(1.08); filter: brightness(1.3); }
}

/* Inner glow spin */
@keyframes spinGlow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ------------------------------ CREDIT ------------------------------ */
.footer-credit {
  font-size: 15px;
  font-weight: 500;
  color: #d2d2d2;
  letter-spacing: 0.6px;
  text-shadow: 0 0 10px var(--neon-blue);
  position: relative;
  z-index: 5;
  animation: creditGlow 6s ease-in-out infinite alternate;
}

@keyframes creditGlow {
  0% { color: #b8f9ff; text-shadow: 0 0 10px var(--neon-blue); }
  50% { color: #ffb8ff; text-shadow: 0 0 20px var(--neon-pink), 0 0 35px var(--neon-purple); }
  100% { color: #b8f9ff; text-shadow: 0 0 15px var(--neon-blue), 0 0 30px var(--neon-pink); }
}

/* ------------------------------ SPARK PARTICLES ------------------------------ */
.site-footer::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 250%;
  height: 250%;
  background: radial-gradient(circle, rgba(255,255,255,0.25) 0%, transparent 70%);
  opacity: 0.15;
  animation: sparkleFloat 80s linear infinite;
  z-index: 1;
}

@keyframes sparkleFloat {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-600px, -1000px, 0); }
}

/* ------------------------------ RESPONSIVE ------------------------------ */
@media (max-width: 768px) {
  .site-footer {
    padding: 28px 10px 45px;
  }
  .footer-link {
    font-size: 0.9rem;
  }
  .social-glow {
    width: 46px;
    height: 46px;
    font-size: 19px;
  }
}
/* -------------------------------------------
   🪶 Footer Spacing Fix
------------------------------------------- */

/* For all pages (so content isn't hidden under footer) */
body {
  padding-bottom: 50px; /* adjust based on footer height */
}

/* Optional top margin between main content and footer glow */
main,
.section,
.hero {
  margin-bottom: 60px; /* adds breathing room above footer */
}

/* ------------------------------------------------------------
   💬 POPUP | Stay Jazzy Message
------------------------------------------------------------ */
.popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  width: 90%;
  max-width: 450px;
  background: rgba(0, 0, 40, 0.92);
  border: 2px solid var(--neon-blue);
  border-radius: 20px;
  padding: 30px 25px;
  text-align: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  box-shadow:
    0 0 25px var(--neon-blue),
    0 0 50px var(--neon-pink),
    inset 0 0 20px var(--neon-blue);
  backdrop-filter: blur(12px);
  color: #fff;
}

.popup.show {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
  animation: popupGlow 1.5s ease-in-out infinite alternate;
}

.popup.hidden {
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -50%) scale(0.8);
}

@keyframes popupGlow {
  0% { box-shadow: 0 0 25px var(--neon-blue), 0 0 45px var(--neon-purple); }
  50% { box-shadow: 0 0 35px var(--neon-pink), 0 0 60px var(--neon-blue); }
  100% { box-shadow: 0 0 25px var(--neon-purple), 0 0 45px var(--neon-blue); }
}

.popup h3 {
  font-size: 1.5rem;
  color: var(--neon-pink);
  text-shadow: 0 0 10px var(--neon-blue), 0 0 20px var(--neon-pink);
  margin-bottom: 10px;
}

.popup p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #cceeff;
}

.popup button {
  font-weight: 700;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.4s ease;
}/* ------------------------------------------------------------
   🎨 SIMPLE GLOWING MOUSE TRAIL
------------------------------------------------------------ */
.trail {
  position: fixed;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.85;
  filter: blur(4px);
  transform: translate(-50%, -50%);
  animation: fadeTrail 0.8s linear forwards;
  z-index: 10; /* keep below nav/footer if needed */
}

@keyframes fadeTrail {
  0% {
    opacity: 1;
    transform: scale(1) translate(-50%, -50%);
  }
  100% {
    opacity: 0;
    transform: scale(0.3) translate(-50%, -50%);
  }
}
/* ------------------------------------------------------------
   💫 Simple Neon Cursor Trail Dots
------------------------------------------------------------ */
.cursor-trail {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.9;
  filter: blur(4px) brightness(1.8);
  transform: scale(1);
  animation: fadeTrail 0.6s linear forwards;
  z-index: 9999;
  mix-blend-mode: screen;
}

@keyframes fadeTrail {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(0.3);
  }
}
/* ===== NAV WAVE TRACK (container that sits behind nav) ===== */
.nav-bar { position: relative; z-index: 1000; } /* ensure nav content is above */
.nav-bar .logo-wrap, .nav-bar .nav-links { position: relative; z-index: 2; }

.nav-wave-track {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;                 /* behind nav content, in front of nav bg */
  pointer-events: none;       /* never block clicks */
}
/* ------------------------------------------------------------
   🌠 SO SMOOTH PROMO — SUPREME SHOOTING STAR SPARKLES
------------------------------------------------------------ */

/* Canvas base layer */
#sparkCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
  opacity: 0.6; /* adjust brightness of stars */
  transition: opacity 1s ease-in-out;
  background: radial-gradient(circle at 50% 30%, rgba(0, 10, 40, 0.3) 0%, rgba(0, 0, 20, 0.8) 100%);
  mix-blend-mode: screen;
  filter: blur(0.3px) brightness(1.1);
}

/* Subtle glow pulsing behind stars */
@keyframes starGlow {
  0%, 100% { opacity: 0.6; filter: brightness(1.1) blur(0.4px); }
  50% { opacity: 0.9; filter: brightness(1.4) blur(0.6px); }
}

#sparkCanvas.active {
  animation: starGlow 10s ease-in-out infinite alternate;
}

/* Optional fallback (no JS) — faint sparkle effect */
body.shooting-stars {
  background: radial-gradient(circle at 50% 20%, rgba(0, 40, 80, 0.25), rgba(0, 0, 25, 0.9));
  overflow-x: hidden;
}

/* ===== The moving wave layers ===== */
.nav-wave {
  position: absolute;
  top: 50%;
  height: 200%;
  aspect-ratio: 3 / 1;        /* keep it wide; adjust as needed */
  transform: translateY(-50%);
  background: url("assets/wave.png") no-repeat center / contain;
  filter: drop-shadow(0 0 18px var(--neon-blue))
          drop-shadow(0 0 30px var(--neon-pink));
  mix-blend-mode: screen;     /* neon blend */
  opacity: 0.75;
  will-change: transform, opacity, filter;
  animation: waveSlide 10s linear infinite, wavePulse 3.6s ease-in-out infinite;
}

/* Second copy offset so there’s no gap */
.nav-wave--2 {
  animation-delay: 5s, 1.8s; /* half the slide duration, half the pulse */
  filter: drop-shadow(0 0 14px var(--neon-purple))
          drop-shadow(0 0 26px var(--neon-blue));
  opacity: 0.6;
}

/* Move from right → left, then loop */
@keyframes waveSlide {
  0%   { transform: translate(120vw, -50%); }
  100% { transform: translate(-120vw, -50%); }
}

/* Soft shimmer/pulse while moving */
@keyframes wavePulse {
  0%   { opacity: 0.55; filter: drop-shadow(0 0 14px var(--neon-blue)) drop-shadow(0 0 20px var(--neon-pink)); }
  50%  { opacity: 0.9;  filter: drop-shadow(0 0 22px var(--neon-pink)) drop-shadow(0 0 32px var(--neon-purple)); }
  100% { opacity: 0.55; filter: drop-shadow(0 0 14px var(--neon-blue)) drop-shadow(0 0 20px var(--neon-pink)); }
}

/* Respect reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .nav-wave, .nav-wave--2 { animation: none; opacity: 0.4; }
}
/* 📰 NEWS GRID STYLING — SUPREME GLOW */

.news-card {
  background: rgba(0, 0, 25, 0.8);
  border: 2px solid rgba(0, 240, 255, 0.3);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 0 25px rgba(255, 0, 247, 0.15);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
}

.news-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.45), 0 0 60px rgba(255, 0, 247, 0.35);
  border-color: var(--neon-pink);
}

.news-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-bottom: 1px solid rgba(0, 240, 255, 0.3);
  filter: brightness(1.1) contrast(1.05);
}

.news-placeholder {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 220px;
  background: radial-gradient(circle, rgba(0, 240, 255, 0.2), rgba(0, 0, 30, 0.8));
  color: #00f0ff;
}

.news-content {
  padding: 20px 25px;
  color: #fff;
  text-align: left;
}

.news-meta {
  font-size: 0.85rem;
  color: #aaa;
  margin-bottom: 10px;
}

.news-meta .source {
  color: #00f0ff;
  font-weight: 600;
}

.btn-glow {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 14px;
  border-radius: 8px;
  border: 1px solid var(--neon-blue);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-glow:hover {
  background: linear-gradient(90deg, #00f0ff, #ff00f7);
  color: #000;
  box-shadow: 0 0 20px #00f0ff, 0 0 40px #ff00f7;
}
/* ------------------------------------------------------------
   🌟 FEATURED ARTIST COLLAGE — SUPREME MAX NEON GLOW EDITION
------------------------------------------------------------ */

.featured {
  max-width: 1300px;
  margin: 80px auto;
  padding: 50px 20px;
  border-radius: 25px;
  background: radial-gradient(circle at center, rgba(10, 0, 40, 0.8), rgba(0, 0, 20, 0.95));
  box-shadow: 0 0 50px rgba(255, 0, 255, 0.2), 0 0 120px rgba(0, 240, 255, 0.15);
  animation: glowPulse 6s ease-in-out infinite alternate;
}

.music-collage {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 40px;
  margin-top: 40px;
  align-items: start;
  justify-content: center;
}

.music-item {
  text-align: center;
  position: relative;
  padding: 20px;
  border-radius: 20px;
  background: rgba(0, 0, 25, 0.75);
  backdrop-filter: blur(12px);
  box-shadow: 0 0 25px rgba(160, 64, 255, 0.2), inset 0 0 20px rgba(0, 240, 255, 0.15);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.music-item:hover {
  transform: scale(1.06);
  box-shadow: 0 0 35px rgba(255, 0, 247, 0.5), inset 0 0 35px rgba(0, 240, 255, 0.25);
}

.art-frame {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 0 25px rgba(255, 0, 247, 0.5), 0 0 40px rgba(0, 240, 255, 0.3);
  transition: transform 0.4s ease;
}

.art-frame:hover {
  transform: scale(1.05) rotate(1deg);
}

.song-art {
  width: 100%;
  border-radius: 18px;
  object-fit: cover;
  display: block;
  transition: filter 0.4s ease, transform 0.4s ease;
}

.song-art:hover {
  filter: brightness(1.2) contrast(1.1);
  transform: scale(1.04);
}

.song-title {
  margin-top: 15px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  text-shadow: 0 0 10px #ff00f7, 0 0 15px #00f0ff;
  letter-spacing: 1px;
}

.song-title span {
  display: block;
  font-size: 0.9rem;
  color: #a8faff;
  text-shadow: 0 0 10px #00f0ff;
}

.song-player {
  margin-top: 12px;
  width: 100%;
  border-radius: 25px;
  background: rgba(0, 0, 30, 0.6);
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.2);
  outline: none;
  filter: drop-shadow(0 0 10px #ff00f7);
}

/* Subtle pulsing background glow */
@keyframes glowPulse {
  0% { box-shadow: 0 0 50px rgba(255, 0, 255, 0.25), 0 0 100px rgba(0, 240, 255, 0.2); }
  100% { box-shadow: 0 0 70px rgba(255, 0, 255, 0.45), 0 0 130px rgba(0, 240, 255, 0.35); }
}
/* 🎷 MINI BUTTON GLOW STYLE */
.mini-btn-glow {
  display: inline-block;
  margin-top: 8px;
  padding: 6px 14px;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  color: #fff;
  background: rgba(0, 240, 255, 0.08);
  border: 1px solid #00f0ff;
  border-radius: 20px;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.3s ease;
  box-shadow: 0 0 6px #00f0ff, 0 0 10px #00f0ff33;
}

.mini-btn-glow:hover {
  background: #00f0ff;
  color: #000;
  box-shadow: 0 0 15px #00f0ff, 0 0 30px #00f0ff77;
  transform: scale(1.05);
}

/* 🎧 Disable right-click & download on audio */
.song-player::-webkit-media-controls-enclosure {
  overflow: hidden;
}
.song-player::-webkit-media-controls-download-button {
  display: none !important;
}
.song-player::-webkit-media-controls-fullscreen-button {
  display: none !important;
}
.hero-desc {
  max-width: 900px;
  margin: 20px auto 30px;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #f8f8f8;
  text-shadow: 0 0 10px #00f0ff33, 0 0 20px #ff00f733;
}

.btn-glow.mega-bling {
  font-size: 1rem;
  padding: 12px 28px;
  margin-top: 25px;
  border-radius: 30px;
  background: linear-gradient(90deg, #00f0ff, #a040ff, #ff00f7);
  color: #000;
  font-weight: 700;
  box-shadow: 0 0 20px #00f0ff, 0 0 35px #ff00f733;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.btn-glow.mega-bling:hover {
  transform: scale(1.07);
  background: linear-gradient(90deg, #ff00f7, #a040ff, #00f0ff);
  box-shadow: 0 0 25px #ff00f7, 0 0 50px #00f0ff99;
}
/* ------------------------------------------------------------
   💌 SUPREME GLOW EMAIL SIGNUP SECTION — So Smooth Promo
------------------------------------------------------------ */

.section {
  position: relative;
  padding: 40px 20px 100px; /* ⬅️ Added bottom padding for footer space */
  text-align: center;
  color: #fff;
  z-index: 2;
}

.glow-box {
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(0, 240, 255, 0.3);
  border-radius: 20px;
  padding: 20px 30px;
  box-shadow: 0 0 25px rgba(0, 240, 255, 0.25), 0 0 50px rgba(255, 0, 247, 0.15);
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
}

.glow-box:hover {
  box-shadow: 0 0 35px rgba(0, 240, 255, 0.4), 0 0 70px rgba(255, 0, 247, 0.25);
  transform: translateY(-4px);
}

/* Titles & Text */
.section-title {
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.neon-title {
  color: #00f0ff;
  text-shadow: 0 0 10px #00f0ff, 0 0 20px #00f0ff, 0 0 40px #ff00f7;
}

.section-desc {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 25px;
  line-height: 1.6;
}

/* Form */
#signupForm {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  max-width: 480px;
  margin: 0 auto;
}

.input-glow {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  font-size: 1rem;
  outline: none;
  transition: all 0.3s ease;
  text-align: center;
}

.input-glow:focus {
  border-color: #00f0ff;
  box-shadow: 0 0 12px #00f0ff, 0 0 25px #ff00f7;
}

.btn-glow {
  background: linear-gradient(90deg, #00f0ff, #ff00f7);
  border: none;
  color: #fff;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 14px 32px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.4), 0 0 40px rgba(255, 0, 247, 0.25);
}

.btn-glow:hover {
  box-shadow: 0 0 25px rgba(0, 240, 255, 0.6), 0 0 60px rgba(255, 0, 247, 0.35);
  transform: scale(1.05);
}

.mega-bling {
  animation: pulseGlow 2.5s infinite alternate;
}

@keyframes pulseGlow {
  0% {
    filter: drop-shadow(0 0 10px #00f0ff);
  }
  100% {
    filter: drop-shadow(0 0 25px #ff00f7);
  }
}

.form-note {
  color: #aaa;
  font-size: 0.9rem;
  margin-top: 5px;
}



/* ✨ Footer Spacing Adjustment */
body {
  padding-bottom: 140px; /* Ensures space before footer across pages */
}
/* ------------------------------------------------------------
   🎷 SMOOTH JAZZ PLAYER COLLAGE — Supreme Glow Edition
------------------------------------------------------------ */

.player-collage {
  max-width: 1200px;
  margin: 60px auto 100px;
  padding: 40px 30px;
  border-radius: 20px;
  background: rgba(5, 10, 25, 0.65);
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.25), 0 0 60px rgba(255, 0, 247, 0.15);
  text-align: center;
  backdrop-filter: blur(10px);
}

.player-image-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 25px;
}

.player-tile {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(0, 240, 255, 0.3);
  box-shadow: 0 0 25px rgba(0, 240, 255, 0.2), 0 0 40px rgba(255, 0, 247, 0.15);
  transition: all 0.4s ease;
  background: radial-gradient(circle at center, rgba(0, 0, 0, 0.4) 0%, rgba(10, 15, 35, 0.9) 100%);
}

.player-tile:hover {
  transform: scale(1.05);
  box-shadow: 0 0 35px rgba(0, 240, 255, 0.4), 0 0 60px rgba(255, 0, 247, 0.25);
}

.player-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.6s ease;
  display: block;
}

.player-tile:hover .player-img {
  filter: brightness(1.25) saturate(1.3);
  transform: scale(1.08);
}

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

@media (max-width: 600px) {
  .player-image-grid {
    grid-template-columns: 1fr;
  }
}
.player-tile {
  animation: pulseGlow 3s infinite alternate;
}

@keyframes pulseGlow {
  0% { box-shadow: 0 0 25px rgba(0,240,255,0.25), 0 0 40px rgba(255,0,247,0.15); }
  100% { box-shadow: 0 0 40px rgba(0,240,255,0.5), 0 0 70px rgba(255,0,247,0.25); }
}
/* 🎵 JAZLYNN HOST SECTION — Rectangular Glow Edition */
.jazlynn-host {
  text-align: center;
  color: #fff;
  padding: 60px 20px;
  border-radius: 10px; /* 🔹 Reduced roundness for rectangular shape */
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(0, 240, 255, 0.25);
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.25), 0 0 35px rgba(255, 0, 247, 0.15);
  backdrop-filter: blur(10px);
  max-width: 960px; /* 🔹 Slightly wider for rectangular presentation */
  margin: 80px auto;
  transition: all 0.4s ease;
}

.jazlynn-host:hover {
  box-shadow: 0 0 40px rgba(0, 240, 255, 0.4), 0 0 70px rgba(255, 0, 247, 0.25);
  transform: scale(1.005);
}

.jazlynn-video-box {
  position: relative;
  display: inline-block;
  border-radius: 8px; /* 🔹 Rectangular edges */
  overflow: hidden;
  box-shadow: 0 0 25px rgba(0, 240, 255, 0.3), 0 0 45px rgba(255, 0, 247, 0.2);
  transition: all 0.4s ease;
  width: 100%;
  max-width: 820px; /* 🔹 More horizontal space */
  aspect-ratio: 16 / 9; /* 🔹 Enforce cinematic rectangle */
}

.jazlynn-video-box:hover {
  transform: scale(1.02);
  box-shadow: 0 0 45px rgba(0, 240, 255, 0.5), 0 0 75px rgba(255, 0, 247, 0.35);
}

#jazlynnVideo {
  width: 100%;
  height: 100%;
  border-radius: 8px; /* 🔹 Consistent with box corners */
  outline: none;
  display: block;
  object-fit: cover; /* 🔹 Ensures full rectangular coverage */
}

/* ✨ Titles & Text */
.section-title {
  font-size: 2.2rem;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

.neon-title {
  color: #00f0ff;
  text-shadow: 0 0 10px #00f0ff, 0 0 20px #ff00f7;
}

.section-desc {
  color: #ccc;
  font-size: 1.1rem;
  margin-bottom: 25px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* 📱 Responsive Adjustments */
@media (max-width: 768px) {
  .section-title {
    font-size: 1.8rem;
  }

  .jazlynn-video-box {
    width: 100%;
    max-width: 100%;
    border-radius: 6px;
  }

  #jazlynnVideo {
    border-radius: 6px;
  }
}
/* 📱 Fix long email overflow in buttons / text */
.btn-glow,
a[href^="mailto:"] {
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: normal;
  display: inline-block;
  max-width: 100%;
  text-align: center;
}
/* ------------------------------------------------------------
   🌟 FEATURED ARTIST — COMPACT GLOW EDITION (Enhanced Inner Size)
------------------------------------------------------------ */
.featured-compact {
  max-width: 960px;
  margin: 60px auto;
  padding: 35px 24px;
  border-radius: 20px;
  background: radial-gradient(circle at center, rgba(10, 0, 40, 0.85), rgba(0, 0, 20, 0.95));
  box-shadow: 0 0 30px rgba(255, 0, 255, 0.25), 0 0 70px rgba(0, 240, 255, 0.15);
  animation: glowCompactPulse 6s ease-in-out infinite alternate;
  text-align: center;
}

@keyframes glowCompactPulse {
  0% { box-shadow: 0 0 25px rgba(255,0,255,0.2), 0 0 60px rgba(0,240,255,0.15); }
  100% { box-shadow: 0 0 45px rgba(255,0,255,0.35), 0 0 90px rgba(0,240,255,0.25); }
}

/* Title + Description */
.featured-compact .section-title {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.featured-compact .section-desc {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 28px;
}

/* Layout */
.featured-compact .music-collage {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 28px;
}

/* Card */
.featured-compact .music-item {
  max-width: 300px;
  padding: 28px 22px;
  border-radius: 18px;
  background: rgba(0, 0, 25, 0.78);
  backdrop-filter: blur(10px);
  box-shadow: 0 0 22px rgba(160, 64, 255, 0.25), inset 0 0 16px rgba(0, 240, 255, 0.12);
  transition: all 0.35s ease;
}

.featured-compact .music-item:hover {
  transform: scale(1.06);
  box-shadow: 0 0 30px rgba(255, 0, 247, 0.4), inset 0 0 25px rgba(0, 240, 255, 0.2);
}

/* Album Art */
.featured-compact .art-frame {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 0 22px rgba(255, 0, 247, 0.4), 0 0 28px rgba(0, 240, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 30, 0.6);
  padding: 6px;
}

.featured-compact .song-art {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1; /* Keeps perfect square for your 5x5 image */
  border-radius: 12px;
  object-fit: contain; /* Ensures full image visible */
  display: block;
  transition: filter 0.3s ease, transform 0.3s ease;
  background: transparent;
}

.featured-compact .song-art:hover {
  filter: brightness(1.18);
  transform: scale(1.05);
}


/* Song Title */
.featured-compact .song-title {
  margin-top: 14px;
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
  text-shadow: 0 0 10px #ff00f7, 0 0 12px #00f0ff;
}

.featured-compact .song-title span {
  font-size: 0.85rem;
  color: #a8faff;
  text-shadow: 0 0 10px #00f0ff;
}

/* Audio Player */
.featured-compact .song-player {
  width: 100%;
  margin-top: 10px;
  border-radius: 18px;
  background: rgba(0, 0, 30, 0.55);
  box-shadow: 0 0 14px rgba(0, 240, 255, 0.25);
  filter: drop-shadow(0 0 6px #ff00f7);
  transform: scale(1.05);
}

/* Button */
.featured-compact .mini-btn-glow {
  display: inline-block;
  margin-top: 8px;
  padding: 7px 16px;
  font-size: 0.85rem;
  border-radius: 22px;
  color: #fff;
  border: 1px solid #00f0ff;
  background: rgba(0, 240, 255, 0.1);
  transition: all 0.3s ease;
  box-shadow: 0 0 8px #00f0ff55;
}

.featured-compact .mini-btn-glow:hover {
  background: #00f0ff;
  color: #000;
  box-shadow: 0 0 18px #00f0ff, 0 0 30px #00f0ff99;
  transform: scale(1.08);
}

/* Promo Description */
.featured-compact .promo-desc {
  margin-top: 30px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #e0e0e0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .featured-compact { max-width: 90%; padding: 25px 14px; }
  .featured-compact .section-title { font-size: 1.4rem; }
  .featured-compact .music-item { max-width: 260px; padding: 20px; }
  .featured-compact .song-art { height: 180px; }
  .featured-compact .song-title { font-size: 0.95rem; }
  .featured-compact .mini-btn-glow { font-size: 0.78rem; }
}
/* ------------------------------------------------------------
   🌐 HORIZONTAL PROMO STRIP — 5 PER ROW
------------------------------------------------------------ */
.promo-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr); /* 👈 Force exactly 5 per row */
  gap: 35px;
  justify-items: center;
  align-items: center;
  margin: 60px auto 20px;
  text-align: center;
  max-width: 1100px; /* Keeps row centered and aligned */
}

.promo-thumb {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #fff;
  transition: all 0.3s ease;
}

.promo-thumb img {
  width: 110px;
  height: 110px;
  object-fit: contain;
  border-radius: 14px;
  background: rgba(0, 0, 25, 0.7);
  padding: 10px;
  box-shadow: 0 0 15px rgba(0,240,255,0.3), inset 0 0 10px rgba(255,0,247,0.2);
  transition: transform 0.4s ease, box-shadow 0.4s ease, filter 0.4s ease;
}

.promo-thumb span {
  margin-top: 8px;
  font-size: 0.85rem;
  text-shadow: 0 0 8px #00f0ff;
}

.promo-thumb:hover img {
  transform: scale(1.1);
  box-shadow: 0 0 25px rgba(0,240,255,0.6), inset 0 0 20px rgba(255,0,247,0.3);
  filter: brightness(1.2);
}

.promo-thumb:hover span {
  color: #00f0ff;
  text-shadow: 0 0 10px #00f0ff, 0 0 20px #ff00f7;
}

/* Footer CTA */
.promo-note {
  text-align: center;
  font-size: 0.95rem;
  color: #ccc;
  margin-top: 25px;
}

.promo-note .glow-link {
  color: #00f0ff;
  text-decoration: none;
  font-weight: bold;
  text-shadow: 0 0 8px #00f0ff, 0 0 15px #ff00f7;
  transition: all 0.3s ease;
}

.promo-note .glow-link:hover {
  color: #fff;
  text-shadow: 0 0 12px #00f0ff, 0 0 30px #ff00f7;
}

/* Responsive */
@media (max-width: 1000px) {
  .promo-strip {
    grid-template-columns: repeat(3, 1fr); /* 3 per row for tablets */
    gap: 25px;
  }
}

@media (max-width: 600px) {
  .promo-strip {
    grid-template-columns: repeat(2, 1fr); /* 2 per row for phones */
    gap: 20px;
  }
  .promo-thumb img {
    width: 90px;
    height: 90px;
  }
  .promo-thumb span {
    font-size: 0.8rem;
  }
}
/* ------------------------------------------------------------
   🎬 JAZLYNN ADS — Compact, Clean, Glow
------------------------------------------------------------ */
.jaz-ads {
  width: 100%;
  padding: 20px 16px 10px;
  text-align: center;
  margin-bottom: 150px; /* 👈 adds nice clean gap before footer */
}

.jaz-ads__title {
  font-size: 1.6rem;
  margin: 0 0 10px;
}

.jaz-ads__box {
  /* Compact max size with graceful scaling */
  width: 100%;
  max-width: 760px;     /* desktop cap */
  margin: 12px auto;
  border-radius: 14px;
  background: rgba(0, 0, 25, 0.6);
  border: 1px solid rgba(0, 240, 255, 0.25);
  box-shadow: 0 0 18px rgba(0,240,255,0.25), 0 0 38px rgba(255,0,247,0.18);
  overflow: hidden;
}

.jaz-ads__video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;   /* keeps it “not big”, nice and cinematic */
  height: auto;
  outline: none;
  background: #000;       /* no white flash while loading */
}

/* Subtle hover sheen on desktop */
@media (hover:hover) and (pointer:fine) {
  .jaz-ads__box:hover {
    box-shadow: 0 0 26px rgba(0,240,255,0.4), 0 0 60px rgba(255,0,247,0.28);
    transform: translateY(-1px);
    transition: box-shadow 0.35s ease, transform 0.35s ease;
  }
}

.jaz-ads__note {
  color: #cfd9ff;
  font-size: 0.95rem;
  margin: 8px 0 0;
}

.jaz-ads .glow-link {
  color: var(--neon-blue, #00f0ff);
  text-decoration: none;
  font-weight: 700;
  text-shadow: 0 0 8px rgba(0,240,255,0.7);
}
.jaz-ads .glow-link:hover {
  color: #fff;
  text-shadow: 0 0 12px #00f0ff, 0 0 22px #ff00f7;
}

/* Mobile tweaks */
@media (max-width: 768px) {
  .jaz-ads__title { font-size: 1.35rem; }
  .jaz-ads__box   { max-width: 94vw; }
}
  .announcement-banner {
    margin: 25px auto 35px;
    padding: 18px 25px;
    background: rgba(0, 240, 255, 0.08);
    border: 1px solid rgba(255, 0, 247, 0.4);
    border-radius: 14px;
    font-size: 1rem;
    text-align: center;
    max-width: 650px;
    line-height: 1.5;
    color: #fff;
  }

  .glow-pulse {
    animation: glowPulse 2.5s infinite alternate;
  }

  @keyframes glowPulse {
    0% { box-shadow: 0 0 10px #00f0ff; }
    100% { box-shadow: 0 0 25px #ff00f7, 0 0 45px #00f0ff; }
  }
  .announcement-banner {
  display: flex;
  gap: 18px;
  align-items: center;
  padding: 22px 26px;
  margin: 30px auto;
  max-width: 1000px;
  background: rgba(0, 0, 25, 0.75);
  border-radius: 18px;
  box-shadow: 0 0 25px rgba(0,240,255,0.35), 0 0 45px rgba(255,0,247,0.25);
}

.chart-thumb img {
  width: 110px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0,240,255,0.6);
}

.announcement-text {
  color: #fff;
  font-size: 1rem;
  line-height: 1.5;
}

.announcement-text .highlight {
  color: #00f0ff;
  text-shadow: 0 0 10px #00f0ff, 0 0 20px #ff00f7;
}

/* Mobile */
@media (max-width: 768px) {
  .announcement-banner {
    flex-direction: column;
    text-align: center;
  }

  .chart-thumb img {
    width: 90px;
  }
}
