/* ✨ General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body.cyber-neon-theme {
  background: url('assets/background.png') no-repeat center center fixed;
  background-size: 100% 100%; /* <-- This forces full width and height */
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-blend-mode: normal;
  color: #ffffff;
  font-family: 'Orbitron', sans-serif;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}



/* 🌟 Navbar */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 2rem 2rem;
  background: rgba(0, 0, 30, 0.8);
  box-shadow: 0 0 25px #00ffffaa, 0 0 50px #ff00ffaa;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.navbar-content {
  display: flex;
  align-items: center;
  gap: 2rem;
}

/* 🌟 Logo Glowing and Spinning (Supreme Upgraded) */
.logo-spin-glow {
  width: 110px;
  height: auto;
  animation: spinPulse 12s linear infinite, supremeGlowExtreme 2.5s ease-in-out infinite alternate;
  filter: drop-shadow(0 0 20px #00ffff) drop-shadow(0 0 35px #ff00ff) drop-shadow(0 0 50px #ffd700);
  position: relative;
  left: -30px; /* 🌟 Move logo slightly to the left */
}
@keyframes supremeGlowExtreme {
  0% { 
    text-shadow: 0 0 20px #00ffff, 0 0 40px #ff00ff, 0 0 60px #ffd700;
    transform: scale(1);
  }
  100% { 
    text-shadow: 0 0 40px #00ffff, 0 0 80px #ff00ff, 0 0 120px #ffd700;
    transform: scale(1.05);
  }
}

@media (max-width: 768px) {
  #coolcar-cruiser {
    width: 220px;
    height: 280px; /* ⬆️ Increased height for mobile */
    top: 220px;      /* Adjust vertical position if needed */
  }
}

/* ✨ Nav Links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-links .nav-btn {
  color: #00ffff;
  text-decoration: none;
  font-size: 1.2rem;
  padding: 0.6rem 1.2rem;
  border: 2px solid #00ffff;
  border-radius: 50px;
  transition: all 0.4s ease;
  box-shadow: 0 0 15px #00ffff, 0 0 30px #ff00ff;
}

.nav-links .nav-btn:hover {
  background: #00ffff;
  color: black;
  transform: scale(1.1);
}

/* 🍔 Hamburger Icon */
.hamburger {
  display: none;
  font-size: 2rem;
  cursor: pointer;
  color: #00ffff;
  z-index: 10001;
}

/* 🔻 Responsive Nav Links */
.nav-links {
  display: flex;
  list-style: none;
  gap: 1.5rem;
}

@media (max-width: 900px) {
  .hamburger {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 90px;
    right: 20px;
    background: rgba(0, 0, 30, 0.95);
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 0 25px #00ffff, 0 0 50px #ff00ff;
    display: none;
    animation: fadeInMenu 0.4s ease forwards;
  }

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

  .nav-links li {
    width: 100%;
  }

  .nav-links .nav-btn {
    display: block;
    width: 100%;
    font-size: 1.2rem;
    padding: 0.75rem 1rem;
  }
}

/* ✨ Smooth Animation */
@keyframes fadeInMenu {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}


/* 🎵 Hero Section Titles */
.hero-section {
  margin-top: 180px;
  text-align: center;
  padding: 2rem;
}

.supreme-glow-title {
  font-size: 3rem;
  animation: supremeGlow 4s ease-in-out infinite alternate;
}

.supreme-glow-subtitle {
  font-size: 1.5rem;
  margin-top: 1rem;
  animation: supremePulse 6s infinite alternate;
}

/* 🧊 Main Content */
.main-content {
  padding: 4rem 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
}

/* 💎 Glowing Box Containers */
.glow-box {
  background: rgba(0, 0, 50, 0.8);
  border: 2px solid #00ffff;
  box-shadow: 0 0 20px #00ffff, 0 0 40px #ff00ff;
  border-radius: 20px;
  padding: 2rem;
  max-width: 800px;
  width: 100%;
  text-align: center;
  animation: supremePulse 5s ease-in-out infinite alternate;
}

/* 🎶 Album Grid */
.album-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4rem;
}

