/* ------------------------------
   🌀 SMOOTHJAZZHALLOWEEN.COM – MAX SUPREME CSS
------------------------------ */

/* 🌌 UNIVERSAL RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-family: 'Orbitron', sans-serif;
  color: #fff;
}

  html, body {
    font-family: 'Orbitron', sans-serif;
    background-color: #ffffff;
    color: #fff;
    overflow-x: hidden;
    scroll-behavior: smooth;
    height: 100%;
    background: url('assets/background.png') no-repeat center center fixed;
    background-size: cover;
  }

/* 🎇 ANIMATIONS */
@keyframes pulseGlow {
  0% { filter: drop-shadow(0 0 5px #00f0ff); }
  50% { filter: drop-shadow(0 0 25px #ff00f7); }
  100% { filter: drop-shadow(0 0 5px #00f0ff); }
}

@keyframes floatStars {
  from { background-position: 0 0; }
  to { background-position: -10000px 5000px; }
}

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

/* 🚀 NAV AREA */
nav {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  background: rgba(0, 0, 0, 0.95);
  border-bottom: 2px solid #ff00f7;
  box-shadow: 0 0 25px #00f0ff;
  position: relative;
  z-index: 100;
  gap: 25px;
}

nav img {
  width: 120px;
  height: 120px;
  animation: spin 25s linear infinite, pulseGlow 2.5s infinite ease-in-out;
  margin-right: 70px;
  border-radius: 0%;
  box-shadow: 0 0 25px #ff00f7, 0 0 30px #00f0ff;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.nav-links a {
  padding: 12px 25px;
  border: 2px solid #ff00f7;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 50px;
  color: #00f0ff;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 0 15px #ff00f7;
  text-shadow: 0 0 6px #00f0ff;
}

.nav-links a:hover {
  background: #ff00f7;
  color: #000;
  transform: scale(1.15);
  box-shadow: 0 0 30px #00f0ff;
}
/* 🍔 Supreme Hamburger Menu Toggle */
.hamburger-menu {
  display: none;
  position: fixed;
  top: 20px;
  right: 25px;
  font-size: 2rem;
  z-index: 9999;
  color: #FFD700;
  cursor: pointer;
  animation: pulseGlow 2s infinite alternate;
}

/* 🔽 Dropdown Nav Menu Styling */
.mobile-nav-dropdown {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 75px;
  right: 20px;
  background: rgba(0, 0, 0, 0.95);
  border: 2px solid #FFD700;
  border-radius: 14px;
  z-index: 9998;
  padding: 10px 20px;
  box-shadow: 0 0 25px #00f0ff;
  animation: dropdownFade 0.4s ease-in-out;
}

.mobile-nav-dropdown a {
  color: #fff;
  padding: 12px 0;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  border-bottom: 1px solid #444;
  transition: all 0.2s ease-in-out;
}

.mobile-nav-dropdown a:hover {
  color: #00f0ff;
  text-shadow: 0 0 6px #ff00f7;
  transform: translateX(5px);
}

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

@keyframes pulseGlow {
  0% { text-shadow: 0 0 10px #ff00f7; }
  100% { text-shadow: 0 0 20px #00f0ff; }
}

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

  .desktop-nav {
    display: none !important;
  }
}

/* 🔥 SUPREME HERO SECTION */
.hero-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 100px 20px 60px;
  text-align: center;
  width: 100%;
}

.centered-hero {
  max-width: 900px;
  background: rgba(0, 0, 0, 0.75);
  padding: 50px 30px;
  border: 3px solid #00f0ff;
  border-radius: 30px;
  box-shadow: 0 0 30px #ff00f7, 0 0 45px #00f0ff;
  backdrop-filter: blur(10px);
  animation: pulseGlow 3s infinite ease-in-out;
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 25px;
  color: #00f0ff;
  text-shadow: 0 0 15px #ff00f7, 0 0 25px #00f0ff;
  animation: pulseGlow 3s infinite ease-in-out;
}

.hero-subtitle {
  font-size: 1.6rem;
  color: #ff00f7;
  text-shadow: 0 0 12px #00f0ff;
  animation: pulseGlow 2s infinite alternate;
}
/* 📱 FIX HERO TITLE CUT-OFF (MOBILE ONLY) */
@media (max-width: 768px) {

  .hero-title {
    font-size: 2.05rem;          /* slightly smaller */
    line-height: 1.2;
    padding: 0 10px;             /* breathing room */
    word-break: break-word;
  }

  .hero-title .mobile-wrap {
    white-space: normal;         /* allow wrapping */
    display: inline-block;
    max-width: 100%;
  }

}


/* 🌀 CONTAINERS */
.section-container {
  max-width: 1000px;
  margin: 50px auto;
  padding: 40px;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 30px;
  border: 2px solid #00f0ff;
  box-shadow: 0 0 30px #ff00f7;
  text-align: center;
  backdrop-filter: blur(6px);
}

/* ✨ GLOWING BUTTONS */
.glow-button {
  background: linear-gradient(45deg, #ff00f7, #00f0ff);
  color: #000;
  padding: 14px 30px;
  margin-top: 20px;
  border-radius: 50px;
  border: none;
  font-size: 1.2rem;
  font-weight: bold;
  box-shadow: 0 0 22px #ff00f7;
  cursor: pointer;
  transition: all 0.3s ease;
}

.glow-button:hover {
  background: #00f0ff;
  box-shadow: 0 0 35px #ff00f7;
  transform: scale(1.12);
}

/* 💌 Centered Rectangular Email Signup Section */
.email-signup-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 20px;
  width: 100%;
}

.email-signup-box {
  width: 100%;
  max-width: 820px;
  background: rgba(0, 0, 0, 0.75);
  padding: 50px 40px;
  border-radius: 16px; /* More rectangle, less pill */
  border: 3px solid #00f0ff;
  box-shadow: 0 0 40px #ff00f7, 0 0 55px #00f0ff;
  text-align: center;
  backdrop-filter: blur(10px);
  animation: pulseGlow 4s infinite ease-in-out;
}

/* Input Field */
.email-signup-box input[type="email"] {
  padding: 16px 20px;
  border: none;
  border-radius: 12px;
  width: 100%;
  max-width: 500px;
  font-size: 1.1rem;
  margin: 20px auto;
  color: #000;
  background: #f0f0f0;
  box-shadow: 0 0 12px #00f0ff;
}

/* Button */
.email-signup-box button {
  padding: 16px 40px;
  font-size: 1.2rem;
  font-weight: bold;
  border-radius: 12px;
  background: linear-gradient(45deg, #00f0ff, #ff00f7);
  border: none;
  color: #000;
  cursor: pointer;
  margin-top: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px #ff00f7;
}

.email-signup-box button:hover {
  background: #ff00f7;
  color: #000;
  transform: scale(1.08);
  box-shadow: 0 0 30px #00f0ff;
}


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

.popup-inner {
  background: #111;
  padding: 40px 30px;
  border-radius: 20px;
  border: 2px solid #ff00f7;
  box-shadow: 0 0 35px #00f0ff, 0 0 50px #ff00f7;
  text-align: center;
  animation: pulseGlow 3s infinite ease-in-out;
}

.music-preview-section {
  padding: 60px 20px;
  background: linear-gradient(to right, #0b0b0b, #111111);
  text-align: center;
}

.music-card {
  max-width: 380px;
  margin: auto;
  background: rgba(0, 0, 0, 0.85);
  padding: 25px;
  border-radius: 20px;
  box-shadow: 0 0 25px #00f0ff, 0 0 35px #ff00f7;
  animation: pulseGlow 5s infinite ease-in-out;
}

.music-cover {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 0 15px #ff00f7;
  margin-bottom: 20px;
}

.music-title {
  color: #fff;
  font-size: 1.6rem;
  margin-bottom: 10px;
  text-shadow: 0 0 10px #00f0ff;
}

.music-subtext {
  color: #ccc;
  font-size: 1rem;
  margin-bottom: 15px;
}

/* 👻 Contact Form Styling */
.contact-form-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 20px;
  width: 100%;
}

.contact-form {
  background: rgba(0, 0, 0, 0.75);
  border-radius: 30px;
  padding: 40px 30px;
  width: 100%;
  max-width: 600px;
  text-align: center;
  box-shadow: 0 0 30px #ff00f7, 0 0 45px #00f0ff;
  backdrop-filter: blur(6px);
  animation: pulseGlow 4s infinite ease-in-out;
}

.contact-form h2.form-title {
  color: #fff;
  margin-bottom: 25px;
  font-size: 2rem;
  text-shadow: 0 0 10px #ff00f7;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 20px;
  margin-bottom: 20px;
  border: none;
  border-radius: 25px;
  font-size: 1rem;
  color: #000;
  outline: none;
}

.contact-form textarea {
  height: 120px;
  resize: none;
}

.contact-form .submit-btn {
  background: #00f0ff;
  color: #000;
  font-weight: bold;
  border: none;
  padding: 14px 28px;
  border-radius: 30px;
  cursor: pointer;
  box-shadow: 0 0 15px #ff00f7;
  transition: all 0.3s ease;
}

.contact-form .submit-btn:hover {
  background: #ff00f7;
  color: #000;
  transform: scale(1.05);
}
/* 🎉 Popup Confirmation Styling */
.popup-message {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 0, 30, 0.8);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.popup-box {
  background: #0b0b0b;
  border: 2px solid #ff00f7;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 0 20px #00f0ff, 0 0 30px #ff00f7;
  color: #fff;
}

.popup-box h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.popup-box p {
  font-size: 1rem;
  margin-bottom: 20px;
}

.popup-box .restart-btn {
  background: #00f0ff;
  border: none;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: bold;
  color: #000;
  cursor: pointer;
  box-shadow: 0 0 10px #ff00f7;
}

.popup-box .restart-btn:hover {
  background: #ff00f7;
  color: #000;
}
/* 🔮 Countdown Timer Styling */
.countdown-section {
  background-color: #0d0d0d;
  text-align: center;
  padding: 60px 20px;
  border-top: 2px solid #ff00f7;
  border-bottom: 2px solid #00f0ff;
  box-shadow: 0 0 15px #ff00f7, inset 0 0 15px #00f0ff;
}

.countdown-title {
  font-size: 2.5rem;
  color: #ff00f7;
  text-shadow: 0 0 10px #ff00f7, 0 0 20px #ff00f7;
  margin-bottom: 10px;
  animation: pulse-glow 2s infinite alternate;
}

.countdown-subtitle {
  font-size: 1.2rem;
  color: #ffffff;
  margin-bottom: 25px;
  text-shadow: 0 0 10px #00f0ff;
}

.countdown-timer {
  font-size: 2.2rem;
  color: #00f0ff;
  font-weight: bold;
  text-shadow: 0 0 10px #00f0ff, 0 0 30px #00f0ff;
  animation: glow-fade 1.5s ease-in-out infinite alternate;
}

/* 🔥 Glowing Pulse Keyframes */
@keyframes pulse-glow {
  0% {
    text-shadow: 0 0 10px #ff00f7, 0 0 20px #ff00f7;
  }
  100% {
    text-shadow: 0 0 20px #ff00f7, 0 0 40px #ff00f7;
  }
}

@keyframes glow-fade {
  0% {
    text-shadow: 0 0 10px #00f0ff;
  }
  100% {
    text-shadow: 0 0 30px #00f0ff;
  }
}

/* === SUPREME MEMORY GAME (UPGRADED) === */

.memory-game-section {
  text-align: center;
  padding: 48px 20px;
  margin: 40px auto;
  max-width: 760px;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 20px;
  box-shadow:
    0 0 30px rgba(0,240,255,0.7),
    0 0 50px rgba(255,0,247,0.7);
  animation: pulseHero 10s infinite;
}

/* 🧠 Title */
.game-title {
  font-size: clamp(2rem, 5vw, 2.8rem);
  margin-bottom: 12px;
  text-shadow: 0 0 12px #00f0ff, 0 0 30px #ff00f7;
}

/* ✨ Subtitle */
.game-subtitle {
  font-size: clamp(1.05rem, 2.8vw, 1.3rem);
  color: #ccc;
  max-width: 520px;
  margin: 0 auto 32px;
  line-height: 1.5;
  text-shadow: 0 0 6px #ff00f7;
}

/* 🔁 Restart Button */
.restart-btn {
  background: linear-gradient(45deg, #00f0ff, #ff00f7);
  border: none;
  padding: 14px 32px;
  color: #fff;
  font-weight: bold;
  font-size: 1rem;
  border-radius: 999px;
  margin-bottom: 36px;
  cursor: pointer;
  box-shadow:
    0 0 18px #00f0ff,
    0 0 28px #ff00f7;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.restart-btn:hover {
  transform: scale(1.08);
  box-shadow:
    0 0 28px #ff00f7,
    0 0 48px #00f0ff;
}

/* 🎴 Memory Grid */
.memory-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(90px, 1fr));
  gap: 22px;
  justify-content: center;
  align-items: center;
  max-width: 500px;
  margin: 0 auto;
}

/* 🃏 Card */
.memory-card {
  width: 100%;
  aspect-ratio: 10 / 13;
  perspective: 1200px;
  cursor: pointer;
  touch-action: manipulation;
}

.card-inner {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.6s ease;
  will-change: transform;
}

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

/* 🔮 Card Faces */
.card-front,
.card-back {
  position: absolute;
  inset: 0;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(1.8rem, 4vw, 2.1rem);
  backface-visibility: hidden;
  box-shadow:
    0 0 14px #00f0ff,
    0 0 26px #ff00f7;
}

/* Front */
.card-front {
  background: rgba(0, 0, 0, 0.45);
}

/* Logo */
.card-front-img {
  width: 55%;
  max-width: 64px;
  animation: spinPulse 20s infinite linear;
}

/* Back */
.card-back {
  background: linear-gradient(145deg, #ff00f7, #00f0ff);
  color: #fff;
  transform: rotateY(180deg);
  font-weight: bold;
  text-shadow: 0 0 6px #000;
}

/* 🏆 Win Popup */
.win-popup {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
}

.win-box {
  background: #111;
  padding: 36px 32px;
  border-radius: 22px;
  border: 2px solid #00f0ff;
  text-align: center;
  max-width: 90%;
  box-shadow:
    0 0 30px #00f0ff,
    0 0 50px #ff00f7;
  color: #fff;
}

/* 🎞 Animations */
@keyframes spinPulse {
  0% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(180deg) scale(1.08); }
  100% { transform: rotate(360deg) scale(1); }
}

@keyframes pulseHero {
  0%, 100% {
    box-shadow:
      0 0 40px #00f0ff,
      0 0 60px #ff00f7;
  }
  50% {
    box-shadow:
      0 0 60px #ff00f7,
      0 0 90px #00f0ff;
  }
}

/* 📱 MOBILE OPTIMIZATION */
@media (max-width: 768px) {

  .memory-game-section {
    padding: 32px 14px;
    margin: 30px auto;
  }

  .memory-grid {
    grid-template-columns: repeat(3, minmax(80px, 1fr));
    gap: 16px;
    max-width: 320px;
  }

  .restart-btn {
    margin-bottom: 28px;
    padding: 12px 26px;
    font-size: 0.95rem;
  }

  .win-box {
    padding: 28px 24px;
    border-radius: 18px;
  }
}

/* ♿ Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  .card-front-img,
  .memory-game-section {
    animation: none !important;
  }
}

/* 🎧 Music Collection Section */
.music-collection {
  padding: 40px 15px;
  text-align: center;
  max-width: 1000px;
  margin: auto;
}

.section-title {
  font-size: 2rem;
  color: #fff;
  text-shadow: 0 0 12px #ff00f7;
  margin-bottom: 15px;
}

.music-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-top: 20px;
}

/* 🎵 Music Card */
.music-card {
  background: rgba(0, 0, 0, 0.85);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 0 15px #00f0ff;
  transition: transform 0.3s ease;
}

.music-card:hover {
  transform: scale(1.03);
  box-shadow: 0 0 20px #ff00f7;
}

.music-cover {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 0 8px #ff00f7;
  margin-bottom: 12px;
}

.music-title {
  color: #fff;
  font-size: 1.1rem;
  margin: 8px 0 4px;
}

.music-subtext {
  color: #bbb;
  font-size: 0.9rem;
  margin-bottom: 12px;
}

/* 💿 Now Playing Dropdown */
.player-toggle {
  background: #000;
  padding: 12px 20px;
  margin: 15px auto;
  max-width: 500px;
  border-radius: 25px;
  border: 2px solid #ff00f7;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 0 10px #00f0ff;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  animation: pulseGlow 3s infinite ease-in-out;
}

.player-toggle i {
  font-size: 0.9rem;
  transition: transform 0.3s;
}

.player-dropdown {
  display: none;
  margin-top: 15px;
}

.player-dropdown audio {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  box-shadow: 0 0 15px #ff00f7;
}

/* Pulse Glow Animation */
@keyframes pulseGlow {
  0% { box-shadow: 0 0 12px #ff00f7; }
  50% { box-shadow: 0 0 20px #00f0ff; }
  100% { box-shadow: 0 0 12px #ff00f7; }
}

/* 🦶 FIXED FOOTER */
.site-footer {
  background-color: rgba(0, 0, 0, 0.88);
  padding: 30px 20px;
  color: white;
  text-align: center;
  border-top: 2px solid #00f0ff;
  box-shadow: 0 0 25px #ff00f7;
  margin-top: auto;
  z-index: 5;
  position: relative;
  bottom: 0;
  width: 100%;
}

.footer-links a {
  color: #00f0ff;
  text-decoration: none;
  margin: 0 10px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ff00f7;
}

.social-icons {
  margin-top: 12px;
}

.social-icons a {
  font-size: 24px;
  color: #9a4397;
  margin: 0 12px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-icons a:hover {
  color: #00f0ff;
  transform: scale(1.25);
}

.social-glow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  margin: 0 12px;
  border: 2px solid #00f0ff;
  border-radius: 50%;
  font-size: 24px;
  color: #92238e;
  background: rgba(0, 0, 0, 0.4);
  box-shadow: 0 0 15px #00f0ff, 0 0 20px #ae4dab;
  transition: all 0.3s ease-in-out;
  animation: glowPulse 2.5s infinite ease-in-out;
}

.social-glow:hover {
  background: #00f0ff;
  color: #000;
  transform: scale(1.2) rotate(4deg);
  box-shadow: 0 0 30px #b04eac, 0 0 40px #00f0ff;
}

.footer-credit {
  margin-top: 20px;
  font-size: 14px;
  color: #ccc;
  text-shadow: 0 0 6px #00f0ff;
}

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

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

.footer-credit {
  margin-top: 15px;
  font-size: 14px;
  color: #ccc;
  text-shadow: 0 0 5px #00f0ff;
}
.cursor-trail {
  position: fixed;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, #ff00f7 0%, #00f0ff 80%);
  box-shadow: 0 0 15px #ff00f7, 0 0 30px #00f0ff;
  opacity: 0.6;
  z-index: 9999;
  animation: fadeTrail 0.5s ease-out forwards;
}

@keyframes fadeTrail {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(0.2);
    opacity: 0;
  }
}
/* ☠️ Floating Skeleton Quote */
.floating-quote-container {
  position: fixed;
  top: 250px;
  left: 2px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 999;
  animation: floatSkel 5s ease-in-out infinite;
}

.skeleton-float {
  width: 300px;
  animation: pulseGlow 2.5s infinite ease-in-out;
  filter: drop-shadow(0 0 12px #ff00f7) drop-shadow(0 0 24px #00f0ff);
}

.quote-box {
  margin-top: 15px;
  background: rgba(0, 0, 0, 0.75);
  border: 2px solid #00f0ff;
  border-radius: 15px;
  padding: 12px 16px;
  color: #fff;
  font-size: 0.95rem;
  max-width: 220px;
  text-align: center;
  box-shadow: 0 0 15px #ff00f7;
  backdrop-filter: blur(4px);
}

@keyframes floatSkel {
  0% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
  100% { transform: translateY(0); }
}
/* 🚫 Hide Floating Skeleton on Mobile Devices */
@media (max-width: 768px) {
  .floating-quote-container {
    display: none !important;
  }
}
/* 🧙‍♀️ Flying Witch Animation */
.flying-witch {
  position: fixed;
  top: 200px;
  left: -200px;
  width: 250px;
  z-index: 9999;
  pointer-events: none;
  animation: flyWitch 25s linear infinite;
  filter: drop-shadow(0 0 8px #ff00f7) drop-shadow(0 0 12px #00f0ff);
  transform: scaleX(1); /* keep facing right */
}

/* 🌀 Witch Glow Animation */
@keyframes pulseGlow {
  0% { filter: drop-shadow(0 0 8px #ff00f7) drop-shadow(0 0 14px #00f0ff); }
  50% { filter: drop-shadow(0 0 16px #ff00f7) drop-shadow(0 0 24px #00f0ff); }
  100% { filter: drop-shadow(0 0 8px #ff00f7) drop-shadow(0 0 14px #00f0ff); }
}

@keyframes flyWitch {
  0% {
    left: -200px;
    top: 15px;
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    left: 110%;
    top: 20px;
    opacity: 1;
  }
  100% {
    left: 110%;
    opacity: 0;
  }
}
/* 👻 Ghost Container */
#ghost-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0; /* Behind everything */
}

/* 👻 Floating Ghost Style */
.floating-ghost {
  position: absolute;
  opacity: 0.7;
  animation: floatGhost infinite ease-in-out;
  filter: drop-shadow(0 0 8px #ffffff) drop-shadow(0 0 12px #00f0ff);
  z-index: 0;
}

/* 🎃 Ghost Floating Animation */
@keyframes floatGhost {
  0% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0.5;
  }
  50% {
    transform: translateY(-30px) rotate(10deg);
    opacity: 1;
  }
  100% {
    transform: translateY(0px) rotate(-10deg);
    opacity: 0.5;
  }
}
.about-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 20px;
  width: 100%;
}

.about-content {
  max-width: 1000px;
  text-align: center;
  padding: 50px;
  background: rgba(0, 0, 0, 0.75);
  border-radius: 30px;
  border: 2px solid #00f0ff;
  box-shadow: 0 0 35px #ff00f7;
  backdrop-filter: blur(8px);
  animation: pulseGlow 3s infinite;
}

.section-title {
  font-size: 2.5rem;
  margin-top: 40px;
  margin-bottom: 20px;
  color: #ff00f7;
  text-shadow: 0 0 10px #00f0ff;
}

.glow-list {
  list-style: none;
  padding-left: 0;
  text-align: left;
  max-width: 700px;
  margin: 0 auto;
}

.glow-list li {
  margin: 12px 0;
  font-size: 1.1rem;
  padding-left: 10px;
  text-shadow: 0 0 6px #00f0ff;
}

.tagline {
  font-size: 2rem;
  margin-top: 40px;
  color: #00f0ff;
  text-shadow: 0 0 12px #ff00f7;
}

.pulse {
  animation: pulseGlow 3s infinite;
}
/* 📺 YouTube Subscribe Button */
.subscribe-button {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 28px;
  font-size: 1.1rem;
  font-weight: bold;
  background: linear-gradient(145deg, #ff004c, #ff00f7);
  color: #fff;
  border-radius: 40px;
  text-decoration: none;
  box-shadow: 0 0 15px #ff00f7, 0 0 25px #00f0ff;
  transition: all 0.3s ease-in-out;
  animation: pulseGlow 2.5s infinite;
}

.subscribe-button:hover {
  background: #000;
  color: #ff00f7;
  box-shadow: 0 0 20px #00f0ff, 0 0 40px #ff00f7;
  transform: scale(1.05);
}

/* ✨ Link Styling */
.subscribe-link {
  color: #00f0ff;
  text-decoration: underline;
  font-weight: bold;
}

.subscribe-link:hover {
  color: #ff00f7;
}
/* 🔐 Privacy Policy Styling */
.policy-content {
  max-width: 800px;
  margin: 60px auto;
  padding: 50px 40px;
  background: rgba(0, 0, 0, 0.85);
  border-radius: 25px;
  box-shadow: 0 0 30px #ff00f7, 0 0 50px #00f0ff;
  backdrop-filter: blur(6px);
  text-align: center; /* Changed from left to center */
  color: #fff;
  animation: pulseGlow 4s infinite ease-in-out;
  line-height: 1.75;
}

.policy-content .section-title {
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 30px;
  color: #fff;
  text-shadow: 0 0 10px #ff00f7;
}

.policy-content h3 {
  margin-top: 30px;
  font-size: 1.4rem;
  color: #00f0ff;
  text-shadow: 0 0 5px #00f0ff;
}

.policy-content p {
  margin: 10px auto;
  font-size: 1.05rem;
  color: #f1f1f1;
  max-width: 700px;
}

.policy-content ul {
  display: inline-block;
  text-align: left;
  margin: 20px auto;
  padding-left: 20px;
  list-style-type: square;
}

.policy-content ul li {
  margin-bottom: 10px;
  color: #eee;
}

.policy-content a {
  color: #ff00f7;
  text-decoration: underline;
}

.policy-content a:hover {
  color: #00f0ff;
  text-shadow: 0 0 5px #ff00f7;
}


/* 📜 Terms of Use Styling */
.terms-content {
  max-width: 850px;
  margin: 60px auto;
  padding: 50px 45px;
  background: rgba(0, 0, 0, 0.85);
  border-radius: 25px;
  box-shadow: 0 0 30px #00f0ff, 0 0 50px #ff00f7;
  backdrop-filter: blur(6px);
  text-align: center; /* Changed from left to center */
  color: #fff;
  line-height: 1.8;
  animation: pulseGlow 4s infinite ease-in-out;
}

.terms-content .section-title {
  font-size: 2.3rem;
  text-align: center;
  margin-bottom: 30px;
  color: #fff;
  text-shadow: 0 0 10px #ff00f7;
}

.terms-content h3 {
  margin-top: 35px;
  font-size: 1.4rem;
  color: #00f0ff;
  text-shadow: 0 0 6px #00f0ff;
}

.terms-content p {
  margin: 10px auto;
  font-size: 1.05rem;
  color: #f1f1f1;
  max-width: 700px;
}

.terms-content a {
  color: #ff00f7;
  text-decoration: underline;
}

.terms-content a:hover {
  color: #00f0ff;
  text-shadow: 0 0 6px #ff00f7;
}
/* 🎃 Collage Section Styles */
.jarez-collage-section {
  padding: 60px 20px;
  background: linear-gradient(to right, #0b0b0b, #111111);
  text-align: center;
}

.jarez-collage-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  margin: auto;
}

.collage-block {
  background: rgba(0, 0, 0, 0.85);
  border-radius: 20px;
  padding: 25px 20px;
  max-width: 400px;
  width: 100%;
  box-shadow: 0 0 25px #00f0ff, 0 0 40px #ff00f7;
  animation: pulseGlow 5s infinite ease-in-out;
}

.collage-img {
  width: 100%;
  max-height: 220px;
  object-fit: contain;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 0 12px #ff00f7;
}

.glow-img {
  animation: glowPulse 4s infinite;
}

.collage-title {
  font-size: 1.6rem;
  color: #fff;
  text-shadow: 0 0 10px #00f0ff;
  margin-bottom: 10px;
}

.collage-text {
  color: #ccc;
  font-size: 1rem;
  line-height: 1.6;
}

.collage-text a {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 24px;
  background: linear-gradient(135deg, #ff00f7, #00f0ff);
  color: #fff;
  font-weight: bold;
  border-radius: 30px;
  text-decoration: none;
  box-shadow: 0 0 12px #ff00f7, 0 0 20px #00f0ff;
  transition: all 0.3s ease;
  animation: pulseGlow 4s infinite ease-in-out;
}

.collage-text a:hover {
  background: linear-gradient(135deg, #00f0ff, #ff00f7);
  box-shadow: 0 0 18px #00f0ff, 0 0 28px #ff00f7;
  transform: scale(1.05);
  text-shadow: 0 0 8px #fff;
}


/* 🔁 Reusable Glow Animation */
@keyframes glowPulse {
  0% { box-shadow: 0 0 10px #00f0ff; }
  50% { box-shadow: 0 0 20px #ff00f7; }
  100% { box-shadow: 0 0 10px #00f0ff; }
}
.glow-button {
  display: inline-block;
  background: #ff00f7;
  color: #fff;
  padding: 12px 24px;
  border: none;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 0 12px #ff00f7, 0 0 24px #00f0ff;
  animation: pulseGlow 3s infinite ease-in-out;
}

.glow-button:hover {
  background: #00f0ff;
  box-shadow: 0 0 16px #00f0ff, 0 0 32px #ff00f7;
  color: #000;
}
@media (max-width: 600px) {
  .hero-title {
    font-size: 1.9rem;
  }
}
