/* === Supreme Nuclear Maximum Glowing Styles for Smooth Jazz Million Miles === */

/* ===== RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  font-family: 'Orbitron', sans-serif;
  background:
    linear-gradient(rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.08)),
    url('assets/background.png') no-repeat center center fixed;
  background-size: cover;
  background-color: black;
  color: white;
  overflow-x: hidden;
  scroll-behavior: smooth;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  animation: pulseBackground 8s infinite alternate;
  text-align: center;
}

@keyframes pulseBackground {
  0% { filter: brightness(1); }
  100% { filter: brightness(1.2); }
}

/* === FIXED GLOWING NAVBAR FINAL === */
.bling-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 40px 30px;
  background: rgba(0, 0, 0, 0.85);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 0 25px #FFD700, 0 0 35px #00f0ff;
  border-bottom: 2px solid #FFD700;
  backdrop-filter: blur(8px);
}

/* === LOGO LEFT ANIMATED (Offset Right) === */
.logo-spin-glow {
  width: 100px;
  animation: spinLogo 14s linear infinite, pulseGlow 3s infinite alternate;
  filter: drop-shadow(0 0 20px #FFD700) drop-shadow(0 0 35px #00ffff);
  margin-left: 20px; /* ✅ Nudges the logo to the right */
}

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

@keyframes pulseGlow {
  0% { filter: drop-shadow(0 0 10px #FFD700); }
  100% { filter: drop-shadow(0 0 30px #FF00FF); }
}

/* === NAV BUTTONS CENTERED === */
.nav-links {
  display: flex;
  gap: 25px;
  list-style: none;
  flex: 1;
  justify-content: center;
  animation: floatTabs 6s ease-in-out infinite;
  margin-right: 100px;
}

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

.nav-links li a {
  background: linear-gradient(90deg, #FFD700, #00f0ff);
  color: black;
  font-weight: bold;
  padding: 10px 24px;
  text-decoration: none;
  font-size: 1.05rem;
  border-radius: 35px;
  text-shadow: 0 0 10px #FFD700;
  box-shadow: 0 0 15px #FFD700, 0 0 25px #00f0ff;
  transition: all 0.3s ease;
}

.nav-links li a:hover {
  background: linear-gradient(90deg, #00f0ff, #FFD700);
  transform: scale(1.08);
  color: black;
  text-shadow: 0 0 20px #FFD700, 0 0 30px #00f0ff;
  box-shadow: 0 0 25px #00f0ff, 0 0 40px #FFD700;
}

/* === HERO TITLE === */
.hero-title {
  font-size: 4.5rem;
  margin-top: 140px;
  margin-bottom: 30px;
  color: #fff;
  text-shadow: 0 0 10px #FFD700, 0 0 20px #FF00FF, 0 0 40px #00FFFF;
  animation: glowPulse 3s infinite ease-in-out;
}

@keyframes glowPulse {
  0% { text-shadow: 0 0 10px #FFD700; }
  50% { text-shadow: 0 0 30px #00ffff; }
  100% { text-shadow: 0 0 10px #FFD700; }
}
/* === 🍔 Supreme Hamburger Toggle (Mobile Only) === */
.hamburger-menu {
  display: none;
  position: fixed;
  top: 30px;
  right: 30px;
  font-size: 2.2rem;
  z-index: 10001;
  color: #FFD700;
  cursor: pointer;
  animation: pulseGlow 2s infinite alternate;
}

/* 🔽 Dropdown Nav Menu Styling (Mobile Only) */
.mobile-nav-dropdown {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 90px;
  right: 20px;
  background: rgba(0, 0, 0, 0.96);
  border: 2px solid #FFD700;
  border-radius: 14px;
  z-index: 10000;
  padding: 20px;
  box-shadow: 0 0 25px #FFD700, 0 0 40px #00f0ff;
  backdrop-filter: blur(10px);
  animation: slideDown 0.4s ease-out forwards;
}

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

.mobile-nav-dropdown a {
  color: white;
  font-weight: bold;
  text-decoration: none;
  padding: 10px 0;
  border-bottom: 1px solid #FFD700;
  font-size: 1.1rem;
  text-shadow: 0 0 8px #FFD700;
  transition: all 0.3s ease;
}

.mobile-nav-dropdown a:hover {
  color: #00f0ff;
  text-shadow: 0 0 20px #FFD700;
}

/* ✅ Show Only on Mobile */
@media (max-width: 768px) {
  .hamburger-menu {
    display: block;
  }
  .nav-links {
    display: none !important;
  }
}

/* === Supreme Centered Containers === */
main, section {
  margin-top: 180px;
  padding: 40px 20px;
  flex: 1;
}

.pulse-box, .signup-form, .contact-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 30px auto;
  max-width: 900px;
  background: rgba(0, 0, 0, 0.65);
  border: 2px solid #FFD700;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 0 25px #FFD700, 0 0 50px #00ffff;
  animation: floatBox 6s ease-in-out infinite;
}

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

.section-title, .section-text {
  text-align: center;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #FFD700;
}

.section-text {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #fff;
}

/* === Glowing Container === */
.pulse-box {
  margin: 60px auto;
  padding: 40px;
  max-width: 900px;
  background: rgba(0, 0, 0, 0.65);
  border: 2px solid #FFD700;
  border-radius: 20px;
  box-shadow: 0 0 25px #FFD700, 0 0 50px #00ffff;
  animation: floatBox 6s ease-in-out infinite;
}

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

.section-title {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #FFD700;
}

.section-text {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #fff;
}

/* === Glowing Form === */
.signup-form, .contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}

.signup-form input,
.contact-form input,
.contact-form textarea {
  width: 100%;
  max-width: 500px;
  padding: 12px;
  border-radius: 10px;
  border: none;
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-size: 1rem;
  backdrop-filter: blur(5px);
  box-shadow: 0 0 10px #FFD700;
}

.signup-form button,
.contact-form button {
  background: linear-gradient(90deg, #FFD700, #FF00FF);
  border: none;
  border-radius: 50px;
  padding: 12px 30px;
  font-size: 1.1rem;
  font-weight: bold;
  color: black;
  box-shadow: 0 0 20px #FFD700, 0 0 40px #FF00FF;
  cursor: pointer;
  transition: all 0.3s ease;
}

.signup-form button:hover,
.contact-form button:hover {
  transform: scale(1.05);
  background: linear-gradient(90deg, #00ffff, #FFD700);
}

/* === Supreme Glowing Footer for SmoothJazzMillionMiles.com === */

.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;
}

/* === Subscribe Button === */
.subscribe-button {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 28px;
  background: #FFD700;
  color: #000;
  font-weight: bold;
  border-radius: 50px;
  box-shadow: 0 0 20px #FFD700, 0 0 30px #FF00FF;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

.subscribe-button:hover {
  background: #FF00FF;
  color: #fff;
  box-shadow: 0 0 30px #FF00FF, 0 0 50px #FFD700;
}
.popup-box {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  background: rgba(0, 0, 0, 0.95);
  border: 3px solid #FFD700;
  color: #00ffff;
  padding: 30px 40px;
  border-radius: 16px;
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
  z-index: 9999;
  transition: transform 0.4s ease-in-out;
  box-shadow: 0 0 20px #FFD700, 0 0 40px #00f0ff, 0 0 60px #ff00f7;
  animation: pulseGlow 2s infinite alternate;
}

.popup-box.show {
  transform: translate(-50%, -50%) scale(1);
}
/* 🎷 Glowing Mouse Trail Sparkles */
.mouse-trail {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, #FFD700, #FF00F7);
  box-shadow:
    0 0 10px #FFD700,
    0 0 20px #FF00F7,
    0 0 30px #00F0FF;
  opacity: 0.8;
  animation: sparkleFade 0.6s ease-out forwards;
  z-index: 99999;
}

@keyframes sparkleFade {
  0% {
    transform: scale(1.4);
    opacity: 0.9;
  }
  100% {
    transform: scale(0.5);
    opacity: 0;
  }
}
/* ✈️ Supreme Glowing Jet (Right to Left, Correct Orientation) */
.glow-jet {
  position: absolute;
  top: 45px;
  left: 110%;
  width: 275px;
  z-index: 9;
  pointer-events: none;
  /* ❌ Removed scaleX(-1) so jet faces the correct direction */
  animation: flyReverse 25s linear infinite, pulseGlowJet 3s infinite ease-in-out;
  filter: drop-shadow(0 0 12px #FFD700)
          drop-shadow(0 0 22px #00f0ff)
          drop-shadow(0 0 30px #ff00f7);
}

@keyframes flyReverse {
  0% {
    left: 110%;
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  50% {
    transform: scale(1.05) rotate(-1deg);
  }
  90% {
    opacity: 1;
  }
  100% {
    left: -300px;
    opacity: 0;
  }
}

@keyframes pulseGlowJet {
  0% {
    filter: drop-shadow(0 0 8px #FFD700);
  }
  50% {
    filter: drop-shadow(0 0 24px #00f0ff) drop-shadow(0 0 32px #ff00f7);
  }
  100% {
    filter: drop-shadow(0 0 8px #FFD700);
  }
}
/* 🌠 Glowing News Feed */
.supreme-news-box {
  background: rgba(0, 0, 0, 0.7);
  border: 2px solid #FFD700;
  padding: 20px;
  border-radius: 18px;
  box-shadow: 0 0 15px #FFD700, 0 0 25px #BA55D3;
  margin: 2rem auto;
  max-width: 900px;
}

.news-feed-glow {
  list-style: none;
  padding-left: 0;
  margin-top: 1rem;
}

.news-feed-glow li {
  margin-bottom: 12px;
}

.news-link {
  text-decoration: none;
  color: #FFD700;
  font-weight: bold;
  font-size: 1rem;
  transition: 0.3s;
  display: block;
  padding: 10px;
  border-left: 4px solid #FFD700;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  box-shadow: 0 0 10px #FFD70066;
}

.news-link:hover {
  background-color: rgba(255, 215, 0, 0.1);
  transform: translateX(5px);
  color: #ffffff;
}

.news-error {
  color: #ff5555;
  font-weight: bold;
  text-shadow: 0 0 6px #ff0000;
}
.glow-text {
  color: #FFD700;
  font-size: 2.2rem;
  font-weight: bold;
  text-shadow: 0 0 8px #FFD700, 0 0 20px #00ffff;
  transition: all 0.2s ease-in-out;
}

.flash-glow {
  animation: flashPulse 0.5s ease-in-out;
}

@keyframes flashPulse {
  0% { transform: scale(1); text-shadow: 0 0 8px #FFD700; }
  50% { transform: scale(1.1); text-shadow: 0 0 25px #00ffff; }
  100% { transform: scale(1); text-shadow: 0 0 8px #FFD700; }
}

/* 🎯 Milestone Message */
.milestone-message {
  font-size: 1.25rem;
  color: #00ffcc;
  margin-top: 12px;
  display: block;
  font-weight: bold;
  text-align: center;
  text-shadow: 0 0 10px #00f0ff;
}

.milestone-glow {
  animation: sparkleGlow 2.5s infinite alternate;
}

@keyframes sparkleGlow {
  0% { text-shadow: 0 0 10px #FFD700; }
  50% { text-shadow: 0 0 20px #00ffff, 0 0 12px #FFD700; }
  100% { text-shadow: 0 0 28px #00ffff, 0 0 18px #FFD700; }
}

/* 📊 Progress Container */
.progress-container {
  width: 90%;
  max-width: 550px;
  height: 24px;
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.08);
  margin: 16px auto;
  overflow: hidden;
  box-shadow: 0 0 12px #FFD700, 0 0 20px #00f0ff;
  border: 2px solid #FFD700;
}

/* 🚀 Animated Progress Bar */
.progress-bar {
  height: 100%;
  width: 66.7%; /* Starting value, will update via JS */
  background: linear-gradient(90deg, #FFD700, #00f0ff, #ff00f7);
  animation: pulseProgress 2s infinite ease-in-out;
  border-radius: 40px;
}

@keyframes pulseProgress {
  0% { filter: brightness(1); }
  50% { filter: brightness(1.6); }
  100% { filter: brightness(1); }
}

/* 📌 Progress Label */
.percent-label {
  font-size: 1.1rem;
  color: #FFD700;
  margin-top: 10px;
  font-weight: 600;
  text-align: center;
  text-shadow: 0 0 10px #00f0ff;
}
.manual-mile-input {
  margin-top: 15px;
  text-align: center;
}

.manual-mile-input input {
  padding: 10px;
  border-radius: 10px;
  border: none;
  width: 240px;
  font-size: 1rem;
  margin-right: 10px;
  box-shadow: 0 0 8px #FFD700;
}

.manual-mile-input button {
  padding: 10px 18px;
  font-weight: bold;
  border: none;
  background: linear-gradient(90deg, #FFD700, #00f0ff);
  color: #000;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0 0 10px #FFD700;
  transition: all 0.3s ease;
}

.manual-mile-input button:hover {
  background: linear-gradient(90deg, #00f0ff, #FFD700);
}
/* 🎷 Jarez Floating Image + Quote - CENTERED */
.jarez-quote-container {
  position: fixed;
  bottom: 1750px;
  left: -45%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 999;
  animation: floatBob 6s ease-in-out infinite;
  pointer-events: none;
}

/* ✅ You can keep this part the same or adjust size if needed */
.jarez-float-img {
  width: 1600px;
  max-width: 1620px;
  opacity: 0.7; /* 👈 Add this for more transparency */
  filter: drop-shadow(0 0 12px #FFD700)
          drop-shadow(0 0 22px #00f0ff)
          drop-shadow(0 0 30px #ff00f7);
  animation: glowPulse 3s infinite;
}


/* 💬 Glowing Quote Box */
.quote-box {
  margin-top: 12px;
  font-size: 1rem;
  font-weight: bold;
  color: #FFD700;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 12px;
  padding: 10px 16px;
  box-shadow: 0 0 15px #FFD700, 0 0 25px #00f0ff;
  animation: pulseQuote 4s ease-in-out infinite;
  max-width: 200px;
  margin-left: auto;
  margin-right: auto;
}

.fade-in {
  animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
  0% { opacity: 0; transform: scale(0.9); }
  100% { opacity: 1; transform: scale(1); }
}

@keyframes glowPulse {
  0% { filter: drop-shadow(0 0 12px #FFD700); }
  50% { filter: drop-shadow(0 0 24px #ff00f7); }
  100% { filter: drop-shadow(0 0 12px #00f0ff); }
}

@keyframes pulseQuote {
  0% { transform: scale(1); }
  50% { transform: scale(1.03); }
  100% { transform: scale(1); }
}

@keyframes floatBob {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}
.supreme-spotify-box {
  margin-top: 40px;
  text-align: center;
}

.spotify-embed-container {
  max-width: 720px;
  margin: 0 auto;
  box-shadow: 0 0 20px #FFD700, 0 0 35px #00f0ff, 0 0 55px #ff00f7;
  border-radius: 20px;
  overflow: hidden;
  animation: pulseGlow 3s infinite alternate;
}

@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 10px #FFD700, 0 0 20px #00f0ff, 0 0 30px #ff00f7;
  }
  100% {
    box-shadow: 0 0 25px #FFD700, 0 0 45px #00f0ff, 0 0 65px #ff00f7;
  }
}
/* ✨ Supreme Contact Box Styles */
.supreme-contact-box {
  margin-top: 300px;
  padding-bottom: 80px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.supreme-contact-box form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 1.5rem;
  width: 100%;
  max-width: 800px;
  padding: 0 20px;
  align-items: center;
}

.supreme-contact-box input,
.supreme-contact-box textarea {
  width: 100%;
  max-width: 600px; /* ✅ Centered and responsive */
  padding: 1rem;
  border: 2px solid #FFD700;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-family: 'Orbitron', sans-serif;
  border-radius: 12px;
  font-size: 1.05rem;
  box-shadow: 0 0 10px #FFD70066, 0 0 20px #BA55D355;
  transition: all 0.3s ease;
}

.supreme-contact-box input:focus,
.supreme-contact-box textarea:focus {
  outline: none;
  border-color: #BA55D3;
  box-shadow: 0 0 20px #FFD70099, 0 0 30px #BA55D3AA;
}

.supreme-contact-box .cta-button {
  background: linear-gradient(90deg, #FFD700, #BA55D3);
  color: black;
  font-weight: bold;
  font-size: 1.1rem;
  padding: 0.9rem 2rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  animation: supremePulse 3s infinite alternate;
  transition: background 0.4s ease;
  margin-top: 10px;
}

.supreme-contact-box .cta-button:hover {
  background: linear-gradient(90deg, #BA55D3, #FFD700);
  transform: scale(1.05);
}

/* 🎉 Glowing Popup Styles */
.form-popup {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  padding: 1rem 2rem;
  border-radius: 20px;
  font-weight: bold;
  font-size: 1rem;
  text-align: center;
  font-family: 'Orbitron', sans-serif;
  z-index: 9999;
  animation: fadeInOut 4.5s ease-in-out forwards;
  pointer-events: none;
}

.popup-success {
  background: #000;
  color: #00ffae;
  box-shadow: 0 0 12px #00ffae, 0 0 25px #00ffae99;
}

.popup-error {
  background: #000;
  color: #ff4b4b;
  box-shadow: 0 0 12px #ff4b4b, 0 0 25px #ff4b4b99;
}

@keyframes fadeInOut {
  0% { opacity: 0; transform: translateX(-50%) translateY(20px); }
  10% { opacity: 1; transform: translateX(-50%) translateY(0); }
  90% { opacity: 1; }
  100% { opacity: 0; transform: translateX(-50%) translateY(-20px); }
}

@keyframes supremePulse {
  0% {
    box-shadow: 0 0 10px #FFD700, 0 0 20px #BA55D3;
  }
  100% {
    box-shadow: 0 0 25px #FFD700, 0 0 40px #BA55D3;
  }
}
/* === 🎥 Supreme Million Miles Video Section === */
.supreme-video-section {
  padding: 60px 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: radial-gradient(circle, #000000 60%, #111111 100%);
  box-shadow: 0 0 25px #FFD700, 0 0 40px #00f0ff inset;
  border-radius: 22px;
  margin: 60px auto;
  max-width: 900px;
}

.million-video {
  width: 100%;
  max-width: 560px;
  border-radius: 18px;
  box-shadow: 0 0 20px #FFD700, 0 0 35px #00f0ff, 0 0 50px #FF00FF;
  outline: none;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.million-video:hover {
  transform: scale(1.015);
  box-shadow: 0 0 35px #FFD700, 0 0 50px #00f0ff, 0 0 70px #FF00FF;
}

@media (max-width: 768px) {
  .supreme-video-section {
    padding: 40px 10px;
  }
  .million-video {
    max-width: 100%;
  }
}
/* 💫 Collage Preview Styles */
.jarez-collage-section {
  padding: 60px 40px;
  text-align: center;
}

.collage-title {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #FFD700;
  text-shadow: 0 0 10px #FFD700, 0 0 20px #00f0ff;
  animation: pulseGlow 3s infinite alternate;
}

.collage-preview-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.preview-tile {
  position: relative;
  width: 240px;
  cursor: pointer;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 0 20px #FFD700, 0 0 40px #00f0ff;
  transition: transform 0.3s ease;
}

.preview-tile:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px #FF00FF, 0 0 50px #00f0ff;
}

.preview-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}

.preview-label {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(0,0,0,0.75);
  color: #fff;
  padding: 10px;
  font-weight: bold;
  font-size: 1rem;
  text-shadow: 0 0 5px #FFD700;
}
.video-collage {
  padding: 40px 20px;
  background: #0b0b0b;
  color: #fff;
  text-align: center;
}

.video-collage .section-title {
  font-size: 2rem;
  margin-bottom: 25px;
  color: #f5b400;
  text-shadow: 0 0 10px #f5b400;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 🔄 Fixed 2 per row */
  gap: 55px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 10px;
}

.video-grid iframe {
  width: 115%;
  height: 280px;
  border-radius: 10px;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-grid iframe:hover {
  transform: scale(1.03);
  box-shadow: 0 0 20px rgba(245, 180, 0, 0.6);
}

/* 🔄 Responsive: Stack to 1 per row on small screens */
@media (max-width: 768px) {
  .video-grid {
    grid-template-columns: 1fr;
  }

  .video-grid iframe {
    height: 240px;
  }
}
