/* Splash Screen Styles - Cyberpunk Theme */

.splash-body {
  font-family: 'Orbitron', monospace;
  background: linear-gradient(135deg, #0f1021 0%, #232946 100%);
  color: #e0e0e0;
  overflow: hidden;
  height: 100vh;
  width: 100vw;
}

/* Animated Background */
.splash-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

/* Matrix Grid Background */
.matrix-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(0, 255, 247, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 255, 247, 0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
  0% { transform: translate(0, 0); }
  100% { transform: translate(50px, 50px); }
}

/* Floating Particles */
.floating-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.floating-particles::before,
.floating-particles::after {
  content: '';
  position: absolute;
  width: 2px;
  height: 2px;
  background: linear-gradient(45deg, #ff00cc, #00fff7);
  border-radius: 50%;
  animation: float 8s infinite linear;
}

.floating-particles::before {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.floating-particles::after {
  top: 60%;
  right: 15%;
  animation-delay: 4s;
}

@keyframes float {
  0% {
    transform: translateY(0px) translateX(0px);
    opacity: 0;
  }
  10% {
    opacity: 0.8;
  }
  90% {
    opacity: 0.8;
  }
  100% {
    transform: translateY(-100px) translateX(50px);
    opacity: 0;
  }
}

/* Energy Waves */
.energy-waves {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, 
    rgba(255, 0, 204, 0.1) 0%, 
    transparent 50%);
  animation: energyPulse 4s ease-in-out infinite;
}

@keyframes energyPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.6;
  }
}

/* Main Container */
.splash-container {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  padding: 2rem;
  min-width: 320px;
  min-height: 480px;
}

/* Logo Section */
.logo-section {
  text-align: center;
  margin-bottom: 4rem;
  animation: fadeInUp 1.5s ease-out;
}

.logo-container {
  position: relative;
  display: inline-block;
  margin-bottom: 2rem;
  width: 128px;
  height: 128px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.splash-logo {
  width: 128px;
  height: 128px;
  display: block;
  filter: drop-shadow(0 0 20px #00fff7);
  animation: logoGlow 3s ease-in-out infinite;
}

.logo-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, 
    rgba(0, 255, 247, 0.3) 0%, 
    rgba(255, 0, 204, 0.2) 50%, 
    transparent 70%);
  border-radius: 50%;
  animation: glowPulse 2s ease-in-out infinite;
}