/* 🎷 Album Card */
.album-card {
  background: rgba(0, 0, 50, 0.7);
  border: 2px solid #00ffff;
  box-shadow: 0 0 20px #00ffff, 0 0 40px #ff00ff;
  border-radius: 20px;
  padding: 1.5rem;
  text-align: center;
  width: 300px;
  transition: transform 0.4s, box-shadow 0.4s;
}

.album-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px #00ffff, 0 0 60px #ff00ff;
}

.album-cover {
  width: 100%;
  border-radius: 20px;
  margin-bottom: 1rem;
}

/* 🎵 Dropdown Tracklist */
.tracklist {
  width: 100%;
  padding: 0.5rem;
  border-radius: 10px;
  border: 2px solid #00ffff;
  background: rgba(0, 0, 30, 0.9);
  color: #00ffff;
  font-family: 'Orbitron', sans-serif;
  margin-top: 1rem;
  box-shadow: 0 0 10px #00ffff, 0 0 20px #ff00ff;
}

/* 🎵 Glowing Audio Player */
.glowing-player {
  width: 100%;
  margin-top: 1rem;
  filter: drop-shadow(0 0 10px #00ffff) drop-shadow(0 0 20px #ff00ff);
}

/* 🛒 Buy Album Button */
.buy-button {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.6rem 1.2rem;
  background: #00ffff;
  color: black;
  font-weight: bold;
  border-radius: 50px;
  text-decoration: none;
  transition: transform 0.4s, box-shadow 0.4s;
  box-shadow: 0 0 15px #00ffff, 0 0 30px #ff00ff;
}

.buy-button:hover {
  transform: scale(1.1);
  box-shadow: 0 0 30px #00ffff, 0 0 60px #ff00ff;
}

/* 🌐 Supreme Footer */
.footer {
  background: rgba(0, 0, 0, 0.9);
  padding: 1.5rem 1rem;
  text-align: center;
  border-top: 2px solid #FFD700;
  position: fixed;
  bottom: 0;
  width: 100%;
  box-shadow: 0 0 20px #FFD700, 0 0 35px #BA55D3;
  z-index: 9999;
}

/* 🔗 Footer Links and Socials */
.footer-links, .social-icons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 0.8rem;
}

/* 💛 Footer Links Style */
.footer-links a {
  color: #FFD700;
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: #BA55D3;
  text-shadow: 0 0 12px #FFD700, 0 0 24px #BA55D3;
}

/* 🚀 Supreme Social Media Buttons */
.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  font-size: 1.5rem;
  margin: 0 10px;
  color: #00ffff;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid #00ffff;
  border-radius: 50%;
  box-shadow: 0 0 15px #00ffff, 0 0 30px #BA55D3;
  text-decoration: none;
  transition: all 0.4s ease;
  animation: spinPulse 8s linear infinite;
}

