/* ========== splash.css - Quiz ACF SRD ========== */
/* ========================================
   PHASE 4: SPLASH SCREEN STYLES
   ======================================== */
#splash-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0a1628 0%, #1A4D8F 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  overflow: hidden;
}

#splash-screen .splash-logo {
  width: 180px;
  height: auto;
  animation: logoPulse 2s ease-in-out infinite;
  filter: drop-shadow(0 0 30px rgba(26, 77, 143, 0.6));
  margin-bottom: 30px;
}

#splash-screen .splash-text {
  font-family: var(--font-title);
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeSlideUp 1s ease-out forwards;
  margin-bottom: 40px;
  text-align: center;
}

#splash-screen .splash-loading {
  width: 200px;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
  position: relative;
}

#splash-screen .splash-loading-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 3px;
  animation: shimmer 2s infinite;
  background-size: 200% 100%;
}

#splash-screen .splash-loading-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin-top: 15px;
  animation: float 3s ease-in-out infinite;
}

.splash-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  overflow: hidden;
}

.splash-particle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  animation: particleFloat 8s ease-in-out infinite;
}

.splash-particle:nth-child(1) {
  left: 10%;
  top: 20%;
  animation-delay: 0s;
}

.splash-particle:nth-child(2) {
  left: 20%;
  top: 60%;
  animation-delay: 1s;
}

.splash-particle:nth-child(3) {
  left: 30%;
  top: 40%;
  animation-delay: 2s;
}

.splash-particle:nth-child(4) {
  left: 50%;
  top: 80%;
  animation-delay: 0.5s;
}

.splash-particle:nth-child(5) {
  left: 70%;
  top: 30%;
  animation-delay: 1.5s;
}

.splash-particle:nth-child(6) {
  left: 80%;
  top: 70%;
  animation-delay: 2.5s;
}

.splash-particle:nth-child(7) {
  left: 90%;
  top: 50%;
  animation-delay: 3s;
}

.splash-particle:nth-child(8) {
  left: 40%;
  top: 10%;
  animation-delay: 0.8s;
}

.splash-star {
  position: absolute;
  font-size: 1.5rem;
  opacity: 0.3;
  animation: float 6s ease-in-out infinite;
}

.splash-star:nth-child(9) {
  left: 5%;
  top: 15%;
  animation-delay: 0s;
}

.splash-star:nth-child(10) {
  left: 85%;
  top: 25%;
  animation-delay: 1s;
}

.splash-star:nth-child(11) {
  left: 15%;
  top: 85%;
  animation-delay: 2s;
}

.splash-star:nth-child(12) {
  left: 75%;
  top: 75%;
  animation-delay: 3s;
}

