/* Custom styles and enhancements for dawn4 */

:root {
  color-scheme: dark;
}

html {
  font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, Roboto, sans-serif;
  scroll-behavior: smooth;
}

/* Ambient glow pulsation */
@keyframes pulseGlow {
  0%, 100% {
    transform: scale(1) translate(0px, 0px);
    opacity: 0.15;
  }
  50% {
    transform: scale(1.15) translate(20px, -20px);
    opacity: 0.28;
  }
}

.ambient-glow {
  position: absolute;
  animation: pulseGlow 14s ease-in-out infinite alternate;
}

.ambient-glow:nth-child(2) {
  animation-duration: 18s;
  animation-delay: -5s;
}

.ambient-glow:nth-child(3) {
  animation-duration: 22s;
  animation-delay: -9s;
}

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

::-webkit-scrollbar-track {
  background: #05070c;
}

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

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

/* Glass card subtle border lighting */
.bg-dawn-card {
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(12px);
}
