/*
 * Exodus Theme Customizations
 * Mint green (#5BF5A0) on dark ground
 */

/* Mouse glow cursor effect */
.exodus-mouse-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(91,245,160,0.15) 0%, rgba(91,245,160,0.06) 30%, transparent 60%);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
  opacity: 0;
}
.exodus-mouse-glow.visible {
  opacity: 1;
}

/* Accent glow on hero background */
[data-scheme="dark"] .sa-hero .sa-hero-title,
.sa-hero .sa-hero-title {
  text-shadow: 0 0 60px rgba(91,245,160,0.15);
}

/* Subtle green tint on card hover borders */
[data-scheme="dark"] .sa-product-card:hover {
  border-color: rgba(91,245,160,0.2) !important;
}

/* Stats value glow */
[data-scheme="dark"] .sa-stats .sa-stats-item [data-stat-value] {
  text-shadow: 0 0 30px rgba(91,245,160,0.2);
}
