/* =================================
   FIREWORKS REMOVAL FIX
   Removes startup prismatic effects and bouncing orbs
   ================================= */

/* Remove the prismatic rotating effect */
body.dark-theme::before {
  display: none !important;
  animation: none !important;
  opacity: 0 !important;
}

/* Remove the diamond sparkle effect from search bar */
.search-orb::before {
  display: none !important;
  animation: none !important;
}

/* Remove liquid metal flow animation from header */
.header-section::before {
  animation: none !important;
  transform: none !important;
}

/* Remove any particle/orb animations */
.particle-bit,
.light-orb,
.click-ripple {
  display: none !important;
}

/* Optional: Remove the metallic sheen animation from header text */
.header-section h1 {
  animation: none !important;
}

/* Optional: Remove loading spinner glow effect */
.loading-spinner::before {
  display: none !important;
}

/* Remove first-load entrance animations if you want instant display */
body.first-load .search-card {
  animation: none !important;
  opacity: 1 !important;
}

/* Remove dematerialization animation particles */
.search-card.dematerializing .particle-bit {
  display: none !important;
}
