/* Custom styles for MegaStream tools website */

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Custom dark scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #020617;
}

::-webkit-scrollbar-thumb {
  background: #1e293b;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #334155;
}

/* Glassmorphism accents */
.backdrop-glass {
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* Active Scale Feedback */
.active\:scale-98:active {
  transform: scale(0.98);
}

/* Pulse Glow Animation */
@keyframes glow-pulse {
  0%, 100% {
    box-shadow: 0 0 15px rgba(220, 38, 38, 0.2);
  }
  50% {
    box-shadow: 0 0 25px rgba(220, 38, 38, 0.4);
  }
}

.glow-effect {
  animation: glow-pulse 3s infinite ease-in-out;
}

/* Ensure iframe fits container correctly */
#mega-iframe {
  background-color: #000000;
}
