/**
 * Loading Screen Styles
 * Bold and playful loading animations for app initialization
 */

/* App Overlay Container */
.app-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.95);
  z-index: 99999;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loading-content {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    flex-direction: column;
    color: white;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    position: relative;
    z-index: 1;
    justify-content: space-between;
}

/* Logo */
.loading-logo {
  width: 50vw;
  margin-top: 15vh;
}

/* Text Animations */
.loading-text {
  font-size: 1.5rem;
  font-weight: 600;
}

@keyframes textColorCycle {
  0%, 100% { color: #34D8D6; }
  33% { color: #F6385C; }
  66% { color: rgb(255, 200, 88); }
}

@keyframes letterRainbow {
  0%, 100% { color: #34D8D6; }
  33% { color: #F6385C; }
  66% { color: rgb(255, 200, 88); }
}

/* Spinner Container */
.spinners-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.spinner-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.spinner-vs {
  margin: 1rem 0;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.3);
  font-weight: 600;
}

/* Loading Spinner - Bouncing Circles */
.spinner-pixels {
  display: flex;
  gap: 2vw;
  align-items: center;
  margin-bottom: 5dvh;
}

.pixel-circle {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  animation: pixelFill 1.6s ease-in-out infinite;
}

@keyframes pixelFill {
  0%, 20% { opacity: 0.3; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.2); }
  100% { opacity: 0.3; transform: scale(0.8); }
}