/* 🎯 Hover Effects - Supreme Spark */
.social-icons a:hover {
  background: linear-gradient(45deg, #FFD700, #BA55D3);
  color: black;
  transform: rotate(360deg) scale(1.3);
  box-shadow:
    0 0 30px #FFD700,
    0 0 60px #BA55D3,
    0 0 90px #FFD700,
    0 0 120px #BA55D3;
}

/* ✨ Footer Tagline */
.footer-tagline {
  font-size: 0.9rem;
  color: #ffffff;
  margin-top: 0.5rem;
}

/* ⬆️ Push Content Above Footer */
body::after {
  content: '';
  display: block;
  height: 180px; /* Matches or exceeds footer height */
}

/* 🔁 Pulse Spin Animation */
@keyframes spinPulse {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* 🌀 Keyframes */
@keyframes supremeGlow {
  0% { text-shadow: 0 0 10px #00ffff, 0 0 20px #ff00ff; }
  100% { text-shadow: 0 0 30px #00ffff, 0 0 60px #ff00ff; }
}

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

@keyframes spinPulse {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
/* 🚗 Supreme Coolio Cookin' Lowrider Cruiser */
#coolcar-cruiser {
  position: absolute;
  top: -12px; /* Just below the navbar */
  left: 100%;
  width: 350px;
  height: 199px;
  background: url('assets/coolcar.png') no-repeat center center/contain;
  animation: cruiseCoolio 25s linear infinite, bounceCruise 2s ease-in-out infinite alternate;
  filter: drop-shadow(0 0 20px #00ffff) drop-shadow(0 0 35px #ff00ff) drop-shadow(0 0 50px #ffd700);
  z-index: 5000;
  pointer-events: none; /* Doesn't block nav links */
}

/* 🌟 Cruise from Right ➡️ Left */
@keyframes cruiseCoolio {
  0% { left: 100%; }
  100% { left: -400px; }
}

/* 🌟 Smooth Bounce Animation */
@keyframes bounceCruise {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-10px); }
}

/* 📱 Responsive Shrink for Mobile */
@media (max-width: 768px) {
  #coolcar-cruiser {
    width: 220px;
    height: 110px;
    top: 120px;
  }
}
/* 🎶 Supreme Floating Elements Background */
.floating-elements {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1; /* 🔥 Behind everything */
  pointer-events: none;
  overflow: hidden;
}

.floating-elements .element {
  position: absolute;
  font-size: 2rem;
  color: #ffffff;
  opacity: 0.4;
  animation: floatSupreme 20s linear infinite;
}

/* Random starting positions */
.floating-elements .element:nth-child(1) { top: 5%; left: 10%; animation-duration: 22s; }
.floating-elements .element:nth-child(2) { top: 15%; left: 70%; animation-duration: 18s; }
.floating-elements .element:nth-child(3) { top: 30%; left: 20%; animation-duration: 25s; }
.floating-elements .element:nth-child(4) { top: 50%; left: 60%; animation-duration: 19s; }
.floating-elements .element:nth-child(5) { top: 70%; left: 40%; animation-duration: 24s; }
.floating-elements .element:nth-child(6) { top: 80%; left: 20%; animation-duration: 20s; }
.floating-elements .element:nth-child(7) { top: 10%; left: 80%; animation-duration: 22s; }
.floating-elements .element:nth-child(8) { top: 40%; left: 50%; animation-duration: 18s; }
.floating-elements .element:nth-child(9) { top: 65%; left: 10%; animation-duration: 23s; }
.floating-elements .element:nth-child(10) { top: 20%; left: 90%; animation-duration: 21s; }
.floating-elements .element:nth-child(11) { top: 30%; left: 30%; animation-duration: 20s; }
.floating-elements .element:nth-child(12) { top: 60%; left: 70%; animation-duration: 19s; }
.floating-elements .element:nth-child(13) { top: 75%; left: 15%; animation-duration: 22s; }
.floating-elements .element:nth-child(14) { top: 25%; left: 75%; animation-duration: 20s; }
.floating-elements .element:nth-child(15) { top: 55%; left: 25%; animation-duration: 23s; }

/* 🎶 Supreme Floating Animation */
@keyframes floatSupreme {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.5;
  }
  50% {
    transform: translateY(-200px) rotate(180deg);
    opacity: 0.7;
  }
  100% {
    transform: translateY(-400px) rotate(360deg);
    opacity: 0.5;
  }
}
/* 🌟 Coolio Forever Supreme Memory Game Section - FULL Boxed */
.memory-game-section {
  width: 100%;
  padding: 100px 20px 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

/* 🎯 BIG Glow Box Container */
.memory-game-container {
  background: rgba(0, 0, 30, 0.92);
  border: 3px solid #FFD700;
  border-radius: 30px;
  box-shadow: 
    0 0 30px #FFD700, 
    0 0 60px #BA55D3, 
    0 0 90px #FFD700;
  padding: 3rem 2rem;
  max-width: 700px;
  width: 100%;
  text-align: center;
  animation: pulseGlowBox 5s infinite alternate;
}

/* ✨ Titles Inside the Box */
.game-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: #FFD700;
  text-shadow: 0 0 20px #FFD700, 0 0 40px #BA55D3;
  margin-bottom: 1rem;
  animation: supremeTextPulse 4s infinite alternate;
}

.game-subtitle {
  font-size: 1.3rem;
  color: #ffffff;
  text-shadow: 0 0 12px #FFD700;
  margin-bottom: 2rem;
}

/* 🎮 Restart Button */
.restart-btn {
  background: linear-gradient(45deg, #FFD700, #BA55D3);
  color: black;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1.1rem;
  margin-bottom: 2rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 0 20px #FFD700, 0 0 40px #BA55D3;
  transition: all 0.4s ease;
}

.restart-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 30px #FFD700, 0 0 60px #BA55D3;
}

/* 🧠 Memory Grid TIGHT Inside Box */
.memory-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 2rem;
}

