/* ==========================================================
   💎 CHASE CARTER MUSIC — GROOVEVERSE
   Futuristic Smooth Jazz Design | Supreme Glow Edition
   ========================================================== */

/* ✨ 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;
}

/* ==========================================================
   💌 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 BASS ANIMATION */
.flying-bass {
  position: fixed;
  top: 25px; /* Adjust this to align with your nav area */
  right: -250px; /* start off-screen */
  width: 380px;
  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 CHASE CARTER IMAGE */
.floating-chase {
  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: chaseFloat 6s ease-in-out infinite, chaseGlow 3.5s ease-in-out infinite alternate;
  filter: drop-shadow(0 0 25px #00f2ff) drop-shadow(0 0 50px #ff00ff);
}

/* 🌊 Floating Motion */
@keyframes chaseFloat {
  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 chaseGlow {
  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-chase {
    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 — CENTERED SUPREME VERSION
   ========================================================== */
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 — CHASE CARTER MUSIC
   ========================================================== */

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 — CHASE CARTER MUSIC | GROOVEVERSE EDITION
   ========================================================== */

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;
  }
}
/* ==========================================================
   🎶 MUSIC PAGE SUPREME DESIGN
   ========================================================== */

.music-main {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 50px;
  padding: 60px;
  margin: 100px auto 160px;
  text-align: center;
  background: rgba(10, 10, 30, 0.65);
  border-radius: 25px;
  box-shadow: 0 0 30px #00f2ff, 0 0 60px #ff00f7;
  animation: pulseMusic 8s ease-in-out infinite alternate;
}

@keyframes pulseMusic {
  0% { box-shadow: 0 0 30px #00f2ff, 0 0 60px #ff00f7; }
  50% { box-shadow: 0 0 45px #ff00f7, 0 0 90px #00f2ff; }
  100% { box-shadow: 0 0 30px #00f2ff, 0 0 60px #ff00f7; }
}

/* 🎵 Album Tile */
.album-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cover {
  width: 80%;
  border-radius: 20px;
  margin-bottom: 20px;
  box-shadow: 0 0 25px #00f2ff, 0 0 50px #ff00f7;
  animation: glowCover 6s infinite ease-in-out alternate;
}

@keyframes glowCover {
  0% { filter: brightness(1) drop-shadow(0 0 20px #00f2ff); }
  100% { filter: brightness(1.3) drop-shadow(0 0 40px #ff00f7); }
}

.track-title {
  font-size: 1.8rem;
  color: #ffffff;
  margin-top: 10px;
  text-shadow: 0 0 10px #00f2ff, 0 0 20px #ff00f7;
}

.track-subtext {
  font-size: 1rem;
  color: #cbefff;
  margin-bottom: 20px;
}

/* 💫 Stream Buttons */
.stream-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.5px;
  box-shadow: 0 0 20px #00f2ff, 0 0 40px #ff00f7;
  transition: all 0.3s ease-in-out;
}

.btn-pill i {
  margin-right: 8px;
  font-size: 1.2rem;
}

/* 🎧 Custom Button Colors */
.btn-pill.apple {
  background: linear-gradient(90deg, #000000, #6e6e6e);
}

.btn-pill.spotify {
  background: linear-gradient(90deg, #1db954, #00f0a8);
}

.btn-pill.youtube {
  background: linear-gradient(90deg, #ff0000, #ff00f7);
}

/* Hover Effects */
.btn-pill:hover {
  transform: scale(1.12);
  box-shadow: 0 0 40px #ff00f7, 0 0 70px #00f2ff;
  filter: brightness(1.2);
}

/* 🎛️ Embedded Player */
.embed-box {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 0 25px #00f2ff, 0 0 50px #ff00f7;
  animation: embedGlow 5s ease-in-out infinite alternate;
}

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

/* Responsive */
@media (max-width: 768px) {
  .music-main {
    grid-template-columns: 1fr;
    padding: 30px;
  }
  .cover {
    width: 100%;
  }
  .btn-pill {
    padding: 10px 20px;
    font-size: 0.95rem;
  }
}
/* 🎵 Audio Player Styles */
.audio-player {
  margin-top: 20px;
  text-align: center;
}

.play-btn {
  background: linear-gradient(90deg, #ff00cc, #00f2ff);
  color: #fff;
  border: none;
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 1.1em;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s ease;
  box-shadow: 0 0 20px rgba(255, 0, 255, 0.5);
}

.play-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 0 35px rgba(0, 255, 255, 0.8);
}

/* Prevent text selection */
.play-btn, .audio-player {
  user-select: none;
}

/* Glow Pulse Animation */
@keyframes glowPulse {
  0% { box-shadow: 0 0 10px #ff00cc, 0 0 20px #00f2ff; }
  50% { box-shadow: 0 0 25px #00f2ff, 0 0 40px #ff00cc; }
  100% { box-shadow: 0 0 10px #ff00cc, 0 0 20px #00f2ff; }
}

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