/* 🌟 Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  min-height: 100%;
  font-family: 'Orbitron', sans-serif;
  background: linear-gradient(
    rgba(0, 0, 0, 0.5), 
    rgba(0, 0, 0, 0.5)
  ), url('assets/background.png') no-repeat center center fixed;
  background-size: cover;
  color: #fff;
  overflow-x: hidden;
}


/* 🌟 Universal Layout */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 20px 80px;
}

/* 🌟 Navbar */
.navbar {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.92); /* Darker & more separated */
  padding: 3.5rem 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  border-bottom: 2px solid #FFD700; /* Thin glowing gold line */
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4), 0 12px 40px rgba(186, 85, 211, 0.3); /* HUGE glow down */
  backdrop-filter: blur(8px); /* slight futuristic blur */
}


.nav-container {
  width: 100%;
  max-width: 1200px;
  display: flex;
  justify-content: center; /* 📍 Center everything */
  align-items: center;
  gap: 2rem;
  position: relative;
}


.logo-glow {
  width: 100px;
  height: auto;
  animation: pulseLogo 5s infinite alternate, spinPulse 25s linear infinite;
  filter: drop-shadow(0 0 12px #FFD700) drop-shadow(0 0 20px #BA55D3);
  position: absolute;
  left: -55px; /* 📍 Logo stays on the left */
  top: -60%;
}
/* 📱 Mobile Devices - Move Logo Further Left */
@media (max-width: 768px) {
  .logo-glow {
    left: -5px; /* Move even more left on mobile */
    width: 90px; /* (Optional) make it slightly smaller too */
  }
}
@keyframes pulseLogo {
  0% { transform: scale(1); }
  100% { transform: scale(1.06); }
}

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

.nav-links {
  display: flex;
  gap: 1.5rem;
}

/* 🌟 Glowing Nav Button Links */
.nav-links a {
  display: inline-block;
  padding: 10px 20px;
  border: 2px solid #FFD700;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.05);
  color: #FFD700;
  font-weight: bold;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: 0 0 10px #FFD700, 0 0 20px #BA55D3;
  transition: all 0.4s ease;
}

.nav-links a:hover {
  background: #FFD700;
  color: black;
  transform: scale(1.08);
  box-shadow: 0 0 20px #FFD700, 0 0 40px #BA55D3;
}

/* 📱 Mobile */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle .bar {
  width: 22px;
  height: 3px;
  background: #FFD700;
  margin: 4px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

@media (max-width: 992px) {
  .menu-toggle {
    display: flex;
  }
  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    text-align: center;
    padding: 1rem 0;
  }
  .nav-links.active {
    display: flex;
  }
}
.content-section, 
.welcome-section, 
.photo-gallery, 
.video-gallery, 
.memory-game-section {
  padding-top: 120px; /* Space below navbar */
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 80px; /* Space above footer */
  max-width: 1200px;
  margin: 0 auto;
}
/* 🌟 Proper Space Under Navbar */
.page-top-space {
  padding-top: 200px; /* Big breathing room */
  padding-left: 20px;
  padding-right: 20px;
}


/* 🌟 Titles */
.glow-title {
  font-size: 2.2rem;
  color: #FFD700;
  text-align: center;
  text-shadow: 0 0 20px #FFD700, 0 0 35px #BA55D3;
  margin-bottom: 1rem;
}

.glow-subtitle {
  font-size: 1.2rem;
  text-align: center;
  color: #BA55D3;
  margin-bottom: 2rem;
  text-shadow: 0 0 12px #BA55D3;
}

/* 🌟 Glow Box */
.glow-box {
  background: rgba(0, 0, 0, 0.85);
  border: 2px solid #FFD700;
  border-radius: 18px;
  box-shadow: 0 0 20px #FFD700, 0 0 40px #BA55D3;
  padding: 2rem;
  margin-bottom: 2rem;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  animation: glowPulse 5s infinite alternate;
}

@keyframes glowPulse {
  0% { box-shadow: 0 0 15px #FFD700, 0 0 30px #BA55D3; }
  100% { box-shadow: 0 0 30px #FFD700, 0 0 50px #BA55D3; }
}

/* 🌟 Buttons */
.glow-btn, .buy-btn {
  background: linear-gradient(45deg, #FFD700, #BA55D3);
  color: black;
  padding: 10px 24px;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 40px;
  margin-top: 15px;
  cursor: pointer;
  box-shadow: 0 0 18px #FFD700, 0 0 30px #BA55D3;
  transition: all 0.4s ease;
}

.glow-btn:hover, .buy-btn:hover {
  transform: scale(1.08);
}

/* 📸 Photo Gallery */
.photo-gallery {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.photo-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.2rem;
}

.photo-box {
  width: 200px;
  height: 300px;
  background: rgba(0, 0, 0, 0.8);
  border: 2px solid #FFD700;
  border-radius: 12px;
  overflow: hidden;
  padding: 1rem;
  box-shadow: 0 0 18px #FFD700, 0 0 35px #BA55D3;
  transition: all 0.4s;
}

.photo-box img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 0.5rem;
}

.photo-box p {
  font-size: 0.9rem;
  text-align: center;
}

.photo-box:hover {
  transform: scale(1.05);
}

/* 🎥 Video Gallery */
.video-gallery {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.video-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2.2rem;
}

.video-box {
  width: 250px;
  height: 150px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 18px #FFD700, 0 0 35px #BA55D3;
  transition: all 0.4s;
}

.video-box iframe {
  width: 100%;
  height: 100%;
}

.video-box:hover {
  transform: scale(1.05);
}

/* 🌟 Supreme Memory Game Section */
.memory-game-section {
  width: 100%;
  padding: 120px 20px 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.memory-game-container {
  background: rgba(0, 0, 0, 0.85);
  border: 2px solid #FFD700;
  border-radius: 20px;
  box-shadow: 0 0 25px #FFD700, 0 0 50px #BA55D3;
  padding: 2rem;
  max-width: 800px;
  width: 100%;
  text-align: center;
  animation: glowPulse 5s infinite alternate;
}

.game-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: #FFD700;
  text-shadow: 0 0 15px #FFD700, 0 0 30px #BA55D3;
  margin-bottom: 1rem;
}

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

.restart-btn {
  background: linear-gradient(45deg, #FFD700, #BA55D3);
  color: black;
  padding: 12px 28px;
  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;
}

.restart-btn:hover {
  transform: scale(1.1);
}

/* 🧠 Memory Grid */
.memory-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  justify-content: center;
}

.memory-card {
  background: rgba(0, 0, 0, 0.9);
  border: 2px solid #FFD700;
  border-radius: 15px;
  perspective: 1000px;
  height: 120px;
  width: 100%;
  position: relative;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55); /* 🔥 Elastic flip */
}

.card-inner {
  width: 100%;
  height: 100%;
  transition: transform 0.8s;
  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;
}

.card-front {
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
}

.card-front-img {
  width: 65%;
  height: auto;
}

.card-back {
  background: #BA55D3;
  color: black;
  font-size: 2.5rem;
  transform: rotateY(180deg);
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.win-box {
  background: #FFD700;
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 0 30px #FFD700, 0 0 60px #BA55D3;
}

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

/* 🎯 Contact Section Supreme */
.content-section {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 120px 20px 80px;
}

/* 📨 Contact Form Glow Box */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 500px;
  margin: 2rem auto 0 auto;
}

.glow-input {
  width: 100%;
  padding: 1rem;
  border: 2px solid #FFD700;
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  border-radius: 12px;
  font-size: 1rem;
  box-shadow: 0 0 15px #FFD700, 0 0 25px #BA55D3;
  transition: all 0.3s ease;
}

.glow-input::placeholder {
  color: #ccc;
}

.glow-input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 25px #FFD700, 0 0 45px #BA55D3;
}

/* ✉️ Send Button Supreme */
.glow-btn {
  background: linear-gradient(45deg, #FFD700, #BA55D3);
  color: black;
  font-weight: bold;
  border: none;
  padding: 1rem 2rem;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 0 20px #FFD700, 0 0 40px #BA55D3;
  transition: all 0.4s ease;
  font-size: 1.1rem;
}

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

/* 🎉 Supreme Popup Message */
.popup-message {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.85);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.popup-content {
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid #FFD700;
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 0 30px #FFD700, 0 0 50px #BA55D3;
  animation: popupGlow 1.5s infinite alternate;
}

.popup-content h2 {
  font-size: 2rem;
  color: #FFD700;
  margin-bottom: 1rem;
  text-shadow: 0 0 15px #FFD700, 0 0 30px #BA55D3;
}

.popup-content p {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 1.5rem;
}

/* ✨ Popup Animation */
@keyframes popupGlow {
  0% {
    box-shadow: 0 0 20px #FFD700, 0 0 30px #BA55D3;
  }
  100% {
    box-shadow: 0 0 40px #FFD700, 0 0 70px #BA55D3;
  }
}


/* 🌐 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: #FFD700;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid #FFD700;
  border-radius: 50%;
  box-shadow: 0 0 15px #FFD700, 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;
}

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

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

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


/* 🧹 Body bottom padding */
body::after {
  content: '';
  display: block;
  height: 140px;
}
.welcome-section {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 80px 20px 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}
.email-signup {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.email-input {
  width: 100%;
  max-width: 400px;
  padding: 1rem;
  border: 2px solid #FFD700;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  color: white;
  font-size: 1rem;
  transition: 0.3s;
}

.email-input::placeholder {
  color: #ddd;
}

.email-input:focus {
  outline: none;
  box-shadow: 0 0 12px #FFD700, 0 0 25px #BA55D3;
}
.supreme-title {
  font-size: 3.5rem; /* Bigger supreme size */
  font-weight: 900;
  color: #FFD700;
  text-shadow:
    0 0 10px #FFD700,
    0 0 20px #FFD700,
    0 0 40px #BA55D3,
    0 0 60px #FFD700;
  animation: supremeGlow 6s infinite alternate ease-in-out, slightMove 8s infinite alternate ease-in-out;
  letter-spacing: 2px;
}

/* 🌟 Hero Subtitle Supreme Glow (White Version) */
.hero-subtitle {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 600;
  color: #ffffff; /* 🔥 PURE WHITE */
  letter-spacing: 1.5px;
  margin-top: 1rem;
  margin-bottom: 2rem;
  animation: heroGlow 5s infinite alternate ease-in-out, slightMove 8s infinite alternate ease-in-out;
  text-shadow:
    0 0 10px #ffffff,
    0 0 20px #FFD700,
    0 0 30px #BA55D3,
    0 0 40px #FFD700;
}

/* ✨ Hero Glow Pulse Animation */
@keyframes heroGlow {
  0% {
    text-shadow:
      0 0 8px #ffffff,
      0 0 16px #FFD700,
      0 0 24px #BA55D3,
      0 0 32px #FFD700;
    transform: scale(1);
  }
  50% {
    text-shadow:
      0 0 16px #ffffff,
      0 0 32px #FFD700,
      0 0 48px #BA55D3,
      0 0 64px #FFD700;
    transform: scale(1.05);
  }
  100% {
    text-shadow:
      0 0 8px #ffffff,
      0 0 16px #FFD700,
      0 0 24px #BA55D3,
      0 0 32px #FFD700;
    transform: scale(1);
  }
}

/* ✨ Slight Floating Movement (Already Used) */
@keyframes slightMove {
  0% { transform: translateY(0px); }
  50% { transform: translateY(3px); }
  100% { transform: translateY(0px); }
}


/* ✨ Slight Floating Movement */
@keyframes slightMove {
  0% { transform: translateY(0px); }
  50% { transform: translateY(3px); }
  100% { transform: translateY(0px); }
}
/* 🌟 Smaller Glow Box for Forms (Correct Tight Version) */
.glow-box-small {
  background: rgba(0, 0, 0, 0.85);
  border: 2px solid #FFD700;
  border-radius: 18px;
  box-shadow: 0 0 20px #FFD700, 0 0 40px #BA55D3;
  padding: 2rem;
  width: 100%;
  max-width: 550px; /* 🔥 Not huge, just perfect */
  margin: 0 auto 3rem auto;
  text-align: center;
  animation: glowPulse 5s infinite alternate;
}

/* 🌟 Hero Subtitle Supreme Glow */
.hero-subtitle {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 600;
  color: #FFD700;
  letter-spacing: 1.5px;
  margin-top: 1rem;
  margin-bottom: 2rem;
  animation: heroGlow 5s infinite alternate ease-in-out, slightMove 8s infinite alternate ease-in-out;
  text-shadow:
    0 0 10px #FFD700,
    0 0 20px #FFD700,
    0 0 30px #BA55D3,
    0 0 40px #FFD700;
}

/* ✨ Hero Glow Pulse */
@keyframes heroGlow {
  0% {
    text-shadow:
      0 0 8px #FFD700,
      0 0 16px #FFD700,
      0 0 24px #BA55D3,
      0 0 32px #FFD700;
    transform: scale(1);
  }
  50% {
    text-shadow:
      0 0 16px #FFD700,
      0 0 32px #FFD700,
      0 0 48px #BA55D3,
      0 0 64px #FFD700;
    transform: scale(1.05);
  }
  100% {
    text-shadow:
      0 0 8px #FFD700,
      0 0 16px #FFD700,
      0 0 24px #BA55D3,
      0 0 32px #FFD700;
    transform: scale(1);
  }
}

/* ✨ Slight Floating Movement (already created but applies here too) */
@keyframes slightMove {
  0% { transform: translateY(0px); }
  50% { transform: translateY(3px); }
  100% { transform: translateY(0px); }
}
/* 🚗 Cool Car Wrapper (Group Car + Trail) */
.cool-car-wrapper {
  position: fixed;
  top: 25px;
  left: -250px;
  width: 180px;
  height: 100px;
  z-index: 99999;
  pointer-events: none;
  animation: driveAcrossNav 35s linear infinite;
}

/* 🚗 Car Itself */
.cool-car-glide {
  width: 180px;
  position: absolute;
  top: 0;
  left: 0;
}

/* ✨ Glowing Trail */
.car-trail {
  position: absolute;
  top: 50%;
  left: -40px; /* trail behind the car */
  width: 30px;
  height: 10px;
  background: radial-gradient(circle, #FFD700 0%, #BA55D3 60%, transparent 100%);
  border-radius: 50%;
  filter: blur(12px);
  animation: trailFlicker 1s infinite alternate;
  opacity: 0.7;
}

/* ✨ Trail Flicker Animation */
@keyframes trailFlicker {
  0% { transform: scale(1) translateY(-5px); opacity: 0.8; }
  50% { transform: scale(1.3) translateY(0px); opacity: 1; }
  100% { transform: scale(1) translateY(5px); opacity: 0.6; }
}

/* 🚗 Car Drive Animation */
@keyframes driveAcrossNav {
  0% {
    transform: translateX(120vw);
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  50% {
    transform: translateX(-10vw);
    opacity: 1;
  }
  55% {
    opacity: 0;
  }
  100% {
    transform: translateX(-10vw);
    opacity: 0;
  }
}
/* 🍴 Supreme Floating Food Container */
.floating-food-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1; /* BELOW navbar, car, etc */
  pointer-events: none;
}

/* 🍳 Floating Food Items */
.floating-food {
  position: absolute;
  font-size: 2rem;
  color: #FFD700;
  animation: floatFood 20s linear infinite;
  opacity: 0.5;
  filter: drop-shadow(0 0 8px #FFD700) drop-shadow(0 0 15px #BA55D3);
}

/* ✨ Random Floating Positions */
.floating-food:nth-child(1) { top: 10%; left: 5%; animation-delay: 0s; }
.floating-food:nth-child(2) { top: 20%; left: 70%; animation-delay: 5s; }
.floating-food:nth-child(3) { top: 50%; left: 30%; animation-delay: 2s; }
.floating-food:nth-child(4) { top: 80%; left: 80%; animation-delay: 3s; }
.floating-food:nth-child(5) { top: 30%; left: 50%; animation-delay: 7s; }
.floating-food:nth-child(6) { top: 60%; left: 10%; animation-delay: 6s; }
.floating-food:nth-child(7) { top: 15%; left: 90%; animation-delay: 1s; }
.floating-food:nth-child(8) { top: 75%; left: 25%; animation-delay: 4s; }
.floating-food:nth-child(9) { top: 40%; left: 85%; animation-delay: 8s; }
.floating-food:nth-child(10) { top: 65%; left: 40%; animation-delay: 2s; }

/* 🎈 Floating Keyframes */
@keyframes floatFood {
  0% {
    transform: translateY(0) rotate(0deg) scale(1);
    opacity: 0.8;
  }
  50% {
    transform: translateY(-100px) rotate(180deg) scale(1.2);
    opacity: 1;
  }
  100% {
    transform: translateY(0) rotate(360deg) scale(1);
    opacity: 0.8;
  }
}
/* 📚 Supreme Cookbook Gallery */
.cookbook-gallery {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3rem;
  margin-top: 3rem;
  padding: 1rem;
}

.cookbook-item, .cookbook-feature {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  width: 300px;
  max-width: 90%;
  text-align: center;
  box-shadow: 0 0 25px #FFD700, 0 0 45px #BA55D3;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  animation: floatUpDown 6s ease-in-out infinite;
}

.cookbook-item:hover,
.cookbook-feature:hover {
  transform: scale(1.05);
  box-shadow: 0 0 45px #FFD700, 0 0 70px #BA55D3;
}

.cookbook-img {
  width: 100%;
  max-width: 220px;
  border-radius: 12px;
  margin-bottom: 1rem;
  box-shadow: 0 0 15px #FFD700;
}

/* 📘 Book Titles */
.glow-subtitle {
  font-size: 1.2rem;
  margin-bottom: 0.7rem;
  color: #FFD700;
  text-shadow: 0 0 10px #FFD700, 0 0 20px #BA55D3;
}

/* 📖 Book Descriptions */
.cookbook-item p,
.cookbook-feature p {
  color: #fff;
  font-size: 0.95rem;
  line-height: 1.5;
  text-shadow: 0 0 6px #000;
  margin-bottom: 1.2rem;
}

/* 🔥 Buy Button */
.buy-btn {
  display: inline-block;
  background: linear-gradient(90deg, #FFD700, #BA55D3);
  color: #000;
  font-weight: bold;
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  text-decoration: none;
  box-shadow: 0 0 12px #FFD700, 0 0 25px #BA55D3;
  transition: all 0.3s ease;
  font-size: 1rem;
}

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

/* 🎯 Featured Book Centered */
.cookbook-feature {
  margin: 4rem auto 2rem auto;
  max-width: 400px;
}

/* 🔁 Floating Motion (Optional Supreme Touch) */
@keyframes floatUpDown {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}
.subscribe-buttons {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
  align-items: center;
}

.subscribe-btn {
  background: linear-gradient(45deg, #FFD700, #BA55D3);
  color: black;
  font-weight: bold;
  font-size: 1.2rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 0 20px #FFD700, 0 0 35px #BA55D3;
  transition: all 0.4s ease;
  animation: supremePulse 4s infinite alternate;
}

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

/* 💥 Supreme Pulse Animation */
@keyframes supremePulse {
  0% { box-shadow: 0 0 20px #FFD700, 0 0 35px #BA55D3; }
  100% { box-shadow: 0 0 40px #FFD700, 0 0 65px #BA55D3; }
}
.legacy-btn {
  margin-top: 2rem;
  display: flex; /* 💥 FLEX = Center Magic */
  justify-content: center;
  align-items: center;
  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 35px #BA55D3;
  transition: all 0.4s ease;
  animation: supremePulse 4s infinite alternate;
  width: fit-content; /* 🛡️ Keep button tight around text */
  margin-left: auto;
  margin-right: auto; /* 👑 Perfect Center in Container */
}

.legacy-btn:hover {
  transform: scale(1.1);
  background: linear-gradient(90deg, #BA55D3, #FFD700);
  box-shadow: 0 0 30px #FFD700, 0 0 60px #BA55D3;
}
/* 🎤 Supreme Floating Coolio Hover */
.coolio-floater {
  position: fixed;
  right: 0px;
  bottom: 185px; /* Default for Desktop */
  width: 400px;
  opacity: 0.6;
  animation: floatPulse 6s ease-in-out infinite, supremeGlow 5s infinite alternate;
  z-index: 9999;
  pointer-events: none; /* Won't block buttons or links */
}

/* 🎯 Floating Up/Down Animation */
@keyframes floatPulse {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

/* 📱 Mobile Devices - Lower, Smaller, and More Transparent */
@media (max-width: 768px) {
  .coolio-floater {
    bottom: 30px; /* Lower on mobile */
    width: 200px; /* Smaller on mobile */
    right: 10px; /* Adjusted to stay visible */
    opacity: 0.3; /* 🔥 More transparent on mobile only */
  }
}


/* 🎯 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); }
}
.video-collage {
  display: flex;
  flex-wrap: nowrap; /* ⬅️ Force left-to-right only */
  justify-content: center;
  align-items: flex-start;
  gap: 2rem;
  margin-top: 2rem;
}

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

.collage-video {
  width: 100%;
  aspect-ratio: 16/9; /* ⬅️ Keep perfect 16:9 shape */
  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 */
@media (max-width: 900px) {
  .video-collage {
    flex-wrap: wrap; /* ✅ Allow wrap on mobile */
  }
  .video-column {
    width: 90%; /* ✅ Stack nicely on small screens */
  }
}
/* 🌟 Coolio Amazon Author Box */
.coolio-amazon-preview {
  margin: 4rem auto;
  max-width: 500px;
  padding: 2rem;
  border-radius: 30px;
  background: linear-gradient(145deg, #1a1a2e, #0f0f1f);
  box-shadow: 0 0 30px #FFD700, 0 0 60px #BA55D3;
  animation: supremeGlow 5s ease-in-out infinite alternate;
  font-family: 'Orbitron', sans-serif;
  color: white;
}

.amazon-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
  justify-content: center;
}

.amazon-img {
  width: 200px;
  border-radius: 20px;
  box-shadow: 0 0 20px #FFD700, 0 0 40px #BA55D3;
}

.amazon-text {
  flex: 1;
  min-width: 250px;
  text-align: center; /* Center text inside */
  display: flex;
  flex-direction: column;
  align-items: center; /* Center items horizontally */
  justify-content: center;
}

.amazon-text h2 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  color: #FFD700;
}

.amazon-text p {
  font-size: 1rem;
  line-height: 1.5;
  color: #eee;
}

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

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