@charset "UTF-8";

/* Word Break Setting */
body {
  word-break: keep-all;
}

/* Swiper Customization */
.swiper-pagination-bullet-active {
  background-color: #2563eb !important;
}

/* Glassmorphism Header */
.glass-header {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

/* Scroll to Top Button Animation */
#scroll-to-top {
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}

#scroll-to-top.show {
  opacity: 1;
  visibility: visible;
}