@keyframes logoGlow {
  0%, 100% {
    filter: drop-shadow(0 0 20px #00fff7);
  }
  50% {
    filter: drop-shadow(0 0 30px #00fff7) drop-shadow(0 0 40px #ff00cc);
  }
}

@keyframes glowPulse {
  0%, 100% {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.8;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

.company-title {
  font-size: 3rem;
  font-weight: 700;
  color: #00fff7;
  text-shadow: 0 0 20px #00fff7, 0 0 40px #ff00cc;
  margin-bottom: 0.5rem;
  animation: titleGlow 2s ease-in-out infinite;
  letter-spacing: 3px;
}

@keyframes titleGlow {
  0%, 100% {
    text-shadow: 0 0 20px #00fff7, 0 0 40px #ff00cc;
  }
  50% {
    text-shadow: 0 0 30px #00fff7, 0 0 50px #ff00cc, 0 0 70px #ff00cc;
  }
}

.tagline {
  font-size: 1.2rem;
  color: #ff00cc;
  text-shadow: 0 0 10px #ff00cc;
  letter-spacing: 2px;
  animation: taglinePulse 3s ease-in-out infinite;
}

@keyframes taglinePulse {
  0%, 100% {
    opacity: 0.8;
  }
  50% {
    opacity: 1;
  }
}

/* Loading Section */
.loading-section {
  width: 100%;
  max-width: 500px;
  margin-bottom: 3rem;
  animation: fadeInUp 1.5s ease-out 0.5s both;
}

.loading-bar-container {
  text-align: center;
}

.loading-bar {
  position: relative;
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(0, 255, 247, 0.3);
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
}

.loading-progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: linear-gradient(90deg, 
    #00fff7 0%, 
    #ff00cc 50%, 
    #00fff7 100%);
  border-radius: 4px;
  width: 0%;
  transition: width 0.3s ease;
  box-shadow: 0 0 20px #00fff7;
  animation: progressGlow 2s ease-in-out infinite;
}

@keyframes progressGlow {
  0%, 100% {
    box-shadow: 0 0 20px #00fff7;
  }
  50% {
    box-shadow: 0 0 30px #00fff7, 0 0 40px #ff00cc;
  }
}

.loading-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(255, 255, 255, 0.3) 50%, 
    transparent 100%);
  animation: particleMove 1.5s linear infinite;
}

@keyframes particleMove {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

.loading-text {
  margin-top: 1rem;
  font-size: 1rem;
  color: #00fff7;
  text-shadow: 0 0 10px #00fff7;
  animation: textPulse 2s ease-in-out infinite;
}

@keyframes textPulse {
  0%, 100% {
    opacity: 0.7;
  }
  50% {
    opacity: 1;
  }
}

/* Status Section */
.status-section {
  text-align: center;
  margin-bottom: 2rem;
  animation: fadeInUp 1.5s ease-out 1s both;
}

.status-message {
  font-size: 0.9rem;
  color: #e0e0e0;
  margin-bottom: 0.5rem;
  min-height: 1.2em;
  text-shadow: 0 0 5px #e0e0e0;
}

.progress-percentage {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ff00cc;
  text-shadow: 0 0 15px #ff00cc;
  animation: percentageGlow 1s ease-in-out infinite;
}

@keyframes percentageGlow {
  0%, 100% {
    text-shadow: 0 0 15px #ff00cc;
  }
  50% {
    text-shadow: 0 0 25px #ff00cc, 0 0 35px #ff00cc;
  }
}

/* Skip Button */
.skip-button {
  position: absolute;
  bottom: 113px;
  transform: translateX(-50%);
  z-index: 10;
  display: none;
  background: linear-gradient(135deg, #ff00cc 0%, #00fff7 100%);
  color: #18192a;
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 25px;
  font-family: 'Orbitron', monospace;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(255, 0, 204, 0.5);
  animation: fadeInUp 1s ease-out 2s both;
}

.skip-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(255, 0, 204, 0.8);
}

.skip-button:active {
  transform: translateY(0);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.device-warning-cute {
  margin: 1.5rem auto 0 auto;
  padding: 0.75rem 1.5rem;
  background: rgba(20, 22, 40, 0.85);
  border: 1.5px solid #ff00cc;
  border-radius: 12px;
  color: #ffb300;
  font-size: 1.05rem;
  font-family: 'Orbitron', monospace;
  box-shadow: 0 0 16px #ff00cc44, 0 0 32px #00fff744;
  text-align: center;
  letter-spacing: 1px;
  display: inline-block;
  animation: fadeInUp 1.2s 0.7s both;
  z-index: 20;
}
.device-warning-icon {
  font-size: 1.2em;
  margin-right: 0.5em;
  vertical-align: middle;
}

/* Responsive Design */
@media (max-width: 768px) {
  .company-title {
    font-size: 2rem;
    letter-spacing: 2px;
  }
  
  .tagline {
    font-size: 1rem;
    letter-spacing: 1px;
  }
  
  .splash-logo {
    width: 80px;
    height: 80px;
  }
  
  .logo-glow {
    width: 100px;
    height: 100px;
  }
  
  .loading-section {
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .company-title {
    font-size: 1.5rem;
    letter-spacing: 1px;
  }
  
  .tagline {
    font-size: 0.9rem;
  }
  
  .splash-logo {
    width: 60px;
    height: 60px;
  }
  
  .logo-glow {
    width: 80px;
    height: 80px;
  }
  
  .loading-section {
    max-width: 250px;
  }
  
  .skip-button {
    padding: 0.6rem 1.5rem;
    font-size: 0.8rem;
  }
} 

@media (max-width: 600px) {
  .device-warning-cute {
    font-size: 0.95rem;
    padding: 0.6rem 0.7rem;
  }
} 