/* 🎴 Memory Cards */
.memory-card {
  background: rgba(0, 0, 30, 0.95);
  border: 2px solid #FFD700;
  border-radius: 15px;
  perspective: 1200px;
  height: 100px;
  width: 100%;
  position: relative;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.card-inner {
  width: 100%;
  height: 100%;
  transition: transform 0.8s ease-in-out;
  transform-style: preserve-3d;
}

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

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

/* 🎴 Card Faces */
.card-front {
  background: linear-gradient(135deg, #FFD70033, #BA55D333);
  display: flex;
  justify-content: center;
  align-items: center;
}

.card-back {
  background: #BA55D3;
  color: black;
  font-size: 2.2rem;
  transform: rotateY(180deg);
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: inset 0 0 10px #FFD700;
}

/* 🎉 Win Popup */
.win-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,30,0.92);
  justify-content: center;
  align-items: center;
  z-index: 10000;
}

.win-box {
  background: #FFD700;
  padding: 2.5rem;
  border-radius: 25px;
  text-align: center;
  box-shadow: 0 0 30px #FFD700, 0 0 60px #BA55D3;
  animation: pulseGlowBox 5s infinite alternate;
}

.win-box h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: black;
}

/* ✨ Supreme Glow Animations */
@keyframes pulseGlowBox {
  0% {
    box-shadow: 0 0 30px #FFD700, 0 0 60px #BA55D3, 0 0 90px #FFD700;
  }
  100% {
    box-shadow: 0 0 50px #FFD700, 0 0 80px #BA55D3, 0 0 120px #FFD700;
  }
}

