/* ✨ GLOBAL RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Orbitron', sans-serif;
  scroll-behavior: smooth;
}

/* 🌌 BODY */
body {
  background: radial-gradient(ellipse at center, #000010 0%, #000018 60%, #000000 100%);
  background-image: url('assets/background.png');
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  color: #fff;
  overflow-x: hidden;
  text-align: center;
  min-height: 100vh;
}

/* 🌠 STARFIELD ANIMATIONS */
#stars, #shooting-stars, #sparkles {
  position: fixed;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

#stars {
  background: transparent;
  box-shadow:
    100px 200px #fff, 300px 400px #00f2ff, 600px 800px #ff00ff,
    900px 1200px #fff, 1200px 1600px #00ffcc;
  animation: twinkle 8s linear infinite;
}

@keyframes twinkle {
  0%, 100% { opacity: 0.8; }
  50% { opacity: 1; }
}

/* 💫 Shooting stars */
#shooting-stars::before {
  content: '';
  position: absolute;
  width: 2px;
  height: 200px;
  background: linear-gradient(180deg, transparent, #00f2ff);
  top: -200px;
  left: 50%;
  animation: shoot 4s infinite ease-in-out;
}
@keyframes shoot {
  0% { transform: translateX(-50%) translateY(-200px) rotate(45deg); opacity: 0; }
  30% { opacity: 1; }
  100% { transform: translateX(200px) translateY(1000px) rotate(45deg); opacity: 0; }
}

/* ⚡ SPARKLES */
#sparkles {
  background: radial-gradient(circle, #ffffff55 1px, transparent 2px);
  background-size: 3px 3px;
  animation: sparkleMotion 6s infinite linear;
  opacity: 0.8;
}
@keyframes sparkleMotion {
  0% { background-position: 0 0; }
  100% { background-position: 100px 100px; }
}

/* ==========================================================
   🚀 NAVIGATION
   ========================================================== */
.site-header {
  position: sticky;
  top: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(12px);
  padding: 25px 0;
  z-index: 99;
  border-bottom: 1px solid rgba(0, 255, 255, 0.3);
  box-shadow: 0 0 25px #00f2ff, 0 0 60px #ff00ff;
}

