/* ------------------------------
   🔧 GLOBAL DEFAULTS
------------------------------ */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  html, body {
    height: 100%;
    font-family: 'Orbitron', sans-serif;
    background-color: #000; /* Base fallback in case image fails */
    color: white;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    position: relative;
    z-index: 0;
  }
  
  /* 🔥 Make sure main containers don't block background */
  .home-wrapper,
  .hero {
    background: transparent;
    position: relative;
    z-index: 1;
  }
  
  /* 💠 Optional Cyber-Glass Glow Class */
  .glass-glow {
    background: rgba(0, 0, 0, 0.25); /* transparent dark overlay */
    backdrop-filter: blur(8px);     /* soft blur effect */
    -webkit-backdrop-filter: blur(8px); /* Safari support */
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 0 20px #00f0ff66;
    position: relative;
    z-index: 2;
  }
  
  /* ------------------------------
     🌌 BACKGROUND OVERLAY
  ------------------------------ */
  .background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('assets/jvbackground.png') no-repeat center center fixed;
    background-size: cover;
    opacity: 0.5;
    z-index: -1000;
  }
  
  
/* 🎷 NAVBAR */
.navbar {
  background: rgba(0, 0, 0, 0.85);
  padding: 30px 20px;
  box-shadow: 0 0 15px #00f0ff;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  text-align: center;
  z-index: 999;
}

.logo img {
  height: 100px;
  margin-top: -15px;
  position: relative;
  z-index: 10000;
  animation: pulse 2s infinite, spin 20s linear infinite;
  filter: drop-shadow(0 0 10px #ff00f7);
}
.logo {
  position: relative;
  z-index: 10000; /* stays on top of other nav items */
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px; /* space below logo */
}

@keyframes pulse {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.05); }
  100% { transform: scale(1); }
}

@keyframes spin {
  0%   { transform: rotate(0); }
  100% { transform: rotate(360deg); }
}

/* 🔗 DESKTOP NAV LINKS */
.nav-links {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links li {
  list-style: none;
}

.nav-links a {
  display: inline-block;
  padding: 12px 28px;
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
  color: cyan;
  border: 2px solid #00f0ff;
  border-radius: 50px;
  background: transparent;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 0 15px #00f0ff;
  width: 200px;
  text-align: center;
}

.nav-links a:hover,
.nav-links a.active {
  background: #00f0ff;
  color: #000;
  box-shadow: 0 0 25px #00f0ff, 0 0 40px #ff00f7;
}

/* 🟣 HAMBURGER TOGGLE - HIDDEN BY DEFAULT */
.nav-toggle {
  display: none;
}

/* 📱 MOBILE STYLES */
@media (max-width: 768px) {
  .nav-toggle {
    display: block;
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 28px;
    color: #00f0ff;
    cursor: pointer;
    z-index: 9999;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    align-items: center;
    background: rgba(0, 0, 0, 0.85);
    gap: 15px;
    margin-top: 100px;
    padding: 25px;
    border-radius: 20px;
    animation: fadeIn 0.4s ease-in-out;
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links a {
    font-size: 16px;
    width: 90%;
    max-width: 260px;
  }

  @keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to   { opacity: 1; transform: scale(1); }
  }
}

  /* ------------------------------
     🎯 HERO SECTION
  ------------------------------ */
  .hero {
    padding: 100px 20px 60px;
    text-align: center;
    color: white;
  }
  
  .glow-title {
    font-size: 60px;
    color: #ffffff;
    text-shadow: 0 0 25px #ff00f7, 0 0 40px #00f0ff;
  }
  
  .glow-sub {
    font-size: 24px;
    margin-bottom: 30px;
    color: #e0e0e0;
    text-shadow: 0 0 10px #00f0ff;
  }
  
  /* ------------------------------
     🎬 VIDEO GALLERY
  ------------------------------ */
  .video-gallery {
    padding: 50px 20px;
    text-align: center;
  }
  
  .page-title {
    font-size: 2.8em;
    color: #fff;
    text-shadow: 0 0 10px #ff00f7, 0 0 20px #00f0ff;
    margin: 40px 0;
    text-align: center;
    width: 100%;
  }
  
  .video-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 40px 20px;
    justify-items: center;
  }
  
  
  .video-item {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 0 15px #00f0ff;
    transition: transform 0.3s ease;
  }
  
  .video-item:hover {
    transform: scale(1.03);
    box-shadow: 0 0 25px #ff00f7;
  }
  
  /* ------------------------------
     🎙️ PODCAST STYLING
  ------------------------------ */
  .podcast-hero {
    text-align: center;
    margin-top: 40px;
  }
  