@keyframes supremeTextPulse {
  0% {
    text-shadow: 0 0 15px #FFD700, 0 0 30px #BA55D3;
  }
  100% {
    text-shadow: 0 0 30px #FFD700, 0 0 60px #BA55D3;
  }
}
/* 🎯 Supreme Glow Animation */
@keyframes supremeGlow {
  0% { filter: drop-shadow(0 0 10px #FFD700) drop-shadow(0 0 20px #BA55D3); }
  100% { filter: drop-shadow(0 0 20px #FFD700) drop-shadow(0 0 40px #BA55D3); }
}

/* 🌟 Supreme Video Collage */
.video-collage {
  display: flex;
  flex-wrap: wrap; /* ✅ Allow wrap for mobile too */
  justify-content: center; /* ✅ CENTER properly always */
  align-items: center; /* ✅ Vertically align center */
  gap: 2rem;
  margin-top: 2rem;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* 🎥 Supreme Video Column */
.video-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 48%; /* ⬅️ Two columns side by side on desktop */
  max-width: 500px;
}

/* 🎬 Supreme Video Styling */
.collage-video {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 0 20px #FFD700, 0 0 40px #BA55D3;
  animation: supremePulse 5s infinite alternate;
  transition: transform 0.3s ease;
}

.collage-video:hover {
  transform: scale(1.03);
  box-shadow: 0 0 30px #FFD700, 0 0 60px #BA55D3;
}

/* 🚀 Glowing Promo Button */
.promo-btn {
  margin-top: 1rem;
  background: linear-gradient(90deg, #FFD700, #BA55D3);
  color: black;
  font-weight: bold;
  font-size: 1.1rem;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 0 15px #FFD700, 0 0 30px #BA55D3;
  transition: all 0.4s ease;
  animation: supremePulse 4s infinite alternate;
}

.promo-btn:hover {
  background: linear-gradient(90deg, #BA55D3, #FFD700);
  transform: scale(1.1);
  box-shadow: 0 0 25px #FFD700, 0 0 50px #BA55D3;
}

/* 📱 Mobile Responsive Supreme */
@media (max-width: 900px) {
  .video-collage {
    flex-direction: column; /* ✅ Stack nicely vertical */
    align-items: center; /* ✅ Center items */
  }
  .video-column {
    width: 90%;
    max-width: 500px;
  }
}
/* 🎤 Supreme Bio Image Small Glow */
.bio-image {
  width: 180px; /* ✅ Small but powerful */
  height: auto;
  border-radius: 20px;
  margin: 1rem auto;
  display: block;
  box-shadow: 0 0 15px #FFD700, 0 0 30px #BA55D3;
  animation: supremeImagePulse 5s infinite alternate;
  transition: transform 0.4s ease;
}

.bio-image:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px #FFD700, 0 0 50px #BA55D3;
}

/* ✨ Pulse Glow Animation */
@keyframes supremeImagePulse {
  0% {
    box-shadow: 0 0 15px #FFD700, 0 0 30px #BA55D3;
  }
  100% {
    box-shadow: 0 0 25px #FFD700, 0 0 50px #BA55D3;
  }
}
/* 🎥 Supreme Video Gallery Layout */
.video-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 equal columns */
  gap: 2rem;
  max-width: 1400px;
  margin: 4rem auto;
  padding: 0 2rem;
}

/* 🎥 Each Video Block */
.video-item {
  width: 100%; /* ✅ Let it fill the grid column */
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* 📺 iFrame Styling */
.video-item iframe {
  width: 100%; /* ✅ Full width of parent */
  aspect-ratio: 16/9; /* ✅ Perfect 16:9 */
  border-radius: 20px;
  border: none;
  box-shadow: 0 0 20px #FFD700, 0 0 40px #BA55D3;
  animation: supremePulse 6s infinite alternate;
  transition: transform 0.4s ease;
}

.video-item iframe:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px #FFD700, 0 0 60px #BA55D3;
}

/* 📱 Mobile Responsive */
@media (max-width: 1200px) {
  .video-gallery {
    grid-template-columns: repeat(3, 1fr); /* 3 per row */
  }
}

@media (max-width: 768px) {
  .video-gallery {
    grid-template-columns: repeat(2, 1fr); /* 2 per row */
  }
}

@media (max-width: 480px) {
  .video-gallery {
    grid-template-columns: 1fr; /* 1 per row */
  }
}

/* ✨ Supreme Glow Pulse Animation */
@keyframes supremePulse {
  0% {
    box-shadow: 0 0 20px #FFD700, 0 0 40px #BA55D3;
  }
  100% {
    box-shadow: 0 0 30px #FFD700, 0 0 60px #BA55D3;
  }
}
/* 🎯 Supreme Subscribe Section */
.subscribe-section {
  text-align: center;
  margin: 4rem 0;
  padding: 2rem;
}

/* 📦 Subscribe Container */
.subscribe-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

/* 🚀 Supreme Subscribe Buttons */
.subscribe-btn {
  background: linear-gradient(90deg, #FFD700, #BA55D3);
  color: black;
  font-weight: bold;
  font-size: 1.2rem;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 0 20px #FFD700, 0 0 40px #BA55D3;
  transition: all 0.4s ease;
  animation: supremePulse 5s infinite alternate;
}

/* 🎷 Secondary Button for Jarez */
.subscribe-btn.secondary {
  background: linear-gradient(90deg, #00f2ff, #ff00cc);
  box-shadow: 0 0 20px #00f2ff, 0 0 40px #ff00cc;
}

.subscribe-btn:hover {
  transform: scale(1.1);
  background: linear-gradient(90deg, #BA55D3, #FFD700);
  box-shadow: 0 0 30px #FFD700, 0 0 60px #BA55D3;
}

/* 🎷 Hover for Jarez Button */
.subscribe-btn.secondary:hover {
  background: linear-gradient(90deg, #ff00cc, #00f2ff);
  box-shadow: 0 0 30px #00f2ff, 0 0 60px #ff00cc;
}

/* ✨ Supreme Pulse Animation */
@keyframes supremePulse {
  0% {
    box-shadow: 0 0 20px #FFD700, 0 0 40px #BA55D3;
  }
  100% {
    box-shadow: 0 0 30px #FFD700, 0 0 60px #BA55D3;
  }
}
/* 🌟 Supreme Glowing Contact Form */

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  background: rgba(0, 0, 30, 0.8);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 0 30px #FFD700, 0 0 60px #BA55D3;
  animation: glowPulse 5s infinite alternate;
}

.contact-form label {
  display: block;
  font-size: 1.2rem;
  color: #FFD700;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 10px #FFD700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 1.5rem;
  border: 2px solid #FFD700;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-size: 1rem;
  outline: none;
  box-shadow: 0 0 10px #BA55D3, 0 0 20px #FFD700 inset;
  transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #BA55D3;
  box-shadow: 0 0 15px #FFD700, 0 0 30px #BA55D3 inset;
}

.submit-btn {
  background: linear-gradient(45deg, #FFD700, #BA55D3);
  color: black;
  padding: 14px 30px;
  font-weight: bold;
  font-size: 1.2rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 0 20px #FFD700, 0 0 40px #BA55D3;
}

.submit-btn:hover {
  transform: scale(1.1);
  background: linear-gradient(45deg, #BA55D3, #FFD700);
  box-shadow: 0 0 30px #FFD700, 0 0 60px #BA55D3;
}

/* 🎉 Popup Message Style */
.popup-message {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 30, 0.95);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  animation: fadeInPopup 0.5s ease forwards;
}

.popup-inner {
  background: #FFD700;
  padding: 2.5rem;
  border-radius: 25px;
  text-align: center;
  box-shadow: 0 0 30px #FFD700, 0 0 60px #BA55D3;
  animation: pulsePopup 3s infinite alternate;
}

.popup-inner h2 {
  font-size: 2.2rem;
  color: black;
  margin-bottom: 1rem;
}

.popup-inner p {
  font-size: 1.2rem;
  color: black;
}

.close-btn {
  margin-top: 2rem;
  background: linear-gradient(45deg, #BA55D3, #FFD700);
  color: black;
  padding: 12px 30px;
  border: none;
  border-radius: 50px;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: 0 0 20px #FFD700, 0 0 40px #BA55D3;
  transition: all 0.4s ease;
}

.close-btn:hover {
  transform: scale(1.1);
  background: linear-gradient(45deg, #FFD700, #BA55D3);
}

/* ✨ Animations */
@keyframes glowPulse {
  0% {
    box-shadow: 0 0 20px #FFD700, 0 0 40px #BA55D3;
  }
  100% {
    box-shadow: 0 0 40px #FFD700, 0 0 80px #BA55D3;
  }
}

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

@keyframes pulsePopup {
  0% { box-shadow: 0 0 20px #FFD700, 0 0 40px #BA55D3; }
  100% { box-shadow: 0 0 40px #FFD700, 0 0 80px #BA55D3; }
}

/* 📱 Mobile Optimization */
@media (max-width: 768px) {
  .contact-form {
    padding: 1.5rem;
  }
  
  .popup-inner {
    padding: 2rem;
  }
}

/* 🛡️ Supreme Fix for Contact Page Padding */
.contact-page-adjust {
  padding-top: 220px; /* Adjust if needed */
}
/* 🌟 Supreme Footer Buffer */
.footer-buffer {
  padding-bottom: 180px; /* Match or slightly more than your footer height */
}
.section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: #FFD700;
  text-shadow: 0 0 12px #FFD700, 0 0 24px #BA55D3;
  margin-bottom: 2rem;
}
/* 🎨 Supreme Styles for Coolio Films Page */
.main-content.page-spacing {
  padding-top: 120px; /* spacing from navbar */
  padding-bottom: 80px; /* spacing from footer */
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
}

h2.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1rem;
  color: #00ffff;
  text-shadow: 0 0 15px #00ffff, 0 0 30px #ff00ff;
}

p.section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: #cccccc;
  margin-bottom: 3rem;
}

.collage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-bottom: 5rem;
}

.collage-card {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(0, 255, 255, 0.2);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 0 20px #00ffff66, 0 0 40px #ff00ff66;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  text-align: center;
}

.collage-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 0 30px #00ffffaa, 0 0 60px #ff00ffaa;
}

.collage-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-bottom: 2px solid rgba(0, 255, 255, 0.4);
}

.collage-card p {
  padding: 1rem;
  font-size: 1.1rem;
  color: #ffffff;
  text-shadow: 0 0 5px #00ffff;
}

.glow-box {
  background: rgba(0, 0, 0, 0.5);
  padding: 2rem;
  border-radius: 20px;
  margin-bottom: 4rem;
  box-shadow: 0 0 20px #00ffff88, 0 0 40px #ff00ff88;
}

/* Responsive Enhancements */
@media (max-width: 768px) {
  h2.section-title {
    font-size: 2rem;
  }

  .collage-card img {
    height: 250px;
  }
}

@media (max-width: 480px) {
  .main-content.page-spacing {
    padding-top: 100px;
    padding-bottom: 60px;
  }
}
/* 🎬 Special Grid Layout for WatchCoolio Page Only */
.watchcoolio-page .video-collage {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 4rem auto;
  padding: 0 2rem;
}

.watchcoolio-page .video-column {
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* 📱 Responsive Tweaks */
@media (max-width: 900px) {
  .watchcoolio-page .video-collage {
    grid-template-columns: repeat(2, 1fr); /* 2 videos per row on tablet */
  }
}

@media (max-width: 600px) {
  .watchcoolio-page .video-collage {
    grid-template-columns: 1fr; /* 1 video per row on mobile */
  }
}
/* 🍳 Supreme Cookin' With Coolio Promo Section */
.cookin-promo-section {
  text-align: center;
  margin: 4rem 0 2rem 0;
  animation: pulseGlow 5s infinite alternate;
}

.cookin-promo-button {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: linear-gradient(90deg, #FFD700, #BA55D3);
  padding: 1rem 2rem;
  border-radius: 50px;
  color: black;
  font-weight: bold;
  text-decoration: none;
  font-size: 1.2rem;
  box-shadow: 0 0 20px #FFD700, 0 0 40px #BA55D3;
  transition: all 0.4s ease;
}

.cookin-promo-button:hover {
  transform: scale(1.1);
  background: linear-gradient(90deg, #BA55D3, #FFD700);
  box-shadow: 0 0 30px #FFD700, 0 0 60px #BA55D3;
}

.cookin-logo {
  height: 50px;
  width: auto;
  filter: drop-shadow(0 0 10px #FFD700) drop-shadow(0 0 20px #BA55D3);
}
/* 🎷 Floating Glowing Coolio Image */
.coolio-floating-image {
  position: absolute;
  right: -30px; /* ✅ Moves slightly off-screen so it peeks in */
  bottom: 3;
  z-index: 5;
  pointer-events: none;
  animation: floatImage 10s ease-in-out infinite, pulseGlow 4s infinite;
}

.coolio-floating-image img {
  width: 350px;
  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: .8;
    filter: drop-shadow(0 0 12px #00f0ff) drop-shadow(0 0 20px #ff00f7);
  }
  50% {
    opacity: 0.22;
    filter: drop-shadow(0 0 25px #ff00f7) drop-shadow(0 0 35px #00f0ff);
  }
}

/* ✨ Optional Extra Wiggle Animation */
@keyframes sparkleWiggle {
  0% { transform: rotate(0deg); }
  25% { transform: rotate(0.5deg); }
  50% { transform: rotate(-0.5deg); }
  75% { transform: rotate(0.5deg); }
  100% { transform: rotate(0deg); }
}
.spotify-playlist-box {
  text-align: center;
}

.spotify-iframe-wrap {
  display: flex;
  justify-content: center;
  width: 100%;
}

.spotify-iframe-wrap iframe {
  width: 100%;
  max-width: 900px;   /* 👈 key for centering on desktop */
  border-radius: 12px;
  margin-top: 20px;

  box-shadow:
    0 0 30px rgba(0, 255, 255, 0.4),
    0 0 60px rgba(255, 0, 255, 0.25);
}
/* FORCE FULL-WIDTH SECTION CENTERING */
.content-section {
  width: 100%;
  display: flex;
  justify-content: center;
}

/* CENTER THE GLOW BOX ITSELF */
.spotify-playlist-box {
  width: 100%;
  max-width: 1100px;   /* controls visual balance */
  margin: 0 auto;
  text-align: center;
}
