/* Hide scrollbars during app load */
html, body {
  margin: 0;
  padding: 0;
  overflow: hidden;
  width: 100%;
  height: 100%;
  background-color: transparent;
}

/* Hide scrollbars for webkit browsers (Chrome, Edge, Safari) */
::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbars for Firefox */
html {
  scrollbar-width: none;
}

.container {
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: #000000;
  animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.indicator {
  width: 140px;
  height: 140px;
  margin-bottom: 48px;
}

/* Segment Blocks Progress Indicator */
.progress-segments {
  display: flex;
  gap: 8px;
}

.progress-segment {
  width: 40px;
  height: 5px;
  border-radius: 3px;
  background-color: #2A2A2C;
  position: relative;
  overflow: hidden;
}

.progress-segment::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, #667EFF, #6FA0FF);
  border-radius: 2px;
}

.progress-segment:nth-child(1)::after { animation: segmentFill 3s ease-out 0s forwards; }
.progress-segment:nth-child(2)::after { animation: segmentFill 3s ease-out 3s forwards; }
.progress-segment:nth-child(3)::after { animation: segmentFill 3s ease-out 6s forwards; }
.progress-segment:nth-child(4)::after { animation: segmentFill 3s ease-out 9s forwards; }
.progress-segment:nth-child(5)::after { animation: segmentFill 3s ease-out 12s forwards; }

@keyframes segmentFill {
  0% { width: 0; }
  100% { width: 100%; }
}