/* 🎧 S.L.A.M Logo – Pulse + Glow Only */
.slam-logo {
    max-width: 200px;
    animation: pulse 2s infinite ease-in-out;
    filter: drop-shadow(0 0 15px #ff00f7);
    transition: transform 0.3s ease;
  }
  
  .podcast-tagline {
    font-size: 20px;
    color: #00f0ff;
    margin-top: 10px;
    text-shadow: 0 0 10px #00f0ff;
  }
  
  .podcast-description {
    max-width: 900px;
    margin: 40px auto;
    color: #fff;
    font-size: 18px;
    line-height: 1.8;
    padding: 0 20px;
  }
  
  .podcast-description .neon {
    color: #ff00f7;
    text-shadow: 0 0 8px #ff00f7;
    font-weight: bold;
  }
  
  .podcast-videos iframe {
    width: 100%;
    max-width: 1000px;
    height: 315px;
    border-radius: 20px;
    box-shadow: 0 0 25px #00f0ff;
    margin: 0 auto;
    display: block;
  }
  
  .podcast-coming-soon {
    text-align: center;
    padding: 40px 20px;
    color: #fff;
  }
  
  .platforms i {
    font-size: 40px;
    margin: 15px;
    color: #ff00f7;
    text-shadow: 0 0 15px #00f0ff;
  }
/* ------------------------------
   📬 CONTACT FORM
------------------------------ */
.contact-container {
    margin-top: 60px; /* 🆕 Creates space below the navbar */
    padding: 60px 20px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    color: #fff;
  }
  
  
  .contact-subtitle {
    margin-bottom: 30px;
    color: #00f0ff;
    text-shadow: 0 0 8px #00f0ff;
  }
  
  form input,
  form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    box-shadow: 0 0 10px #ff00f7;
  }
  
  form input::placeholder,
  form textarea::placeholder {
    color: #aaa;
  }
  
  form button {
    width: 100%;
    padding: 15px;
    background: #00f0ff;
    color: black;
    font-weight: bold;
    font-size: 16px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px #00f0ff;
  }
  
  form button:hover {
    background: #ff00f7;
    color: white;
    box-shadow: 0 0 25px #ff00f7, 0 0 30px #00f0ff;
  }
  
  /* ------------------------------
     ✅ SUCCESS POPUP
  ------------------------------ */
  .popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
  }
  
  .popup-content {
    background: #111;
    border: 2px solid #00f0ff;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 0 30px #ff00f7;
  }
  
  .popup-content h2 {
    color: #00ffcc;
    margin-bottom: 10px;
  }
  
  .popup-content button {
    margin-top: 20px;
    padding: 10px 20px;
    background: #00f0ff;
    border: none;
    color: #000;
    font-weight: bold;
    border-radius: 30px;
    cursor: pointer;
    transition: 0.3s;
  }
  
  .popup-content button:hover {
    background: #ff00f7;
    color: white;
  }
  
  /* ------------------------------
     📖 BIOGRAPHY BLOCK
  ------------------------------ */
  .bio-container {
    padding-top: 75px;
    padding-left: 400px;
    padding-right: 400px;
    padding-bottom: 60px;
  }
  
  .bio-intro {
    font-size: 18px;
    margin-bottom: 40px;
    text-shadow: 0 0 8px #00f0ff;
  }
  
  .bio-timeline {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
  
  .bio-block {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 0 15px #00f0ff;
    text-align: left;
    transition: transform 0.3s;
  }
  
  .bio-block:hover {
    transform: scale(1.03);
    box-shadow: 0 0 30px #ff00f7;
  }
  
  .bio-block h2 {
    color: #ff00f7;
    text-shadow: 0 0 10px #ff00f7;
    margin-bottom: 15px;
  }
  
  .bio-block p {
    line-height: 1.7;
    font-size: 16.5px;
  }
  
  /* ------------------------------
     💌 EMAIL SIGNUP SECTION
  ------------------------------ */
  .signup {
    text-align: center;
    padding: 60px 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 30px;
    box-shadow: 0 0 30px #00f0ff;
    max-width: 800px;
    margin: 60px auto;
  }
  
  .signup-title {
    color: #00f0ff;
    font-size: 22px;
    text-shadow: 0 0 10px #00f0ff;
    margin-bottom: 20px;
  }
  
  #signup-form {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }
  
  #signup-form input {
    padding: 12px 20px;
    border-radius: 20px;
    border: none;
    outline: none;
    font-size: 16px;
    width: 250px;
    max-width: 100%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    box-shadow: 0 0 10px #ff00f7;
  }
  
  /* ------------------------------
     🛍️ MERCH SECTION
  ------------------------------ */
/* 🛍️ Merch Section Container */
.merch-container {
    padding: 60px 20px;
    text-align: center;
  }
  
  /* 🧊 Merch Grid – Uniform Box Size */
  .merch-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    justify-content: center;
    align-items: start;
    margin-top: 40px;
    padding: 0 20px;
  }
  
  /* 💎 Merch Cards – Same Size + Fully Structured */
  .merch-card {
    max-width: 320px;
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(6px);
    padding: 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 0 20px #00f0ff, 0 0 40px #ff00f7;
    transition: transform 0.3s ease;
    animation: pulse 6s infinite ease-in-out;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
  }
  
  /* 🔥 Hover Glow */
  .merch-card:hover {
    transform: scale(1.04);
    box-shadow: 0 0 30px #ff00f7;
  }
  
  /* 🖼️ Image Styling – Consistent */
  .merch-card img {
    width: 100%;
    max-height: 200px;
    object-fit: contain;
    margin-bottom: 12px;
    border-radius: 12px;
  }
  
  /* 🔤 Product Titles */
  .merch-card h3 {
    font-size: 19px;
    margin-bottom: 10px;
    color: #ff00f7;
    text-shadow: 0 0 5px #ff00f7;
  }
  
  /* 📄 Descriptions */
  .merch-card p {
    font-size: 15px;
    margin-bottom: 10px;
    color: #ccc;
    line-height: 1.5;
  }
  
  /* 💰 Price Tag */
  .merch-price {
    font-size: 18px;
    color: #00f0ff;
    margin-bottom: 15px;
    font-weight: bold;
  }
  
  /* 🛒 Buy Button – CENTERED ABOVE FOOTNOTE */
  .merch-card button.glow-btn {
    background: linear-gradient(90deg, #ff00f7, #00f0ff);
    color: #000;
    font-weight: bold;
    padding: 10px 18px;
    border-radius: 25px;
    border: none;
    box-shadow: 0 0 12px #00f0ff, 0 0 22px #ff00f7;
    transition: 0.3s ease;
    cursor: pointer;
    margin: 10px auto 5px; /* 👈 Center the button */
    display: block;
  }
  
  /* 🎯 Button Hover */
  .merch-card button.glow-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 18px #ff00f7, 0 0 28px #00f0ff;
  }
  
  /* 🧾 Disclaimer (footer of card) */
  .merch-card small {
    font-size: 12px;
    color: #888;
    margin-top: 8px;
    display: block;
    text-shadow: 0 0 3px #000;
  }
  
  
