/* assets/css/stars.css */
#stars-layer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  pointer-events: none;
  z-index: 1000;
}

.star {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  will-change: transform, opacity;
}

/* Mobilde yıldızları gizle */
@media (max-width: 768px) {
  #stars-layer {
    display: none;
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}