.nav-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.logo {
  width: 130px;
  filter: drop-shadow(0 0 10px #00f2ff) drop-shadow(0 0 30px #ff00ff);
  animation: spinLogo 12s linear infinite, glowPulse 2s ease-in-out infinite alternate;
}
@keyframes spinLogo {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

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

.nav-btn {
  background: linear-gradient(90deg, #00f2ff, #ff00ff);
  color: #fff;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px #00f2ff, 0 0 25px #ff00ff;
}
.nav-btn:hover {
  background: linear-gradient(90deg, #ff00ff, #00f2ff);
  transform: scale(1.1);
  box-shadow: 0 0 25px #ff00ff, 0 0 45px #00f2ff;
}

/* ==========================================================
   🌟 HERO SECTION
   ========================================================== */
.hero {
  padding: 120px 20px 80px;
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: 4em;
  letter-spacing: 8px;
  text-shadow:
    0 0 15px #00f2ff,
    0 0 40px #ff00ff,
    0 0 80px #00ffcc;
  animation: shimmer 3s infinite alternate;
}

.hero-subtitle {
  font-size: 1.4em;
  margin-top: 20px;
  text-shadow: 0 0 10px #00f2ff, 0 0 20px #ff00ff;
  animation: fadeInUp 2s ease;
}

@keyframes shimmer {
  0% { text-shadow: 0 0 10px #00f2ff; }
  100% { text-shadow: 0 0 40px #ff00ff, 0 0 100px #00f2ff; }
}

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

/* ==========================================================
   💎 UNIVERSAL CARD / CONTAINER STYLES
   ========================================================== */
.card {
  margin: 60px auto;
  width: 90%;
  max-width: 900px;
  background: rgba(0, 0, 20, 0.7);
  border: 1px solid rgba(0, 255, 255, 0.3);
  border-radius: 25px;
  padding: 40px 20px;
  box-shadow: 0 0 40px #00f2ff, 0 0 80px #ff00ff;
  position: relative;
  z-index: 1;
  animation: floatBox 6s ease-in-out infinite;
}

@keyframes floatBox {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.section-title {
  font-size: 2em;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #fff;
}

/* ==========================================================
   🌟 MINI ARTIST HEADER — CLEAN FINAL VERSION
   ========================================================== */

.artist-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 35px;
  max-width: 1000px;
  margin: 60px auto;
  padding: 0 20px;
  text-align: left;
  animation: fadeInUp 1.2s ease forwards;
}

/* --- Artist Image (full visibility, glowing) --- */
.artist-mini-img {
  width: 560px;
  height: auto;
  object-fit: cover;
  border-radius: 16px;

  box-shadow:
    0 0 14px #00f2ff,
    0 0 24px rgba(0, 242, 255, 0.35);

  animation: pulseGlow 4s infinite ease-in-out;
}

@keyframes pulseGlow {
  0% { box-shadow: 0 0 14px #00f2ff; }
  50% { box-shadow: 0 0 26px #00f2ff; }
  100% { box-shadow: 0 0 14px #00f2ff; }
}

/* --- Text Column --- */
.artist-header-right {
  display: flex;
  flex-direction: column;
}

/* --- Artist Name --- */
.artist-mini-name {
  font-size: 2.4rem;
  font-weight: 900;
  color: #00f2ff;
  margin: 0;

  text-shadow:
    0 0 14px #00f2ff,
    0 0 26px rgba(0, 242, 255, 0.6);
}

/* --- Mobile Fix (full, uncropped images) --- */
@media (max-width: 650px) {

  .artist-header {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: 140px;
  }

  .artist-mini-img {
    width: 110vw;
    height: auto !important;
    object-fit: contain !important; 
    border-radius: 18px;

    box-shadow:
      0 0 12px #00f2ff,
      0 0 18px rgba(0, 242, 255, 0.35);
  }

  .artist-mini-name {
    font-size: 1.8rem;
    margin-top: 18px;
  }
}

/* 🔥 CTA Hover (Refined for Smooth Lift) */
.cta-button:hover {
  transform: translateY(-2px) scale(1.045);
  box-shadow:
    0 0 34px rgba(0, 242, 255, 0.75),
    0 0 44px rgba(255, 0, 255, 0.65);
}

/* 🧊 Subtle Secondary Text (Centered + Balanced) */
.cta-subtle {
  margin-top: 14px;
  font-size: 0.92rem;
  opacity: 0.9;
  letter-spacing: 0.45px;
  line-height: 1.6;
  text-align: center;

  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial;
}

/* 🔗 Secondary Link (Inline + Visual Separation) */
.cta-subtle a {
  display: inline-block;
  margin-left: 6px;
  color: #00f2ff;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;

  transition:
    color 0.25s ease,
    text-shadow 0.25s ease,
    transform 0.2s ease;
}

/* ✨ Secondary Hover — Clean White Glow */
.cta-subtle a:hover {
  color: #ffffff;
  transform: translateY(-1px);
  text-shadow:
    0 0 8px rgba(255, 255, 255, 0.85),
    0 0 14px rgba(0, 242, 255, 0.45);
}


/* 📱 Mobile Optimization (Clean Stack) */
@media (max-width: 600px) {

  .sponsor-cta-box {
    padding: 24px 18px;
  }

  .cta-text {
    font-size: 1.08rem;
    line-height: 1.5;
    margin-bottom: 16px;
  }

  .cta-button {
    width: 100%;
    padding: 15px 18px;
    font-size: 0.95rem;
  }

  .cta-subtle {
    margin-top: 16px;
    font-size: 0.88rem;
  }
}

/* ==========================================================
   💌 EMAIL FORM
   ========================================================== */
.inline-form {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.inline-form input[type="email"] {
  padding: 10px 15px;
  border-radius: 8px;
  border: none;
  outline: none;
  background: rgba(255,255,255,0.1);
  color: #fff;
  min-width: 250px;
  font-size: 1em;
  box-shadow: inset 0 0 10px #00f2ff, inset 0 0 20px #ff00ff;
}

.btn-primary {
  background: linear-gradient(90deg, #00f2ff, #ff00ff);
  color: #fff;
  padding: 10px 25px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  text-transform: uppercase;
  font-weight: 600;
  box-shadow: 0 0 20px #00f2ff, 0 0 40px #ff00ff;
  transition: 0.3s;
}
.btn-primary:hover {
  transform: scale(1.1);
  box-shadow: 0 0 40px #ff00ff, 0 0 70px #00f2ff;
}

/* 🎷 Popup */
.popup {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(6px);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.popup.show { display: flex; }

.popup-box {
  background: linear-gradient(135deg, #00f2ff, #ff00ff);
  padding: 30px;
  border-radius: 25px;
  box-shadow: 0 0 30px #00f2ff, 0 0 60px #ff00ff;
  text-align: center;
  animation: glowPulse 2s infinite alternate;
}
@keyframes glowPulse {
  0% { box-shadow: 0 0 20px #00f2ff, 0 0 30px #ff00ff; }
  100% { box-shadow: 0 0 60px #ff00ff, 0 0 90px #00f2ff; }
}

/* ==========================================================
   🎧 FEATURED SINGLE — Supreme Neon Aesthetic
   ========================================================== */
.cover-and-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 40px;
  margin-bottom: 60px;
  position: relative;
  z-index: 5;
}

/* ✨ Album Cover Image */
.cover-and-links img.cover {
  width: 85%;
  max-width: 400px;
  height: auto;
  border-radius: 20px;
  margin-bottom: 25px;
  border: 3px solid rgba(0, 242, 255, 0.5);
  box-shadow:
    0 0 25px #00f2ff,
    0 0 50px #ff00ff,
    inset 0 0 20px rgba(255, 255, 255, 0.2);
  animation: coverPulse 5s infinite alternate ease-in-out;
  transition: all 0.4s ease;
}

.cover-and-links img.cover:hover {
  transform: scale(1.03);
  box-shadow:
    0 0 40px #ff00ff,
    0 0 75px #00f2ff,
    inset 0 0 25px rgba(255, 255, 255, 0.3);
}

/* 💫 Button Row */
.stream-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 10px;
}

/* 🔵 Neon Buttons */
.btn-pill {
  background: linear-gradient(90deg, #00f2ff 0%, #ff00ff 100%);
  color: #fff;
  padding: 10px 26px;
  border-radius: 35px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0.8px;
  border: none;
  outline: none;
  cursor: pointer;
  box-shadow:
    0 0 20px #00f2ff,
    0 0 35px #ff00ff,
    inset 0 0 10px rgba(255, 255, 255, 0.2);
  transition: all 0.4s ease-in-out;
  animation: buttonGlow 4s ease-in-out infinite alternate;
}

.btn-pill:hover {
  transform: scale(1.15) rotate(1deg);
  box-shadow:
    0 0 40px #ff00ff,
    0 0 80px #00f2ff,
    inset 0 0 20px rgba(255, 255, 255, 0.4);
  background: linear-gradient(90deg, #ff00ff 0%, #00f2ff 100%);
}

/* 🔥 Glowing Animations */
@keyframes coverPulse {
  0% {
    box-shadow: 0 0 25px #00f2ff, 0 0 50px #ff00ff;
    filter: brightness(1);
  }
  100% {
    box-shadow: 0 0 40px #ff00ff, 0 0 80px #00f2ff;
    filter: brightness(1.15);
  }
}

@keyframes buttonGlow {
  0% {
    box-shadow: 0 0 15px #00f2ff, 0 0 30px #ff00ff;
  }
  100% {
    box-shadow: 0 0 30px #ff00ff, 0 0 60px #00f2ff;
  }
}

/* 📱 Responsive Design */
@media (max-width: 768px) {
  .cover-and-links img.cover {
    width: 90%;
    margin-bottom: 20px;
  }

  .btn-pill {
    padding: 8px 20px;
    font-size: 0.9em;
  }
}

/* ==========================================================
   🎮 Smooth Jazz Memory Game
   ========================================================== */
.memory-game-section {
  text-align: center;
  margin: 60px auto;
  max-width: 800px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 20px;
  box-shadow: 0 0 25px #00f2ff, 0 0 40px #ff00ff;
  padding: 40px 20px;
  backdrop-filter: blur(6px);
  position: relative;
  z-index: 10;
}

.memory-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-top: 25px;
  justify-items: center;
}

.memory-card {
  width: 100px;
  height: 100px;
  perspective: 1000px;
  cursor: pointer;
  position: relative;
  transform-style: preserve-3d;
}

.card-inner {
  width: 100%;
  height: 100%;
  transition: transform 0.7s ease;
  transform-style: preserve-3d;
  border-radius: 15px;
  box-shadow: 0 0 20px #00f2ff;
}

.memory-card.flipped .card-inner {
  transform: rotateY(180deg);
}

.card-front,
.card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 15px;
}

.card-front {
  background: rgba(0, 0, 0, 0.85);
  border: 2px solid #00f2ff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card-front-img {
  width: 70%;
  height: auto;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.card-front-img:hover {
  opacity: 1;
}

.card-back {
  background: linear-gradient(145deg, #00f2ff, #ff00ff);
  color: white;
  font-size: 2.2em;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: rotateY(180deg);
  box-shadow: 0 0 20px #00f2ff;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

/* ✨ Match Glow */
.memory-card.matched {
  animation: matchGlow 1.2s ease;
  opacity: 0.85;
}

@keyframes matchGlow {
  0% { box-shadow: 0 0 10px #00f2ff; }
  50% { box-shadow: 0 0 40px #ff00ff; transform: scale(1.1); }
  100% { box-shadow: 0 0 20px #00f2ff; transform: scale(1); }
}

/* 🎉 Win Popup */
.win-popup {
  display: none;
  justify-content: center;
  align-items: center;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  z-index: 1000;
}

.win-box {
  background: linear-gradient(145deg, #00f2ff, #ff00ff);
  color: white;
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 0 40px #ff00ff, 0 0 60px #00f2ff;
  animation: popupGlow 2s infinite alternate;
}

@keyframes popupGlow {
  0% { box-shadow: 0 0 25px #00f2ff, 0 0 50px #ff00ff; }
  100% { box-shadow: 0 0 50px #ff00ff, 0 0 80px #00f2ff; }
}

.restart-btn {
  background: linear-gradient(90deg, #00f2ff, #ff00ff);
  color: #fff;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: bold;
  border: none;
  cursor: pointer;
  box-shadow: 0 0 25px #00f2ff, 0 0 45px #ff00ff;
  transition: all 0.3s ease;
  margin-top: 15px;
}

.restart-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 40px #ff00ff, 0 0 70px #00f2ff;
}

/* 📱 Responsive */
@media (max-width: 768px) {
  .memory-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .memory-card {
    width: 80px;
    height: 80px;
  }
}
/* ==========================================================
   🍔 SUPREME HAMBURGER MENU (Mobile Only)
   ========================================================== */

/* Hide mobile elements on desktop */
.hamburger, .mobile-menu { display: none; }

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  /* Glowing Hamburger Icon */
  .hamburger {
    display: block;
    position: relative;
    width: 38px;
    height: 28px;
    cursor: pointer;
    z-index: 10001;
  }

  .hamburger span {
    position: absolute;
    height: 4px;
    width: 100%;
    background: linear-gradient(90deg, #00f2ff, #ff00f7);
    border-radius: 10px;
    left: 0;
    transition: 0.4s ease;
    box-shadow: 0 0 10px #00f2ff, 0 0 20px #ff00f7;
  }

  .hamburger span:nth-child(1) { top: 0; }
  .hamburger span:nth-child(2) { top: 12px; }
  .hamburger span:nth-child(3) { top: 24px; }

  /* ✨ Toggle Animation */
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 12px;
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg);
    top: 12px;
  }

  /* 📱 Mobile Dropdown Panel */
  .mobile-menu {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 70px;
    left: 50%;
    transform: translateX(-50%) scale(0.95);
    width: 85%;
    background: rgba(10, 10, 30, 0.9);
    backdrop-filter: blur(12px) saturate(180%);
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
    box-shadow: 0 0 25px #00f2ff, 0 0 50px #ff00f7, inset 0 0 25px rgba(255,255,255,0.1);
    z-index: 9999;
  }

  .mobile-menu a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.2rem;
    margin: 15px 0;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: 0.3s;
    text-shadow: 0 0 12px #00f2ff, 0 0 22px #ff00f7;
  }

  .mobile-menu a:hover {
    color: #ff00f7;
    transform: scale(1.1);
  }

  /* 🟣 Active State */
  .mobile-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) scale(1);
    animation: menuGlow 1s ease-in-out;
  }

  @keyframes menuGlow {
    0% { box-shadow: 0 0 20px #00f2ff, 0 0 30px #ff00f7; }
    50% { box-shadow: 0 0 40px #ff00f7, 0 0 60px #00f2ff; }
    100% { box-shadow: 0 0 25px #00f2ff, 0 0 50px #ff00f7; }
  }
}

/* ------------------------------
   🦶 FOOTER AREA
------------------------------ */
.site-footer {
  background-color: rgba(0, 0, 0, 0.85);
  padding: 25px 20px;
  color: white;
  text-align: center;
  border-top: 2px solid #00f0ff;
  box-shadow: 0 0 20px #ff00f7;
  margin-top: auto;
  z-index: 5;
}

.footer-container {
  max-width: 1000px;
  margin: 0 auto;
}

.footer-links {
  margin-bottom: 10px;
}

.footer-links a {
  color: #00f0ff;
  text-decoration: none;
  margin: 0 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ff00f7;
  text-shadow: 0 0 10px #ff00f7;
}

/* 🌐 Social Icons */
.social-icons {
  margin-top: 10px;
}

/* 🔥 Animated Glowing Social Buttons */
.social-glow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  margin: 0 10px;
  border: 2px solid #00f0ff;
  border-radius: 50%;
  font-size: 22px;
  color: #92238e;
  text-decoration: none;
  background: rgba(0, 0, 0, 0.4);
  box-shadow: 0 0 12px #00f0ff, 0 0 18px #ae4dab;
  transition: all 0.3s ease-in-out;
  animation: glowPulse 2s infinite ease-in-out;
}

.social-glow:hover {
  background: #00f0ff;
  color: #000;
  transform: scale(1.15) rotate(3deg);
  box-shadow: 0 0 25px #b04eac, 0 0 35px #00f0ff;
}

@keyframes glowPulse {
  0% {
    box-shadow: 0 0 8px #00f0ff, 0 0 15px #ff00f7;
  }
  50% {
    box-shadow: 0 0 16px #ff00f7, 0 0 28px #00f0ff;
  }
  100% {
    box-shadow: 0 0 8px #00f0ff, 0 0 15px #ff00f7;
  }
}

/* 💎 Footer Credit */
.footer-credit {
  margin-top: 15px;
  font-size: 14px;
  color: #ccc;
  text-shadow: 0 0 5px #00f0ff;
}
/* ==========================================================
   ✨ Mouse Trail Styling
   ========================================================== */
.mouse-trail {
  position: fixed;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, #00f2ff 0%, #ff00ff 60%, transparent 100%);
  box-shadow: 0 0 15px #00f2ff, 0 0 25px #ff00ff;
  transform: translate(-50%, -50%);
  opacity: 0.9;
  z-index: 9999;
  transition: opacity 0.6s ease, transform 0.6s ease;
  animation: trailGlow 1s ease-in-out infinite alternate;
}

@keyframes trailGlow {
  0% { box-shadow: 0 0 10px #00f2ff, 0 0 25px #ff00ff; }
  100% { box-shadow: 0 0 25px #ff00ff, 0 0 45px #00f2ff; }
}
/* 🎸 FLYING NEON BUS ANIMATION */
.flying-bass {
  position: fixed;
  top: 10px; /* Adjust this to align with your nav area */
  right: -250px; /* start off-screen */
  width: 280px;
  z-index: 9999;
  opacity: 0.9;
  filter: drop-shadow(0 0 25px #00f2ff) drop-shadow(0 0 40px #ff00ff);
  animation: bassFly 10s linear infinite, bassGlow 3s ease-in-out infinite alternate;
  pointer-events: none;
}

/* 🎶 Smooth Right-to-Left Glide */
@keyframes bassFly {
  0% {
    transform: translateX(0) rotate(0deg) scale(1);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  50% {
    transform: translateX(-50vw) rotate(-5deg) scale(1.05);
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateX(-120vw) rotate(0deg) scale(1);
    opacity: 0;
  }
}

/* 🎇 Glowing Pulse Effect */
@keyframes bassGlow {
  0% {
    filter: drop-shadow(0 0 15px #00f2ff) drop-shadow(0 0 25px #ff00ff);
  }
  50% {
    filter: drop-shadow(0 0 35px #ff00ff) drop-shadow(0 0 60px #00f2ff);
  }
  100% {
    filter: drop-shadow(0 0 20px #00f2ff) drop-shadow(0 0 40px #ff00ff);
  }
}
/* 🌟 FLOATING BUS IMAGE */
.floating-melody {
  position: fixed;
  right: 5px;              /* distance from right edge */
  bottom: 80px;             /* distance from bottom */
  width: 320px;             /* adjust size to fit design */
  z-index: 9500;
  opacity: 0.95;
  pointer-events: none;     /* prevents interfering with clicks */
  animation: melodyFloat 6s ease-in-out infinite, melodyGlow 3.5s ease-in-out infinite alternate;
  filter: drop-shadow(0 0 25px #00f2ff) drop-shadow(0 0 50px #ff00ff);
}

/* 🌊 Floating Motion */
@keyframes melodyFloat {
  0%   { transform: translateY(0px) rotate(0deg); }
  25%  { transform: translateY(-10px) rotate(1deg); }
  50%  { transform: translateY(0px) rotate(0deg); }
  75%  { transform: translateY(10px) rotate(-1deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

/* 💫 Glowing Pulse */
@keyframes melodyGlow {
  0% {
    filter: drop-shadow(0 0 20px #00f2ff) drop-shadow(0 0 40px #ff00ff);
  }
  50% {
    filter: drop-shadow(0 0 40px #ff00ff) drop-shadow(0 0 80px #00f2ff);
  }
  100% {
    filter: drop-shadow(0 0 25px #00f2ff) drop-shadow(0 0 60px #ff00ff);
  }
}

/* 📱 Responsive: hide image completely on mobile */
@media (max-width: 768px) {
  .floating-melody {
    display: none !important;
  }
}
/* 💬 Floating Quote Rotator */
.quote-rotator {
  position: fixed;
  right: 25px;
  bottom: 35px;
  width: 300px;
  text-align: right;
  color: #fff;
  font-family: "Orbitron", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.5px;
  text-shadow: 0 0 10px #00f2ff, 0 0 25px #ff00ff;
  animation: quoteGlow 3s ease-in-out infinite alternate;
  z-index: 9400;
  pointer-events: none;
}

@keyframes quoteGlow {
  0% { text-shadow: 0 0 10px #00f2ff, 0 0 25px #ff00ff; color: #e0ffff; }
  50% { text-shadow: 0 0 25px #ff00ff, 0 0 40px #00f2ff; color: #fff; }
  100% { text-shadow: 0 0 15px #00f2ff, 0 0 30px #ff00ff; color: #f0f8ff; }
}

/* Fade-in / Fade-out animation */
.fade {
  opacity: 0;
  animation: fadeInOut 1.2s ease forwards;
}
@keyframes fadeInOut {
  0% { opacity: 0; transform: translateY(5px); }
  50% { opacity: 1; transform: translateY(0); }
  100% { opacity: 1; }
}

/* Hide quote rotator on mobile */
@media (max-width: 768px) {
  .quote-rotator { display: none !important; }
}
/* ==========================================================
   🌌 HERO SECTION – ABOUT PAGE
   ========================================================== */
.hero {
  text-align: center;
  padding: 120px 20px 80px;
  position: relative;
  z-index: 5;
  background: transparent;
  animation: heroFadeIn 1.5s ease-in-out both;
}

.hero-title {
  font-size: 4.2rem;
  color: #ffffff;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 20px;
  text-shadow: 
    0 0 12px #00f2ff,
    0 0 25px #ff00f7,
    0 0 60px rgba(0, 240, 255, 0.8);
  animation: glowPulseHero 3.5s infinite ease-in-out;
}

.hero-subtitle {
  font-size: 1.4rem;
  color: #b8f9ff;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-shadow: 0 0 10px #00f2ff, 0 0 25px #ff00f7;
  animation: textFloat 6s ease-in-out infinite;
}

@keyframes heroFadeIn {
  0% { opacity: 0; transform: translateY(50px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes glowPulseHero {
  0%, 100% { text-shadow: 0 0 12px #00f2ff, 0 0 25px #ff00f7; }
  50% { text-shadow: 0 0 25px #ff00f7, 0 0 50px #00f2ff; }
}

@keyframes textFloat {
  0%, 100% { transform: translateY(0); opacity: 0.95; }
  50% { transform: translateY(-5px); opacity: 1; }
}

/* ==========================================================
   📖 ABOUT MAIN CONTENT
   ========================================================== */
main.card.glass.glow-box {
  max-width: 960px;
  margin: 0 auto 140px;
  padding: 60px 50px;
  text-align: center;
  line-height: 1.8;
  color: #f3faff;
  font-size: 1.1rem;
  border-radius: 25px;
  background: rgba(10, 10, 30, 0.6);
  box-shadow:
    0 0 30px rgba(0, 242, 255, 0.25),
    0 0 60px rgba(255, 0, 247, 0.25),
    inset 0 0 25px rgba(0, 242, 255, 0.2);
  animation: glassFloat 10s ease-in-out infinite;
  backdrop-filter: blur(20px) saturate(180%);
}

@keyframes glassFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

.section-title {
  font-size: 2.4rem;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 
    0 0 10px #00f2ff,
    0 0 20px #ff00f7,
    0 0 45px #00f2ff;
  animation: titleGlow 4s ease-in-out infinite alternate;
}

@keyframes titleGlow {
  0% { text-shadow: 0 0 12px #00f2ff, 0 0 25px #ff00f7; }
  100% { text-shadow: 0 0 30px #ff00f7, 0 0 60px #00f2ff; }
}

main p {
  margin-bottom: 28px;
  text-align: justify;
  text-shadow: 0 0 12px rgba(0, 240, 255, 0.2);
}

main p strong {
  color: #ffffff;
  text-shadow: 0 0 12px #00f2ff, 0 0 25px #ff00f7;
}

main p em {
  color: #ffb8ff;
  font-style: italic;
  text-shadow: 0 0 15px #ff00f7;
}

.glow-text {
  color: #00f2ff;
  font-weight: 700;
  text-shadow:
    0 0 15px #00f2ff,
    0 0 25px #ff00f7,
    0 0 40px rgba(255, 0, 255, 0.4);
  animation: glowBlink 3s ease-in-out infinite;
}

@keyframes glowBlink {
  0%, 100% { opacity: 1; filter: brightness(1); }
  50% { opacity: 0.8; filter: brightness(1.3); }
}

/* ==========================================================
   💫 RESPONSIVE DESIGN
   ========================================================== */
@media (max-width: 900px) {
  .hero-title { font-size: 3rem; }
  .hero-subtitle { font-size: 1.1rem; }
  main.card.glass.glow-box { padding: 40px 25px; }
}

@media (max-width: 600px) {
  .hero { padding: 100px 15px 60px; }
  main p { text-align: left; font-size: 1rem; }
}
/* ==========================================================
   ⚖️ LEGAL / TERMS PAGE STYLING — I LOVE SMOOTH JAZZ TOUR
   ========================================================== */
main.legal {
  max-width: 960px;
  margin: 120px auto 160px;
  padding: 60px 60px;
  background: rgba(10, 10, 25, 0.65);
  border-radius: 25px;
  color: #f5faff;
  font-size: 1.05rem;
  line-height: 1.85;
  letter-spacing: 0.3px;
  text-align: center;
  box-shadow:
    0 0 30px rgba(0, 242, 255, 0.25),
    0 0 50px rgba(255, 0, 247, 0.25),
    inset 0 0 25px rgba(0, 240, 255, 0.2);
  backdrop-filter: blur(18px) saturate(180%);
  text-shadow: 0 0 8px rgba(0, 242, 255, 0.2);
  animation: legalFloat 10s ease-in-out infinite;
}

@keyframes legalFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* ✨ Legal Section Titles */
main.legal h2 {
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: 700;
  margin-top: 40px;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow:
    0 0 12px #00f2ff,
    0 0 25px #ff00f7,
    0 0 40px rgba(0, 240, 255, 0.5);
  display: inline-block;
  padding: 10px 18px;
  border-radius: 12px;
  border: 2px solid rgba(0, 240, 255, 0.6);
  box-shadow:
    0 0 20px rgba(0, 240, 255, 0.4),
    0 0 40px rgba(255, 0, 247, 0.3);
  background: rgba(0, 0, 25, 0.4);
  animation: titlePulse 4s ease-in-out infinite alternate;
}

@keyframes titlePulse {
  0% { text-shadow: 0 0 10px #00f2ff, 0 0 25px #ff00f7; }
  100% { text-shadow: 0 0 25px #ff00f7, 0 0 45px #00f2ff; }
}

/* 🧾 Legal Paragraphs */
main.legal p {
  margin: 20px auto 28px;
  color: #dcefff;
  font-weight: 400;
  max-width: 700px;
  text-align: center;
  transition: color 0.3s ease;
}

main.legal p:hover {
  color: #ffffff;
}

/* 💎 Legal Links */
main.legal a {
  color: #00f2ff;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease-in-out;
}

main.legal a:hover {
  color: #ff00f7;
  border-color: #ff00f7;
  text-shadow: 0 0 8px #ff00f7, 0 0 15px #00f2ff;
}

/* 🌈 Decorative Divider Between Sections */
main.legal h2::after {
  content: "";
  display: block;
  width: 140px;
  height: 3px;
  margin: 15px auto 25px;
  background: linear-gradient(90deg, #00f2ff, #ff00f7, #00f2ff);
  border-radius: 10px;
  box-shadow: 0 0 10px #00f2ff, 0 0 25px #ff00f7;
  animation: dividerGlow 6s linear infinite;
}

@keyframes dividerGlow {
  0% { filter: brightness(1); opacity: 0.9; }
  50% { filter: brightness(1.5); opacity: 1; }
  100% { filter: brightness(1); opacity: 0.9; }
}

/* 💫 Floating Neon Border Animation */
main.legal::before {
  content: "";
  position: absolute;
  top: -3px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 3px;
  background: linear-gradient(90deg, #ff00f7, #00f2ff, #ff00f7);
  border-radius: 10px;
  filter: blur(2px);
  animation: borderFlow 8s linear infinite;
}

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

/* 🪶 Smooth Scroll & Layout Harmony */
html {
  scroll-behavior: smooth;
}

@media (max-width: 900px) {
  main.legal {
    padding: 40px 25px;
    margin: 100px auto 120px;
    font-size: 1rem;
  }
  main.legal h2 {
    font-size: 1.5rem;
  }
}

@media (max-width: 600px) {
  main.legal {
    border-radius: 18px;
    padding: 30px 20px;
  }
  main.legal p {
    max-width: 100%;
  }
}
/* ==========================================================
   🔐 PRIVACY POLICY / LEGAL PAGE STYLING — I LOVE SMOOTH JAZZ TOUR
   ========================================================== */

main.legal {
  max-width: 980px;
  margin: 120px auto 160px;
  padding: 70px 70px;
  background: radial-gradient(circle at 20% 30%, rgba(0, 0, 30, 0.85), rgba(0, 0, 10, 0.9));
  border-radius: 30px;
  color: #eaf9ff;
  font-size: 1.07rem;
  line-height: 1.9;
  text-align: center;
  letter-spacing: 0.35px;
  box-shadow:
    0 0 30px rgba(0, 242, 255, 0.25),
    0 0 50px rgba(255, 0, 247, 0.25),
    inset 0 0 25px rgba(0, 240, 255, 0.25);
  backdrop-filter: blur(18px) saturate(200%);
  text-shadow: 0 0 10px rgba(0, 242, 255, 0.2);
  animation: legalFloat 12s ease-in-out infinite;
}

/* 💫 Subtle Floating Motion */
@keyframes legalFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

/* ✨ Section Headings */
main.legal h2 {
  color: #ffffff;
  font-size: 1.65rem;
  font-weight: 800;
  margin-top: 45px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-shadow:
    0 0 10px #00f2ff,
    0 0 20px #ff00f7,
    0 0 35px rgba(0, 240, 255, 0.4);
  border-bottom: 3px solid transparent;
  display: inline-block;
  position: relative;
  animation: headingPulse 5s ease-in-out infinite alternate;
}

/* 🎶 Gradient Underline Animation */
main.legal h2::after {
  content: "";
  display: block;
  width: 140px;
  height: 3px;
  margin: 12px auto 0;
  background: linear-gradient(90deg, #00f2ff, #ff00f7, #00f2ff);
  border-radius: 10px;
  box-shadow: 0 0 12px #00f2ff, 0 0 20px #ff00f7;
  animation: dividerGlow 6s ease-in-out infinite;
}

@keyframes dividerGlow {
  0% { filter: brightness(1); opacity: 0.8; }
  50% { filter: brightness(1.5); opacity: 1; }
  100% { filter: brightness(1); opacity: 0.8; }
}

/* 💎 Heading Glow Animation */
@keyframes headingPulse {
  0% { text-shadow: 0 0 10px #00f2ff, 0 0 25px #ff00f7; }
  100% { text-shadow: 0 0 25px #ff00f7, 0 0 45px #00f2ff; }
}

/* 📘 Paragraphs */
main.legal p {
  color: #cfeaff;
  margin-bottom: 25px;
  font-weight: 400;
  text-align: center;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
  transition: color 0.3s ease;
}

main.legal p:hover {
  color: #ffffff;
}

/* 🟢 List Styling */
main.legal ul {
  list-style: none;
  margin: 20px auto 35px;
  padding: 0;
  text-align: center;
}

main.legal ul li {
  margin: 10px auto;
  padding: 10px 20px;
  color: #e4f9ff;
  font-weight: 500;
  background: rgba(0, 0, 40, 0.4);
  border-radius: 14px;
  display: inline-block;
  box-shadow:
    0 0 10px rgba(0, 242, 255, 0.15),
    inset 0 0 8px rgba(255, 0, 247, 0.15);
  transition: all 0.3s ease;
}

main.legal ul li:hover {
  transform: scale(1.05);
  background: rgba(0, 0, 60, 0.6);
  box-shadow:
    0 0 25px rgba(0, 242, 255, 0.3),
    0 0 35px rgba(255, 0, 247, 0.25);
}

/* 🔗 Links */
main.legal a {
  color: #00f2ff;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease-in-out;
}

main.legal a:hover {
  color: #ff00f7;
  border-color: #ff00f7;
  text-shadow: 0 0 8px #ff00f7, 0 0 15px #00f2ff;
}

/* 🌈 Subtle Gradient Accent Divider */
main.legal::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 60%;
  height: 4px;
  background: linear-gradient(90deg, transparent, #00f2ff, #ff00f7, transparent);
  border-radius: 10px;
  box-shadow: 0 0 25px #00f2ff, 0 0 35px #ff00f7;
}

/* 📱 Responsive Tweaks */
@media (max-width: 900px) {
  main.legal {
    padding: 45px 30px;
    margin: 100px auto 120px;
    font-size: 1.02rem;
  }

  main.legal h2 {
    font-size: 1.45rem;
  }

  main.legal ul li {
    display: block;
    width: 85%;
    margin: 12px auto;
  }
}

@media (max-width: 600px) {
  main.legal {
    border-radius: 20px;
    padding: 30px 20px;
  }
}
/* ==========================================================
   💌 CONTACT PAGE — I LOVE SMOOTH JAZZ TOUR
   ========================================================== */

main.card.glass.glow-box {
  max-width: 900px;
  margin: 120px auto 160px;
  padding: 50px 60px;
  background: rgba(10, 10, 25, 0.7);
  border-radius: 25px;
  color: #e7faff;
  box-shadow:
    0 0 35px rgba(0, 242, 255, 0.3),
    0 0 60px rgba(255, 0, 247, 0.3),
    inset 0 0 30px rgba(0, 240, 255, 0.2);
  backdrop-filter: blur(20px) saturate(180%);
  text-align: center;
  animation: cardFloat 12s ease-in-out infinite alternate;
}

@keyframes cardFloat {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

/* ✨ Section Title */
.section-title {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 30px;
  text-shadow: 0 0 12px #00f2ff, 0 0 30px #ff00ff;
  animation: titlePulse 3s ease-in-out infinite alternate;
}

@keyframes titlePulse {
  0% { text-shadow: 0 0 12px #00f2ff, 0 0 20px #ff00f7; }
  100% { text-shadow: 0 0 25px #ff00f7, 0 0 40px #00f2ff; }
}

/* ==========================================================
   📝 FORM DESIGN
   ========================================================== */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
  align-items: center;
}

.form-row {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}

/* 🔹 Input & Textarea Fields */
.contact-form input,
.contact-form textarea {
  flex: 1;
  min-width: 260px;
  padding: 14px 18px;
  font-size: 1rem;
  border: 2px solid rgba(0, 242, 255, 0.6);
  border-radius: 12px;
  background: rgba(0, 0, 20, 0.6);
  color: #ffffff;
  outline: none;
  box-shadow:
    0 0 12px rgba(0, 242, 255, 0.3),
    inset 0 0 8px rgba(255, 0, 247, 0.2);
  transition: all 0.4s ease;
  font-family: 'Orbitron', sans-serif;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #b5faff;
  opacity: 0.7;
  letter-spacing: 0.3px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #ff00ff;
  box-shadow:
    0 0 20px rgba(255, 0, 247, 0.7),
    0 0 40px rgba(0, 242, 255, 0.7);
  transform: scale(1.02);
}

/* 🔘 Submit Button */
.btn-primary.glow {
  background: linear-gradient(90deg, #00f2ff, #ff00ff);
  border: none;
  color: #fff;
  padding: 12px 30px;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow:
    0 0 20px #00f2ff,
    0 0 35px #ff00ff,
    inset 0 0 10px rgba(255, 255, 255, 0.2);
  animation: glowPulseBtn 2.5s ease-in-out infinite;
}

@keyframes glowPulseBtn {
  0% { box-shadow: 0 0 15px #00f2ff, 0 0 25px #ff00ff; }
  50% { box-shadow: 0 0 35px #ff00ff, 0 0 55px #00f2ff; }
  100% { box-shadow: 0 0 15px #00f2ff, 0 0 25px #ff00ff; }
}

.btn-primary.glow:hover {
  transform: scale(1.1);
  background: linear-gradient(90deg, #ff00ff, #00f2ff);
  text-shadow: 0 0 8px #fff;
}

/* ==========================================================
   💫 SUCCESS POPUP
   ========================================================== */
.popup.success {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 30, 0.8);
  backdrop-filter: blur(12px);
  z-index: 9000;
  animation: fadeIn 0.6s ease-in-out;
}

.popup-box {
  background: radial-gradient(circle, rgba(0, 20, 40, 0.85), rgba(10, 0, 30, 0.9));
  padding: 40px 60px;
  border-radius: 20px;
  text-align: center;
  color: #fff;
  box-shadow:
    0 0 25px #00f2ff,
    0 0 45px #ff00ff,
    inset 0 0 15px rgba(255, 255, 255, 0.15);
  animation: popupGlow 3s ease-in-out infinite alternate;
}

.popup-box h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: #eafaff;
  text-shadow: 0 0 12px #00f2ff, 0 0 25px #ff00f7;
}

.popup-box .btn-pill {
  background: linear-gradient(90deg, #00f2ff, #ff00f7);
  padding: 10px 22px;
  border-radius: 25px;
  font-weight: 700;
  color: #fff;
  border: none;
  cursor: pointer;
  box-shadow: 0 0 15px #00f2ff, 0 0 25px #ff00f7;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.popup-box .btn-pill:hover {
  transform: scale(1.1);
  box-shadow: 0 0 30px #ff00f7, 0 0 45px #00f2ff;
}

@keyframes popupGlow {
  0% { box-shadow: 0 0 25px #00f2ff, 0 0 50px #ff00f7; }
  100% { box-shadow: 0 0 35px #ff00f7, 0 0 60px #00f2ff; }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ==========================================================
   📱 RESPONSIVE OPTIMIZATION
   ========================================================== */
@media (max-width: 768px) {
  main.card.glass.glow-box {
    padding: 40px 25px;
    margin: 100px auto 120px;
  }

  .form-row {
    flex-direction: column;
    gap: 18px;
  }

  .contact-form input, .contact-form textarea {
    width: 100%;
    min-width: unset;
  }

  .section-title {
    font-size: 1.6rem;
  }
}
/* ==========================================================
   🎥 WATCH PAGE STYLING
   ========================================================== */
.watch-main {
  max-width: 1000px;
  margin: 100px auto 160px;
  padding: 50px 40px;
  background: rgba(10, 10, 25, 0.7);
  border-radius: 25px;
  box-shadow: 0 0 30px #00f2ff, 0 0 50px #ff00f7;
  color: #f8faff;
  text-align: center;
  animation: pulseWatch 8s ease-in-out infinite;
}

@keyframes pulseWatch {
  0% { box-shadow: 0 0 20px #00f2ff, 0 0 40px #ff00f7; }
  50% { box-shadow: 0 0 40px #ff00f7, 0 0 80px #00f2ff; }
  100% { box-shadow: 0 0 20px #00f2ff, 0 0 40px #ff00f7; }
}

/* 🎬 Video Embed */
.video-embed {
  margin: 40px auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 0 30px #00f2ff, 0 0 50px #ff00f7;
  animation: glowVideo 6s infinite alternate;
}

@keyframes glowVideo {
  0% { filter: brightness(1); }
  100% { filter: brightness(1.3); }
}

/* 🟥 Subscribe Button */
.subscribe-section {
  margin-top: 40px;
}

.subscribe-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, #ff0000, #ff00f7);
  color: #fff;
  font-weight: bold;
  font-size: 1.3rem;
  padding: 14px 36px;
  border-radius: 35px;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 0 25px #ff0000, 0 0 45px #ff00f7;
  transition: all 0.3s ease;
}

.subscribe-btn i {
  margin-right: 10px;
  font-size: 1.6rem;
}

.subscribe-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 45px #ff00f7, 0 0 80px #ff0000;
}

/* Mobile */
@media (max-width: 768px) {
  .watch-main {
    padding: 30px 20px;
  }
  iframe {
    height: 260px;
  }
  .subscribe-btn {
    font-size: 1.1rem;
    padding: 12px 28px;
  }
}

/* ==========================================================
   🌟 I LOVE SMOOTH JAZZ TOUR — SUPREME NEON LIST FORMAT (Centered v3)
   Clean • Vertical • Futuristic • Concert-Level Premium
   ========================================================== */


/* --- WRAPPER (Centered) --- */
.tour-list {
  max-width: 900px;
  margin: 80px auto 160px;
  padding: 0 20px;
  animation: fadeInUp 1.3s ease forwards;
  text-align: center;             /* CENTER EVERYTHING */
}


/* --- EACH TOUR ROW (More Spacing Added) --- */
.tour-item {
  display: flex;
  flex-direction: column;
  align-items: center;            /* CENTER CONTENT */
  padding: 40px 0;
  border-bottom: 2px solid rgba(0, 242, 255, 0.3);
  position: relative;
}


/* --- Glowing divider line --- */
.tour-item::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 50%;                      /* CENTER ON PAGE */
  transform: translateX(-50%);    /* PERFECT CENTER */
  height: 2px;
  width: 100%;
  max-width: 900px;
  background: linear-gradient(90deg, #00f2ff, #ff00ff, #ff4d00);
  background-size: 300%;
  animation: neonDivider 6s linear infinite;
  opacity: 0.5;
}

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


/* --- CITY --- */
.tour-city {
  font-size: 2rem;
  font-weight: 900;
  color: #00f2ff;
  text-shadow: 0 0 12px #00f2ff;
  margin-bottom: 12px;
}


/* --- VENUE + DATE ROW (Centered) --- */
.tour-info {
  display: flex;
  justify-content: center;        /* CENTER */
  align-items: center;            /* CENTER */
  flex-wrap: wrap;
  gap: 30px;                      /* spacing */
  font-size: 1.15rem;
  margin: 12px 0 20px;
}

.tour-venue {
  color: #fff;
  opacity: 0.9;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.35);
}

.tour-date {
  color: #ff00ff;
  font-weight: 700;
  text-shadow: 0 0 8px #ff00ff;
}


/* --- NOTE --- */
.tour-note {
  color: #ffffffcc;
  font-size: 1rem;
  margin-bottom: 25px;
  line-height: 1.6;
  max-width: 700px;
}


/* --- BUTTON (Centered) --- */
.tour-item .btn-pill {
  padding: 12px 30px;
  border-radius: 50px;
  background: linear-gradient(90deg, #ff00ff, #00f2ff);
  color: #000;
  font-weight: 800;
  letter-spacing: 1px;
  text-decoration: none;

  box-shadow:
    0 0 12px #ff00ff,
    0 0 12px #00f2ff;

  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.tour-item .btn-pill:hover {
  transform: scale(1.12);
  box-shadow:
    0 0 22px #ff00ff,
    0 0 22px #00f2ff;
}


/* --- Fade Up Entrance --- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}


/* --- MOBILE RESPONSIVE --- */
@media (max-width: 600px) {
  .tour-city { font-size: 1.7rem; }
  .tour-info { flex-direction: column; gap: 10px; }
}
/* ==========================================================
   🌟 I LOVE SMOOTH JAZZ TOUR — SUPREME ABOUT SECTION
   Neon Glass • Futuristic Glow • Cyber Smooth Jazz
   ========================================================== */

/* --- Main Section --- */
.about-section {
  max-width: 900px;
  margin: 100px auto;
  padding: 50px 40px;
  border-radius: 25px;
  text-align: center;

  /* Glass neon panel */
  background: rgba(5, 5, 20, 0.55);
  backdrop-filter: blur(12px) saturate(180%);

  border: 2px solid rgba(0, 242, 255, 0.35);
  box-shadow:
    0 0 30px rgba(0, 242, 255, 0.35),
    inset 0 0 25px rgba(0, 0, 0, 0.6);

  position: relative;
  overflow: hidden;
  animation: fadeInUp 1.2s ease forwards;
}

/* --- Animated Neon Aura Border --- */
.about-section::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 28px;
  background: linear-gradient(
    130deg,
    #00f2ff,
    #ff00ff,
    #ff4d00,
    #00f2ff
  );
  background-size: 300% 300%;
  opacity: 0.18;
  filter: blur(18px);
  animation: neonAura 8s linear infinite;
  z-index: -1;
}

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

/* --- Title --- */
.neon-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: #00f2ff;
  text-shadow:
    0 0 15px #00f2ff,
    0 0 40px rgba(0, 242, 255, 0.7);
  margin-bottom: 25px;
}

/* --- Paragraph Text --- */
.about-text {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #ffffffdd;
  margin-bottom: 22px;
  text-shadow: 0 0 6px rgba(255, 255, 255, 0.15);
}


/* ==========================================================
   🌟 SUPREME GLOWING “READ MORE” BUTTON
   ========================================================== */

.read-more-btn {
  display: inline-block;
  margin-top: 25px;
  padding: 14px 40px;
  border-radius: 50px;
  font-weight: 900;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none;
  color: #000;

  background: linear-gradient(90deg, #ff00ff, #00f2ff);
  box-shadow:
    0 0 18px #ff00ff,
    0 0 18px #00f2ff,
    inset 0 0 10px rgba(255, 255, 255, 0.35);

  transition: 0.25s ease-in-out;
}

/* Hover Glow Boost */
.read-more-btn:hover {
  transform: scale(1.12);
  box-shadow:
    0 0 30px #ff00ff,
    0 0 30px #00f2ff,
    0 0 60px rgba(255, 0, 255, 0.5);
}

/* Pulse Animation */
.read-more-btn.glow-button {
  animation: pulseGlow 1.8s infinite ease-in-out;
}

@keyframes pulseGlow {
  0%   { box-shadow: 0 0 20px #00f2ff; }
  50%  { box-shadow: 0 0 36px #ff00ff; }
  100% { box-shadow: 0 0 20px #00f2ff; }
}


/* --- Fade Up Entrance --- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
/* ==========================================================
   🎵 I LOVE SMOOTH JAZZ TOUR — ARTIST SOCIAL BAR (SUPREME)
   ========================================================== */

/* --- SOCIAL BAR WRAPPER --- */
.artist-social-row {
  display: flex;
  justify-content: center;
  gap: 22px;
  margin: 25px 0 35px;
}

/* --- SOCIAL ICONS --- */
.artist-social-row a {
  font-size: 1.7rem;
  color: #00f2ff;
  text-shadow: 
    0 0 10px #00f2ff,
    0 0 20px #00ccee,
    0 0 35px rgba(0, 242, 255, 0.7);

  transition: 0.25s ease;
}

/* Hover: neon explosion */
.artist-social-row a:hover {
  color: #ff00ff;
  transform: scale(1.22);
  text-shadow:
    0 0 12px #ff00ff,
    0 0 25px #ff00ff,
    0 0 40px rgba(255, 0, 255, 0.6);
}
/* ==========================================================
   🎵 OFFICIAL WEBSITE BUTTON — NEON RIBBON STYLE
   ========================================================== */

.artist-website-btn {
  display: inline-block;
  margin: 10px auto 40px;
  padding: 12px 32px;
  border-radius: 50px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  text-align: center;

  background: linear-gradient(90deg, #ff00ff, #00f2ff);
  color: #000;

  box-shadow:
    0 0 15px #ff00ff,
    0 0 15px #00f2ff,
    inset 0 0 12px rgba(255,255,255,0.35);

  transition: 0.25s ease-in-out;

  /* Glow animation */
  animation: websitePulse 2.3s infinite ease-in-out;
}

@keyframes websitePulse {
  0% { box-shadow: 0 0 15px #ff00ff, 0 0 15px #00f2ff; }
  50% { box-shadow: 0 0 30px #ff00ff, 0 0 35px #00f2ff; }
  100% { box-shadow: 0 0 15px #ff00ff, 0 0 15px #00f2ff; }
}

.artist-website-btn:hover {
  transform: scale(1.12);
  box-shadow:
    0 0 28px #ff00ff,
    0 0 28px #00f2ff,
    0 0 55px rgba(255, 0, 255, 0.55);
}
@media (max-width: 600px) {
  .artist-social-row a {
    font-size: 1.5rem;
  }
  .artist-website-btn {
    width: 90%;
    display: block;
  }
}


/* ==========================================================
   🎬 I LOVE SMOOTH JAZZ TOUR — ARTIST VIDEO COLLAGE (Scaled Smaller)
   Overall section scaled down — videos remain perfect 16:9
   ========================================================== */

/* Scale down ONLY the full collage block */
#artist-videos {
  margin-top: 40px;
  transform: scale(0.75);        /* ← adjust 0.55 to desired size */
  transform-origin: top center;  /* keeps it centered and clean */
}

/* Block per artist */
.artist-video-block {
  margin-top: 40px;
}

/* Artist name */
.artist-video-name {
  font-size: 1.4rem;
  font-weight: 800;
  color: #00f2ff;
  text-shadow:
    0 0 10px #00f2ff,
    0 0 22px rgba(0, 242, 255, 0.6);
  margin-bottom: 20px;
}

/* Video grid */
.video-collage {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* Tiles stay full quality */
.video-tile {
  background: radial-gradient(circle at top left, #050510, #000);
  border-radius: 18px;
  padding: 14px 14px 18px;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 0 18px rgba(0, 242, 255, 0.35),
    0 0 30px rgba(255, 0, 255, 0.2);
  border: 1px solid rgba(0, 242, 255, 0.45);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Keep the iframe perfect */
.video-frame-wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* KEEP 16:9 — do NOT change */
  border-radius: 12px;
  overflow: hidden;
  background: #02020a;
}

.video-frame-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Video title */
.video-title {
  font-size: 1rem;
  margin-top: 12px;
  color: #ffffffdd;
}

/* Mobile */
@media (max-width: 600px) {
  #artist-videos {
    transform: scale(0.8);        /* slightly larger on mobile */
  }
  .artist-video-name {
    text-align: center;
  }
  .video-title {
    text-align: center;
  }
}
/* ============================================================
   🌐 SPONSOR SPOTLIGHT — GLOW COLLAGE 5 PER ROW
   ============================================================ */

.sponsor-spotlight {
  margin: 120px auto 80px;
  text-align: center;
  max-width: 1000px;
}

.sponsor-title {
  font-size: 2rem;
  font-weight: 800;
  color: #00f2ff;
  text-shadow: 0 0 14px #00f2ff, 0 0 28px #ff00f7;
  margin-bottom: 8px;
}

.sponsor-sub {
  font-size: 1rem;
  opacity: 0.8;
  margin-bottom: 30px;
  color: #fff;
}

/* --- 5 per row --- */
.promo-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
  justify-items: center;
  align-items: center;
  margin: 20px auto;
}

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

.promo-thumb img {
  width: 110px;
  height: 110px;
  object-fit: contain;
  border-radius: 14px;
  padding: 10px;
  background: rgba(0, 0, 25, 0.7);

  box-shadow:
    0 0 15px rgba(0,240,255,0.35),
    inset 0 0 12px rgba(255,0,247,0.25);

  transition: transform 0.4s ease, box-shadow 0.4s ease, filter 0.4s ease;
}

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

.promo-thumb:hover img {
  transform: scale(1.12);
  box-shadow:
    0 0 25px rgba(0,240,255,0.7),
    inset 0 0 22px rgba(255,0,247,0.35);
  filter: brightness(1.22);
}

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

/* Promo CTA */
.promo-note {
  margin-top: 25px;
  font-size: 1rem;
  color: #ccc;
}

.promo-note .glow-link {
  color: #00f0ff;
  font-weight: bold;
  text-decoration: none;
  text-shadow: 
    0 0 10px #00f0ff,
    0 0 20px #ff00f7;

  transition: all 0.3s ease;
}

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

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

@media (max-width: 600px) {
  .promo-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .promo-thumb img {
    width: 90px;
    height: 90px;
  }

  .promo-thumb span {
    font-size: 0.8rem;
  }
}
/* ============================================================
   🌟 SUPREME GLOW SPONSOR BOX + BUTTON
   ============================================================ */

.sponsor-cta-box {
  margin: 60px auto 40px;
  padding: 30px 40px;
  max-width: 650px;
  text-align: center;

  background: rgba(0, 0, 25, 0.72);
  border-radius: 18px;
  border: 2px solid rgba(0, 240, 255, 0.4);

  box-shadow:
    0 0 18px rgba(0,240,255,0.35),
    0 0 35px rgba(255,0,247,0.25),
    inset 0 0 20px rgba(0,240,255,0.2);

  backdrop-filter: blur(6px);
  
  animation: ctaBoxFade 1.3s ease forwards;
  opacity: 0;
}

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

.cta-text {
  color: #e6e6e6;
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(0,240,255,0.45);
}

/* 🌈 SUPREME GLOW BUTTON */
.cta-button {
  display: inline-block;
  padding: 14px 32px;
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;

  background: linear-gradient(90deg, #00f2ff, #ff00f7);
  background-size: 200% 200%;

  box-shadow:
    0 0 12px #00f2ff,
    0 0 22px rgba(255,0,247,0.6),
    inset 0 0 15px rgba(255,255,255,0.2);

  animation: ctaGlowShift 4s linear infinite;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.cta-button:hover {
  transform: scale(1.08);
  box-shadow:
    0 0 20px #00f2ff,
    0 0 35px #ff00f7,
    0 0 45px rgba(0,255,255,0.7);
}

/* Responsive */
@media (max-width: 600px) {
  .sponsor-cta-box {
    padding: 22px 20px;
  }

  .cta-text {
    font-size: 1rem;
  }

  .cta-button {
    padding: 12px 26px;
    font-size: 1rem;
  }
}
/* ==========================================================
   🌟 FLOATING GROUP IMAGE — TOP RIGHT SUPREME EDITION
   Small • Pulsing • Glowing • Floating • On Every Page
   ========================================================== */

.floating-group-img {
  position: fixed;
  top: 300px;         /* adjust height */
  left: 10px;       /* adjust distance from right edge */
  width: 240px;      /* small, clean display */
  height: auto;
  z-index: 9999;     /* above everything */

  opacity: 0.9;
  filter: drop-shadow(0 0 14px rgba(0, 242, 255, 0.85))
          drop-shadow(0 0 22px rgba(255, 0, 247, 0.55));

  animation: groupPulse 3.5s ease-in-out infinite,
             groupFloat 6s ease-in-out infinite;

  transition: transform 0.3s ease, opacity 0.3s ease;
}

.floating-group-img:hover {
  transform: scale(1.07);
  opacity: 1;
  filter: drop-shadow(0 0 20px rgba(0, 242, 255, 1))
          drop-shadow(0 0 30px rgba(255, 0, 247, 0.8));
}

/* Pulsing neon glow */
@keyframes groupPulse {
  0%   { filter: drop-shadow(0 0 12px rgba(0,242,255,0.7)); }
  50%  { filter: drop-shadow(0 0 22px rgba(0,242,255,1)); }
  100% { filter: drop-shadow(0 0 12px rgba(0,242,255,0.7)); }
}

/* Floating up/down motion */
@keyframes groupFloat {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-8px); }
  100% { transform: translateY(0); }
}

/* Mobile adjustments */
@media (max-width: 600px) {
  .floating-group-img {
    top: 110px;
    right: 10px;
    width: 95px;
    opacity: 0.8;
  }
}
/* 🛍️ MERCH STORE LAYOUT */
.merch-store-section {
  margin: 80px auto 100px;
  max-width: 1200px;
}

.section-subtitle {
  font-size: 1rem;
  opacity: 0.85;
  margin-bottom: 35px;
}

/* GRID */
.merch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 28px;
  margin-bottom: 40px;
}

/* PRODUCT CARD */
.merch-item-card {
  background: radial-gradient(circle at top, #120028 0%, #050016 55%, #02000a 100%);
  border-radius: 20px;
  padding: 18px 18px 22px;
  text-align: center;
  box-shadow:
    0 0 18px rgba(0, 242, 255, 0.35),
    0 0 30px rgba(255, 0, 247, 0.25);
  border: 1px solid rgba(0, 242, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.merch-item-card::before {
  content: "";
  position: absolute;
  inset: -20%;
  background: conic-gradient(from 120deg, #00f2ff, #ff00f7, #ff8800, #00f2ff);
  opacity: 0.14;
  mix-blend-mode: screen;
  filter: blur(22px);
  z-index: -1;
  animation: merchGlowSweep 9s linear infinite;
}

@keyframes merchGlowSweep {
  0% { transform: translate3d(-10%, -10%, 0) rotate(0deg); }
  50% { transform: translate3d(10%, 10%, 0) rotate(180deg); }
  100% { transform: translate3d(-10%, -10%, 0) rotate(360deg); }
}

.merch-item-card img {
  width: 100%;
  max-width: 260px;
  margin: 0 auto 12px;
  display: block;
  border-radius: 16px;
}

/* TEXT & CONTROLS */
.merch-item-card h3 {
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.merch-price {
  font-size: 1rem;
  color: #00f2ff;
  font-weight: 700;
  margin-bottom: 10px;
}

.merch-item-card label {
  display: block;
  font-size: 0.75rem;
  text-align: left;
  opacity: 0.85;
  margin-top: 8px;
}

.merch-select,
.merch-qty {
  width: 100%;
  margin-top: 4px;
  padding: 6px 10px;
  border-radius: 10px;
  border: 1px solid rgba(0, 242, 255, 0.35);
  background: rgba(1, 2, 20, 0.9);
  color: #fff;
  font-size: 0.85rem;
}

/* ADD TO CART BUTTON */
.glow-cart-btn {
  margin-top: 14px;
  width: 100%;
  padding: 10px 14px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, #00f2ff, #ff00f7);
  color: #050015;
  font-weight: 800;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  box-shadow:
    0 0 14px rgba(0, 242, 255, 0.8),
    0 0 26px rgba(255, 0, 247, 0.7);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.glow-cart-btn:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow:
    0 0 20px rgba(0, 242, 255, 1),
    0 0 34px rgba(255, 0, 247, 1);
}

/* 🛒 CART PANEL */
.cart-panel {
  margin-top: 25px;
  padding: 20px 22px;
}

.cart-title {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

#empty-cart-msg {
  font-size: 0.9rem;
  opacity: 0.8;
}

.cart-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 6px;
  font-size: 0.85rem;
}

.cart-table th,
.cart-table td {
  padding: 6px 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  text-align: left;
}

.cart-table th {
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  opacity: 0.8;
}

.cart-remove-btn {
  background: transparent;
  border: none;
  color: #ff4d7a;
  cursor: pointer;
  font-size: 0.8rem;
}

/* TOTAL + CHECKOUT */
.cart-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
  gap: 10px;
  flex-wrap: wrap;
}

.cart-total-row span:first-child {
  font-size: 0.9rem;
  opacity: 0.8;
}

#cart-total {
  font-size: 1.1rem;
  font-weight: 800;
  color: #00f2ff;
  margin-left: 6px;
}

.checkout-btn {
  padding: 10px 18px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, #ffc439, #ff8a00);
  color: #1f1300;
  font-weight: 800;
  letter-spacing: 0.5px;
  cursor: pointer;
  box-shadow: 0 0 16px rgba(255, 196, 57, 0.7);
  min-width: 210px;
}

.checkout-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  box-shadow: none;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .merch-store-section {
    margin-top: 50px;
  }
}
/* ==========================================================
   🚀 "COMING SOON" BANNER
   ========================================================== */
.coming-soon-banner {
  margin: 80px auto 50px;
  padding: 30px 40px;
  max-width: 900px;
  border-radius: 18px;

  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(16px);
  border: 2px solid rgba(0, 242, 255, 0.45);

  box-shadow:
    0 0 14px rgba(0, 242, 255, 0.65),
    inset 0 0 15px rgba(0, 242, 255, 0.25);

  animation: neonPulse 3.5s infinite ease-in-out;
}

.coming-soon-title {
  color: #00f2ff;
  font-size: 2.2rem;
  font-weight: 900;
  text-shadow:
    0 0 8px #00f2ff,
    0 0 16px rgba(0, 242, 255, 0.6);
  margin: 0;
}

.coming-soon-sub {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.15rem;
  margin-top: 10px;
  letter-spacing: .5px;
  line-height: 1.5;
}

/* 🔥 Glow animation */
@keyframes neonPulse {
  0% {
    box-shadow:
      0 0 12px rgba(0, 242, 255, 0.65),
      inset 0 0 12px rgba(0, 242, 255, 0.25);
    border-color: rgba(0, 242, 255, 0.45);
  }
  50% {
    box-shadow:
      0 0 28px rgba(0, 242, 255, 0.95),
      inset 0 0 20px rgba(0, 242, 255, 0.45);
    border-color: rgba(0, 242, 255, 0.85);
  }
  100% {
    box-shadow:
      0 0 12px rgba(0, 242, 255, 0.65),
      inset 0 0 12px rgba(0, 242, 255, 0.25);
    border-color: rgba(0, 242, 255, 0.45);
  }
}

/* 📱 Mobile Tuning */
@media (max-width: 700px) {
  .coming-soon-banner {
    margin: 60px 20px 40px;
    padding: 25px;
  }
  .coming-soon-title {
    font-size: 1.6rem;
  }
  .coming-soon-sub {
    font-size: 1rem;
  }
}
.disabled-btn {
  opacity: 0.4;
  cursor: not-allowed;
  filter: grayscale(60%);
  pointer-events: none;
}
/* ==========================================================
   🎤 HARMONI — STANDARD VIDEO (SIMPLE)
   ========================================================== */

.harmoni-section {
  margin: 120px auto 160px;
  max-width: 850px;
  padding: 0 20px;
  text-align: center;
}

.harmoni-video-standard {
  width: 100%;
  max-width: 850px;
  border-radius: 18px;
  outline: none;

  /* soft glow box */
  box-shadow:
    0 0 12px rgba(0,242,255,0.7),
    0 0 18px rgba(255,0,247,0.4);
}

.harmoni-caption {
  margin-top: 15px;
  font-size: 1.1rem;
  opacity: 0.85;
  color: #fff;
}

/* Mobile */
@media(max-width:650px) {
  .harmoni-caption { font-size: 1rem; }
}
/* 🟦 SUPREME MYSTERY RECTANGLE BOX */
.mystery-box {
  max-width: 460px;
  margin: 0 auto;
  padding: 30px 25px 35px;
  border-radius: 18px;
  background: linear-gradient(
    145deg,
    rgba(0,0,0,0.85),
    rgba(10,10,30,0.9)
  );
  border: 2px solid rgba(0,242,255,0.6);
  box-shadow:
    0 0 30px rgba(0,242,255,0.45),
    0 0 60px rgba(255,0,255,0.25),
    inset 0 0 25px rgba(0,242,255,0.15);
  animation: mysteryBoxPulse 6s infinite ease-in-out;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* ✨ Inner glow sweep */
.mystery-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(0,242,255,0.15),
    transparent 70%
  );
  animation: sweepGlow 8s infinite linear;
  pointer-events: none;
}

/* 🎭 Image Holder */
.mystery-collage {
  position: relative;
  margin-bottom: 20px;
}

/* 👤 Mystery Silhouette */
.mystery-artist-img {
  width: 100%;
  max-width: 280px;
  height: auto;
  margin: 0 auto;
  display: block;
  filter:
    drop-shadow(0 0 25px rgba(0,242,255,0.6))
    drop-shadow(0 0 45px rgba(255,0,255,0.4));
  animation: mysteryFigurePulse 4.5s infinite ease-in-out;
}

/* 📝 Text Overlay */
.mystery-overlay {
  margin-top: 10px;
}

/* 🔷 Title */
.mystery-title {
  font-size: 1.9rem;
  letter-spacing: 3px;
  color: #00f2ff;
  text-shadow:
    0 0 12px #00f2ff,
    0 0 35px rgba(255,0,255,0.7);
  margin-bottom: 6px;
}

/* 🔹 Subtitle */
.mystery-subtitle {
  font-size: 1.15rem;
  letter-spacing: 1.5px;
  color: #ffffff;
  opacity: 0.9;
  text-transform: uppercase;
}

/* 🌊 Box pulse */
@keyframes mysteryBoxPulse {
  0% {
    box-shadow:
      0 0 25px rgba(0,242,255,0.35),
      0 0 50px rgba(255,0,255,0.2),
      inset 0 0 20px rgba(0,242,255,0.15);
  }
  50% {
    box-shadow:
      0 0 45px rgba(0,242,255,0.7),
      0 0 90px rgba(255,0,255,0.45),
      inset 0 0 30px rgba(0,242,255,0.25);
  }
  100% {
    box-shadow:
      0 0 25px rgba(0,242,255,0.35),
      0 0 50px rgba(255,0,255,0.2),
      inset 0 0 20px rgba(0,242,255,0.15);
  }
}

/* 👤 Figure glow */
@keyframes mysteryFigurePulse {
  0% {
    filter:
      drop-shadow(0 0 18px rgba(0,242,255,0.5))
      drop-shadow(0 0 35px rgba(255,0,255,0.35));
  }
  50% {
    filter:
      drop-shadow(0 0 35px rgba(0,242,255,0.85))
      drop-shadow(0 0 65px rgba(255,0,255,0.7));
  }
  100% {
    filter:
      drop-shadow(0 0 18px rgba(0,242,255,0.5))
      drop-shadow(0 0 35px rgba(255,0,255,0.35));
  }
}

/* 🌈 Glow sweep animation */
@keyframes sweepGlow {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}
/* 🌟 SUPREME SPONSOR CTA BOX */
.sponsor-cta-box {
  margin: 40px auto 20px;
  padding: 26px 22px;
  max-width: 720px;
  text-align: center;

  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.78),
    rgba(0, 0, 0, 0.45)
  );

  border-radius: 22px;
  border: 1px solid rgba(0, 242, 255, 0.25);

  box-shadow:
    0 0 28px rgba(0, 242, 255, 0.35),
    0 0 38px rgba(255, 0, 255, 0.25),
    inset 0 0 22px rgba(255, 255, 255, 0.05);

  backdrop-filter: blur(12px) saturate(160%);
  animation: ctaPulse 6s ease-in-out infinite;
}

/* ✨ Pulse Animation */
@keyframes ctaPulse {
  0%, 100% {
    box-shadow:
      0 0 26px rgba(0, 242, 255, 0.28),
      0 0 34px rgba(255, 0, 255, 0.22);
  }
  50% {
    box-shadow:
      0 0 38px rgba(0, 242, 255, 0.45),
      0 0 48px rgba(255, 0, 255, 0.35);
  }
}

/* 💎 CTA TEXT */
.cta-text {
  font-size: 1.25rem;
  font-weight: 800;
  margin: 0 0 18px;
  letter-spacing: 0.6px;
  color: #ffffff;

  text-shadow:
    0 0 10px rgba(0, 242, 255, 0.45),
    0 0 20px rgba(255, 0, 255, 0.35);
}

/* 🚀 PRIMARY CTA BUTTON */
.cta-button {
  display: inline-block;
  padding: 14px 22px;
  margin-bottom: 12px;

  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;

  color: #000;
  text-decoration: none;
  border-radius: 999px;

  background: linear-gradient(
    45deg,
    #00f2ff,
    #ff00ff
  );

  box-shadow:
    0 0 22px rgba(0, 242, 255, 0.55),
    0 0 28px rgba(255, 0, 255, 0.45);

  transition: all 0.25s ease-in-out;
}