/* ------------------------------
   🦶 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;
    transition: color 0.3s ease;
  }
  
  .footer-links a:hover {
    color: #ff00f7;
  }
  
  .social-icons {
    margin-top: 10px;
  }
  
  .social-icons a {
    font-size: 22px;
    color: #9a4397;
    margin: 0 10px;
    transition: transform 0.3s ease, color 0.3s ease;
  }
  
  .social-icons a:hover {
    color: #00f0ff;
    transform: scale(1.2);
  }
 /* 🔥 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 {
    margin-top: 15px;
    font-size: 14px;
    color: #ccc;
    text-shadow: 0 0 5px #00f0ff;
  }
  
  /* ------------------------------
     ✨ GLOWING BUTTON (Reusable)
  ------------------------------ */
  .glow-btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 30px;
    background: transparent;
    color: white;
    font-size: 16px;
    text-decoration: none;
    font-weight: bold;
    border: 2px solid #00f0ff;
    transition: 0.3s ease all;
    box-shadow: 0 0 10px #00f0ff;
  }
  
  .glow-btn:hover {
    background: #00f0ff;
    color: #000;
    box-shadow: 0 0 25px #ff00f7, 0 0 30px #00f0ff;
  }
  
  /* ------------------------------
     ⚡ UTILITIES & STRUCTURE
  ------------------------------ */
  .home-wrapper {
    flex: 1;
    padding: 60px 20px;
    max-width: 1100px;
    margin: auto;
    text-align: center;
    z-index: 2;
  }
  
  .neon-divider {
    margin: 60px auto;
    text-align: center;
    font-size: 40px;
    text-shadow: 0 0 15px #ff00f7, 0 0 20px #00f0ff;
    animation: pulse 2s infinite;
  }
  
  /* ------------------------------
     🌈 ADDITIONAL ANIMATIONS
  ------------------------------ */
  @keyframes flicker {
    0%   { opacity: 1; text-shadow: 0 0 15px #ff00f7, 0 0 30px #00f0ff; }
    50%  { opacity: 0.7; text-shadow: 0 0 5px #00f0ff; }
    100% { opacity: 1; text-shadow: 0 0 15px #ff00f7, 0 0 30px #00f0ff; }
  }
  
  @keyframes floatPulse {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
  }
  
  @keyframes glowUp {
    0% { box-shadow: 0 0 0px #00f0ff; }
    50% { box-shadow: 0 0 25px #ff00f7, 0 0 40px #00f0ff; }
    100% { box-shadow: 0 0 0px #00f0ff; }
  }
  
  .flicker-glow {
    animation: flicker 3s infinite alternate;
  }
  
  .float-glow {
    animation: floatPulse 6s infinite ease-in-out;
  }
  
  .super-glow {
    animation: glowUp 2s infinite ease-in-out;
  }
  
  /* ------------------------------
     📱 RESPONSIVE TWEAKS
  ------------------------------ */
  @media (max-width: 768px) {
    .nav-links {
      flex-direction: column;
      gap: 15px;
    }
  
    .glow-title {
      font-size: 40px;
    }
  
    .video-grid,
    .merch-grid {
      grid-template-columns: 1fr;
    }
  
    .popup-content {
      width: 90%;
      padding: 20px;
    }
  
    .bio-block {
      padding: 20px;
    }
  
    form button {
      font-size: 14px;
    }
  }
  main,
  .home-wrapper,
  .hero,
  section {
    background: transparent !important;
    z-index: 10;
  }
   /* 💎 Unified Glowing Box */
.glow-box {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(8px);
    border-radius: 30px;
    padding: 50px 30px;
    box-shadow: 0 0 30px #00f0ff80, 0 0 40px #ff00f780;
    text-align: center;
    max-width: 900px;
    margin: 50px auto;
    position: relative;
    z-index: 2;
  }
  
  /* 🔥 Neon Divider */
  .neon-divider {
    font-size: 36px;
    text-align: center;
    margin: 50px auto;
    animation: pulse 2s infinite;
    text-shadow: 0 0 10px #ff00f7, 0 0 20px #00f0ff;
  }
  
  /* ✨ Simple Slide Animation */
  .animated-slide {
    animation: slideIn 1.2s ease-in-out;
  }
  
  @keyframes slideIn {
    from {
      transform: translateY(30px);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }
  
  /* ✨ Simple Fade Animation */
  .animated-fade {
    animation: fadeIn 1.5s ease-in-out;
  }
  
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: scale(0.98);
    }
    to {
      opacity: 1;
      transform: scale(1);
    }
  }
  
  /* ✨ Flickering Title Effect */
  .flicker-text {
    animation: flicker 3s infinite alternate;
  }
  
  @keyframes flicker {
    0%, 100% { text-shadow: 0 0 25px #ff00f7, 0 0 40px #00f0ff; opacity: 1; }
    50% { text-shadow: 0 0 5px #00f0ff; opacity: 0.85; }
  }
/* 🌌 Supreme Flying Bass Animation */
.bass-flight-zone {
    position: absolute;
    top: 25px;
    left: 0;
    width: 100%;
    height: 120px;
    overflow: visible;
    z-index: 999;
    pointer-events: none;
  }
  
  /* 🎸 Glowing Animated Bass */
  .flying-bass-supreme {
    position: absolute;
    width: 100px;
    animation: bassSupremeFly 12s ease-in-out infinite;
    transform-origin: center;
    filter: drop-shadow(0 0 12px #00f0ff) drop-shadow(0 0 24px #ff00f7);
    z-index: 2;
  }
  
  /* ✨ Glowing Trail Sparkles */
  .bass-glow-trail {
    position: absolute;
    top: 50px;
    left: 30px;
    width: 160px;
    height: 6px;
    background: linear-gradient(90deg, #00f0ff, #ff00f7);
    filter: blur(12px) brightness(1.2);
    border-radius: 50px;
    opacity: 0.6;
    animation: sparkleGlowTrail 1.5s infinite ease-in-out;
    z-index: 1;
  }
  
  /* 🔁 Flight Path with Direction Flip */
  @keyframes bassSupremeFly {
    0% {
      left: -120px;
      transform: rotateY(0deg) translateY(0px);
    }
    25% {
      transform: rotateY(0deg) translateY(-8px);
    }
    49.9% {
      transform: rotateY(0deg) translateY(0px);
    }
    50% {
      transform: rotateY(180deg) translateY(0px); /* Flip direction */
    }
    75% {
      transform: rotateY(180deg) translateY(8px);
    }
    100% {
      left: 100vw;
      transform: rotateY(180deg) translateY(0px);
    }
  }
  
  /* 🌟 Animated Trail Pulse */
  @keyframes sparkleGlowTrail {
    0%, 100% {
      opacity: 0.5;
      width: 140px;
    }
    50% {
      opacity: 1;
      width: 200px;
      box-shadow: 0 0 25px #ff00f7, 0 0 35px #00f0ff;
    }
  }
/* 🎚️ Glowing Equalizer Strip at Bottom of Nav */
.nav-equalizer {
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 6px;
    padding: 0 20px;
    z-index: 998;
  }
  
  .nav-equalizer .bar {
    width: 12px;
    height: 12px;
    background: #00f0ff;
    border-radius: 20px;
    box-shadow: 0 0 8px #00f0ff, 0 0 12px #ff00f7;
    animation: bounceBar 1s infinite ease-in-out alternate;
  }
  
  .nav-equalizer .bar:nth-child(2)  { animation-delay: 0.1s; }
  .nav-equalizer .bar:nth-child(3)  { animation-delay: 0.2s; }
  .nav-equalizer .bar:nth-child(4)  { animation-delay: 0.3s; }
  .nav-equalizer .bar:nth-child(5)  { animation-delay: 0.4s; }
  .nav-equalizer .bar:nth-child(6)  { animation-delay: 0.3s; }
  .nav-equalizer .bar:nth-child(7)  { animation-delay: 0.2s; }
  .nav-equalizer .bar:nth-child(8)  { animation-delay: 0.1s; }
  .nav-equalizer .bar:nth-child(9)  { animation-delay: 0.05s; }
  .nav-equalizer .bar:nth-child(10) { animation-delay: 0s; }
  
  @keyframes bounceBar {
    0%   { height: 12px; }
    50%  { height: 22px; }
    100% { height: 14px; }
  }
/* 🌟 Sparkling Stars Background in Nav */
.nav-stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
  }
  
  /* ✨ Individual Stars */
  .nav-stars::before,
  .nav-stars::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(white 1px, transparent 1px);
    background-size: 20px 20px;
    animation: sparkleStars 12s linear infinite;
    opacity: 0.2;
    filter: drop-shadow(0 0 6px #fff);
  }
  
  /* ✨ Second star layer with different timing for depth */
  .nav-stars::after {
    background-size: 30px 30px;
    animation: sparkleStars 20s linear infinite reverse;
    opacity: 0.12;
  }
  
  /* 🌀 Subtle Star Motion */
  @keyframes sparkleStars {
    0% {
      transform: translate(0, 0);
    }
    100% {
      transform: translate(-20px, -20px);
    }
  }
  /* 🎶 Floating Music Notes Container */
.music-notes-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
  }
  
  /* 🎵 Music Note Animation */
  .note {
    position: absolute;
    font-size: 24px;
    color: #00f0ff;
    opacity: 0.7;
    animation: floatNote 12s linear infinite;
    text-shadow: 0 0 8px #00f0ff, 0 0 12px #ff00f7;
  }
  
  /* 🌈 Multiple Notes with Unique Paths */
  .note:nth-child(1)  { left: 5%;  animation-delay: 0s; }
  .note:nth-child(2)  { left: 15%; animation-delay: 2s; }
  .note:nth-child(3)  { left: 25%; animation-delay: 4s; }
  .note:nth-child(4)  { left: 35%; animation-delay: 1s; }
  .note:nth-child(5)  { left: 45%; animation-delay: 3s; }
  .note:nth-child(6)  { left: 55%; animation-delay: 0.5s; }
  .note:nth-child(7)  { left: 65%; animation-delay: 2.5s; }
  .note:nth-child(8)  { left: 75%; animation-delay: 1.5s; }
  .note:nth-child(9)  { left: 85%; animation-delay: 3.5s; }
  .note:nth-child(10) { left: 95%; animation-delay: 1s; }
  
  @keyframes floatNote {
    0% {
      top: 100%;
      transform: translateY(0) scale(1);
      opacity: 0;
    }
    10% {
      opacity: 1;
    }
    50% {
      transform: translateY(-300px) scale(1.3) rotate(15deg);
    }
    100% {
      top: -10%;
      transform: translateY(-600px) scale(0.9) rotate(-15deg);
      opacity: 0;
    }
  }
 /* 🎷 Floating Glowing Julian Image */
.jv-floating-image {
    position: absolute;
    right: -460px;
    bottom: 2;
    z-index: 5;
    pointer-events: none;
    animation: floatImage 10s ease-in-out infinite, pulseGlow 4s infinite;
  }
  
  .jv-floating-image img {
    width: 400px;
    max-width: 100%;
    filter: 
      drop-shadow(0 0 15px #00f0ff)
      drop-shadow(0 0 25px #ff00f7)
      drop-shadow(0 0 35px #ffffff);
    animation: sparkleWiggle 6s ease-in-out infinite;
    border-radius: 10px;
  }
  
  /* 🌀 Floating Up + Down Motion */
  @keyframes floatImage {
    0%, 100% {
      transform: translateY(0px);
    }
    50% {
      transform: translateY(-25px);
    }
  }
  
  /* ✨ Pulsing Glow Expansion */
  @keyframes pulseGlow {
    0%, 100% {
      opacity: 1;
      filter: drop-shadow(0 0 12px #00f0ff) drop-shadow(0 0 20px #ff00f7);
    }
    50% {
      opacity: 0.85;
      filter: drop-shadow(0 0 25px #ff00f7) drop-shadow(0 0 35px #00f0ff);
    }
  }
  
  /* 💫 Subtle Wiggle for Sparkle Vibe */
  @keyframes sparkleWiggle {
    0%, 100% {
      transform: rotate(0deg);
    }
    50% {
      transform: rotate(1.5deg);
    }
  }
 /* 🖼️ Glowing Collage Container */
.jv-collage-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 60px 20px;
    flex-wrap: wrap;
    z-index: 2;
  }
  
/* 📦 Glowing Image Boxes (Fixed Size) */
.jv-collage-box {
    position: relative;
    width: 320px;
    height: 400px; /* Fixed height for uniform layout */
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 30px #00f0ff, 0 0 60px #ff00f7;
    animation: pulseGlowBox 5s ease-in-out infinite, floatWiggle 12s ease-in-out infinite;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
  }
  
  .jv-collage-box:hover {
    transform: scale(1.05) rotate(1deg);
    box-shadow: 0 0 40px #ff00f7, 0 0 80px #00f0ff;
  }
  
  /* 🖼️ Image Inside Box (Uniform Crop) */
  .jv-collage-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    display: block;
  }
  
  /* ✨ Pulse Glow Animation */
  @keyframes pulseGlowBox {
    0%, 100% {
      box-shadow: 0 0 20px #00f0ff, 0 0 30px #ff00f7;
    }
    50% {
      box-shadow: 0 0 40px #ff00f7, 0 0 70px #00f0ff;
    }
  }
  
  /* 🌀 Subtle Float/Wiggle */
  @keyframes floatWiggle {
    0%   { transform: translateY(0px); }
    50%  { transform: translateY(-12px); }
    100% { transform: translateY(0px); }
  }
  .album-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Forces 4 albums per row */
    gap: 40px;
    padding: 40px;
    justify-items: center;
    z-index: 3;
  }
  
  .album-card {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(8px);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 0 20px #00f0ff, 0 0 40px #ff00f7;
    text-align: center;
    width: 125%;
    max-width: 340px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    animation: pulseGlowBox 4s infinite ease-in-out;
  }
  
  .album-card:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px #00f0ff, 0 0 80px #ff00f7;
  }
  
  .album-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 15px;
    box-shadow: 0 0 10px #00f0ff;
  }
  
  .album-card h3 {
    color: #fff;
    margin-bottom: 10px;
    font-size: 18px;
    text-shadow: 0 0 10px #ff00f7;
  }
  
  .album-card button {
    background: #00f0ff;
    color: #000;
    border: none;
    border-radius: 25px;
    padding: 12px 18px;
    font-weight: bold;
    cursor: pointer;
    font-size: 15px;
    box-shadow: 0 0 15px #ff00f7, 0 0 30px #00f0ff;
    transition: transform 0.3s ease;
  }
  
  .album-card button:hover {
    transform: scale(1.1);
    background: #ff00f7;
    color: #fff;
  }
  .supreme-tour {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 20px;
    text-align: center;
  }
  
  .glow-box-tour {
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(8px);
    border-radius: 30px;
    padding: 50px;
    max-width: 800px;
    width: 100%;
    box-shadow: 0 0 25px #00f0ff, 0 0 45px #ff00f7;
    animation: floatWiggle 10s infinite ease-in-out;
  }
  
  .tour-sub {
    font-size: 18px;
    margin-bottom: 40px;
    color: #ccc;
    text-shadow: 0 0 10px #00f0ff;
  }
  
  /* Optional Animations */
  @keyframes floatWiggle {
    0%   { transform: translateY(0); }
    50%  { transform: translateY(-6px); }
    100% { transform: translateY(0); }
  }
 /* 🔒 Flex Row For Tight Layout */
 .tight-row {
    display: flex;
    gap: 25px; /* 🔥 Ultra-tight spacing */
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
  }
  
  .tight-row .merch-card {
    flex: 0 0 320px;
    max-width: 320px;
    min-height: 520px;
    margin: 0;
  }
  .video-center {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
  }
  
  .video-center iframe {
    max-width: 100%;
    width: 1000px;
    height: 560px;
    border-radius: 20px;
    box-shadow: 0 0 25px #00f0ff, 0 0 40px #ff00f7;
  }
  .glass-glow {
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    margin: 60px auto;
    box-shadow: 0 0 20px #00f0ff88, 0 0 30px #ff00f799;
  }
  .subscribe-btn-glow {
    display: inline-block;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: bold;
    color: #000;
    background: linear-gradient(90deg, #ff00f7, #00f0ff);
    border-radius: 40px;
    text-decoration: none;
    text-shadow: 0 0 10px #fff;
    box-shadow: 0 0 15px #00f0ff, 0 0 25px #ff00f7;
    transition: all 0.3s ease-in-out;
    animation: pulse 3s infinite ease-in-out;
  }
  
  .subscribe-btn-glow:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px #ff00f7, 0 0 30px #00f0ff;
  }
  .gratified-player {
    margin-top: 20px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    border-radius: 20px;
    box-shadow: 0 0 20px #00f0ff, 0 0 40px #ff00f7;
    animation: fadeInUp 0.6s ease-in-out;
  }
  
  .track-title {
    color: #00f0ff;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
    text-align: center;
    text-shadow: 0 0 8px #ff00f7;
  }
  
  audio {
    width: 100%;
    outline: none;
    border-radius: 10px;
    filter: drop-shadow(0 0 5px #00f0ff);
    background: rgba(0, 0, 0, 0.3);
  }
  
  .hidden-player {
    display: none;
  }
  
  @keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }
 /* 🎸 Bass Line Memory Game Section */
.memory-game-section {
    padding: 80px 20px;
    text-align: center;
    max-width: 1200px;
    margin: auto;
    position: relative;
    z-index: 2;
  }
  
  .memory-game-section .game-title {
    font-size: 38px;
    color: #00f0ff;
    text-shadow: 0 0 12px #ff00f7, 0 0 20px #00f0ff;
    margin-bottom: 10px;
  }
  
  .memory-game-section .game-subtitle {
    font-size: 18px;
    color: #ccc;
    text-shadow: 0 0 8px #00f0ff;
    margin-bottom: 30px;
  }
  
  /* 🔁 Restart Button */
  .restart-btn {
    background: linear-gradient(90deg, #ff00f7, #00f0ff);
    color: #000;
    font-weight: bold;
    padding: 12px 24px;
    border-radius: 25px;
    border: none;
    box-shadow: 0 0 12px #00f0ff, 0 0 20px #ff00f7;
    cursor: pointer;
    transition: 0.3s ease;
    margin-bottom: 40px;
  }
  
  .restart-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 16px #ff00f7, 0 0 25px #00f0ff;
  }
  
  /* 🎮 Game Grid */
  .memory-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 👈 Forces 4 cards per row */
    gap: 20px;
    justify-items: center;
    max-width: 500px;
    margin: auto;
  }
  
/* 🎯 Mobile Optimization: 3 Cards per Row */
@media (max-width: 768px) {
  .memory-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
}
  /* 🃏 Cards */
  .memory-card {
    width: 100px;
    height: 120px;
    perspective: 1000px;
    cursor: pointer;
    position: relative;
  }
  
  .card-inner {
    width: 100%;
    height: 100%;
    position: absolute;
    transition: transform 0.6s;
    transform-style: preserve-3d;
  }
  
  .memory-card.flipped .card-inner {
    transform: rotateY(180deg);
  }
  
  /* Front of Card (jvlogo) */
  .card-front, .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 15px #00f0ff;
  }
  
  /* 🎴 Front */
  .card-front {
    background: rgba(0, 0, 0, 0.6);
  }
  
  .card-front-img {
    width: 70%;
    animation: pulse 3s infinite ease-in-out;
  }
  
  /* 🔁 Back */
  .card-back {
    background: #ff00f7;
    color: #fff;
    font-size: 36px;
    transform: rotateY(180deg);
    text-shadow: 0 0 10px #00f0ff;
  }
  
  /* 🎉 Win Popup */
  .win-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
  }
  
  .win-box {
    background: #111;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 0 20px #00f0ff, 0 0 30px #ff00f7;
    text-align: center;
  }
  
  .win-box h3 {
    color: #00f0ff;
    font-size: 26px;
    margin-bottom: 20px;
    text-shadow: 0 0 10px #ff00f7;
  }
  
  /* 🌟 Pulse Effect */
  @keyframes pulse {
    0%   { transform: scale(1); }
    50%  { transform: scale(1.05); }
    100% { transform: scale(1); }
  }
 /* 🛠️ SMOOTH SCROLLING */
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
  }
  
  /* 🎹 Custom Scrollbar (Desktop Only) */
  ::-webkit-scrollbar {
    width: 10px;
  }
  ::-webkit-scrollbar-track {
    background: #000;
    box-shadow: inset 0 0 10px #00f0ff44;
  }
  ::-webkit-scrollbar-thumb {
    background: linear-gradient(#ff00f7, #00f0ff);
    border-radius: 6px;
    box-shadow: 0 0 8px #00f0ff, 0 0 12px #ff00f7;
  }
  ::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(#00f0ff, #ff00f7);
  }
  
  /* 🛑 Prevent horizontal overflow */
  body {
    overflow-x: hidden;
  }
 /* 🎬 Electra Video Section */
.electra-video-section {
    padding: 60px 20px;
    text-align: center;
    background: transparent;
    z-index: 2;
    position: relative;
  }
  
  .electra-title {
    font-size: 2.5em;
    color: #ff00f7;
    text-shadow: 0 0 12px #00f0ff, 0 0 18px #ff00f7;
    margin-bottom: 30px;
    animation: flickerGlow 3s infinite;
  }
  
  .electra-video-wrapper {
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 30px #00f0ff, 0 0 50px #ff00f7;
    animation: pulse 4s ease-in-out infinite;
  }
  
  .electra-video-wrapper video {
    width: 100%;
    height: 340px; /* Locks height */
    max-height: 340px;
    object-fit: cover;
    background-color: #000;
    border-radius: 20px;
    display: block;
    pointer-events: auto;
    aspect-ratio: 16 / 9;
  }
  
  /* Optional for mobile: force inline playback */
  .electra-video-wrapper video[controls] {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
    -webkit-playsinline: true;
    playsinline: true;
  }
  
  
  /* 🔁 Animations */
  @keyframes pulse {
    0% { box-shadow: 0 0 20px #00f0ff, 0 0 30px #ff00f7; }
    50% { box-shadow: 0 0 40px #ff00f7, 0 0 60px #00f0ff; }
    100% { box-shadow: 0 0 20px #00f0ff, 0 0 30px #ff00f7; }
  }
  
  @keyframes flickerGlow {
    0%, 100% { opacity: 1; text-shadow: 0 0 12px #00f0ff; }
    50% { opacity: 0.8; text-shadow: 0 0 24px #ff00f7; }
  }
/* 📖 BIO SECTION BASE */
.bio-container {
  padding: 60px 20px;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.bio-intro {
  font-size: 16px;
  color: #eee;
  line-height: 1.6;
  margin-bottom: 40px;
  padding: 0 10px;
}

.bio-timeline {
  display: flex;
  flex-direction: column;
  gap: 35px;
  padding: 0 10px;
}

.bio-block {
  background: rgba(0, 0, 0, 0.5);
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 0 20px #00f0ff33, 0 0 30px #ff00f733;
  transition: transform 0.3s ease;
}

.bio-block:hover {
  transform: scale(1.02);
}

.bio-block h2 {
  color: #00f0ff;
  margin-bottom: 10px;
  font-size: 20px;
  text-shadow: 0 0 6px #00f0ff;
}

.bio-block p {
  color: #ccc;
  font-size: 15px;
  line-height: 1.6;
}

/* 📱 MOBILE OPTIMIZATION */
@media (max-width: 768px) {
  .bio-container {
    padding: 40px 15px;
  }

  .bio-intro {
    font-size: 15px;
    text-align: left;
  }

  .bio-timeline {
    padding: 0;
  }

  .bio-block {
    text-align: left;
  }

  .bio-block h2 {
    font-size: 18px;
  }

  .bio-block p {
    font-size: 14px;
  }
}
.glow-dropdown {
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #00f0ff;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-size: 15px;
  margin-bottom: 12px;
  box-shadow: 0 0 8px #00f0ff;
  width: 100%;
}
/* 🛒 Inventory Grid Styling */
.inventory-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 20px;
  margin-bottom: 30px;
}

/* ✨ Each Inventory Item */
.inventory-item {
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(6px);
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 0 15px #00f0ff, 0 0 25px #ff00f7;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.inventory-item:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px #ff00f7, 0 0 35px #00f0ff;
}

/* 🏷️ Label Styling */
.inventory-item label {
  font-size: 16px;
  font-weight: bold;
  color: #00f0ff;
  text-shadow: 0 0 8px #ff00f7;
  margin-bottom: 10px;
  text-align: center;
}

/* 🔢 Input Number Fields */
.inventory-item input[type="number"] {
  width: 80px;
  padding: 10px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  border-radius: 10px;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  box-shadow: 0 0 10px #00f0ff;
  transition: 0.3s;
}

.inventory-item input[type="number"]:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 20px #ff00f7;
}

/* 🕒 Timestamp */
#timestamp {
  margin-top: 20px;
  font-size: 14px;
  color: #ccc;
  text-shadow: 0 0 6px #00f0ff;
  text-align: center;
}

/* ✅ Save Message */
#save-message {
  margin-top: 20px;
  font-size: 18px;
  color: #00ffcc;
  text-align: center;
  display: none;
  animation: pulse 2s infinite ease-in-out;
}
/* 📦 Flex Container */
.merch-images {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

/* 📦 Merch Images Flexbox Corrected for Mobile + Desktop */
.merch-images {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap; /* 🛠️ NO wrapping on big screens! */
  gap: 12px;
  margin-bottom: 15px;
}

/* 🖼️ Merch Images inside merch-images only */
.merch-images img {
  flex: 0 0 48%; /* 48% width side-by-side ALWAYS */
  max-width: 48%;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 0 15px #00f0ff, 0 0 25px #ff00f7;
  transition: transform 0.3s ease;
}

/* ✨ Hover Zoom Effect */
.merch-images img:hover {
  transform: scale(1.05);
}
/* 💡 Glow Box Container Upgrade */
.glow-box {
  background: rgba(0, 0, 0, 0.55);
  border-radius: 20px;
  padding: 40px 30px;
  margin: 40px auto;
  max-width: 1000px;
  box-shadow: 0 0 30px #00f0ff88, 0 0 60px #ff00f788;
  backdrop-filter: blur(8px);
  animation: pulseGlow 6s ease-in-out infinite;
  text-align: center;
}
/* 💎 Supreme Box Panel Container */
.subscriber-panel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
  background: transparent;
}

/* 🌟 Box */
.subscriber-panel-box {
  background: rgba(0, 0, 0, 0.55);
  border-radius: 20px;
  padding: 40px 30px;
  width: 100%;
  max-width: 1200px;
  box-shadow: 0 0 25px #00f0ff, 0 0 55px #ff00f7;
  backdrop-filter: blur(10px);
  text-align: center;
  animation: pulseGlow 4s ease-in-out infinite;
}

/* ✨ Title */
.subscriber-panel-title {
  font-size: 26px;
  color: #00f0ff;
  margin-bottom: 25px;
  text-shadow: 0 0 10px #ff00f7;
  font-family: 'Orbitron', sans-serif;
}

/* 🔍 Filter */
.subscriber-filter {
  padding: 12px 18px;
  border-radius: 10px;
  border: none;
  width: 300px;
  font-size: 16px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  box-shadow: 0 0 10px #00f0ff;
  margin-bottom: 25px;
}

.subscriber-filter::placeholder {
  color: #ccc;
}

/* 📊 Table Wrapper */
.subscriber-table-wrapper {
  overflow-x: auto;
}

/* 🧾 Table */
.subscriber-table-supreme {
  width: 100%;
  border-collapse: collapse;
  box-shadow: 0 0 12px #00f0ff;
  border-radius: 10px;
  overflow: hidden;
}

.subscriber-table-supreme th,
.subscriber-table-supreme td {
  padding: 14px 20px;
  border: 1px solid #00f0ff44;
  text-align: center;
  color: #fff;
  background: rgba(0, 0, 0, 0.2);
}

.subscriber-table-supreme th {
  background: linear-gradient(to right, #00f0ff, #ff00f7);
  color: #000;
}

/* 🔘 Buttons */
.btn-edit-supreme,
.btn-delete-supreme {
  background-color: #00f0ff;
  color: #000;
  padding: 6px 12px;
  margin: 0 5px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s ease;
}

.btn-edit-supreme:hover {
  background-color: #ffcc00;
}

.btn-delete-supreme:hover {
  background-color: #ff0040;
  color: #fff;
}

/* 🚀 Controls */
.subscriber-controls {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 25px;
}

/* 🔴 Danger Button */
.danger-glow {
  background: linear-gradient(90deg, #ff0040, #ff0077);
  color: #fff;
  box-shadow: 0 0 15px #ff0040, 0 0 30px #ff0077;
}
/* 🔵 Subscriber Table Supreme */
.subscriber-table {
  width: 100%;
  max-width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  box-shadow: 0 0 25px #00f0ff99;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.5);
}

/* 📋 Header Cells */
.subscriber-table th {
  padding: 14px 20px;
  background: linear-gradient(90deg, #00f0ff, #ff00f7);
  color: #000;
  font-weight: bold;
  font-family: 'Orbitron', sans-serif;
  border: none;
  text-shadow: none;
}

/* 🧾 Body Cells */
.subscriber-table td {
  padding: 14px 20px;
  border-top: 1px solid rgba(0, 240, 255, 0.2);
  color: #fff;
  text-align: center;
  font-size: 14px;
  font-family: 'Orbitron', sans-serif;
  background-color: rgba(0, 0, 0, 0.25);
}

/* 🧍 Glow Box Around Table */
.glow-box {
  background: rgba(0, 0, 0, 0.5);
  border-radius: 25px;
  padding: 30px;
  max-width: 950px;
  margin: 60px auto;
  box-shadow: 0 0 30px #00f0ff, 0 0 50px #ff00f7;
  backdrop-filter: blur(10px);
  animation: pulseGlow 6s infinite ease-in-out;
}

/* 🔘 Export Button */
.glow-btn {
  background: linear-gradient(to right, #00f0ff, #ff00f7);
  color: #000;
  font-weight: bold;
  border: none;
  padding: 12px 24px;
  margin-top: 20px;
  font-size: 16px;
  border-radius: 30px;
  box-shadow: 0 0 12px #00f0ff, 0 0 20px #ff00f7;
  cursor: pointer;
  transition: all 0.3s ease;
}

.glow-btn:hover {
  transform: scale(1.06);
  box-shadow: 0 0 20px #ff00f7, 0 0 30px #00f0ff;
}
.btn-edit-supreme,
.btn-delete-supreme {
  background: #00f0ff;
  border: none;
  padding: 6px 12px;
  margin: 0 5px;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #000;
  font-family: 'Orbitron', sans-serif;
  box-shadow: 0 0 6px #00f0ff;
}

.btn-edit-supreme:hover {
  background: #ffcc00;
  box-shadow: 0 0 10px #ffcc00;
}

.btn-delete-supreme:hover {
  background: #ff0040;
  color: #fff;
  box-shadow: 0 0 10px #ff0040;
}
.subscriber-table input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #00f0ff;
  cursor: pointer;
  transform: scale(1.2);
}
.form-group {
  margin-bottom: 18px;
  width: 100%;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

textarea.glow-dropdown {
  resize: vertical;
  min-height: 100px;
}
.bass-trail-dot {
  position: fixed;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: radial-gradient(circle, #00f0ff, #ff00f7);
  pointer-events: none;
  opacity: 0.8;
  box-shadow: 0 0 10px #00f0ff, 0 0 20px #ff00f7;
  animation: pulseOut 0.6s ease-out forwards;
  z-index: 9999;
}

@keyframes pulseOut {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}
