* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.preloader-overlay {
  position: fixed;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #0a0a0a;
  z-index: 9999;
  opacity: 1;
  transition: opacity 0.4s ease;
}

.preloader-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.preloader-container {
  position: relative;
  width: 120px;
  height: 120px;
}

.rings-svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.rings-svg path {
  fill: none;
  stroke: white;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
