/* Back to Top Button Styling */
.back-to-top-0f527548 {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 46px;
  height: 46px;
  background-color: #111111;
  color: #ffffff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: opacity 0.3s ease, transform 0.3s ease, background-color 0.3s ease, visibility 0.3s;
  z-index: 99999;
}

.back-to-top-0f527548.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top-0f527548:hover {
  background-color: #333333;
  transform: translateY(-3px);
}

.back-to-top-0f527548 svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.3s ease;
}

.back-to-top-0f527548:hover svg {
  transform: translateY(-2px);
}

/* Subtle Entrance Scroll Animations */
.reveal-on-scroll-0f527548 {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.8s cubic-bezier(0.215, 0.61, 0.355, 1), transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
  will-change: transform, opacity;
}

.reveal-on-scroll-0f527548.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Reduce motion accessibility preference */
@media (prefers-reduced-motion: reduce) {
  .reveal-on-scroll-0f527548 {
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .back-to-top-0f527548 {
    transition: none !important;
  }
}
