html {
  height: 100%
}

body {
  margin: 0;
  min-height: 100%;
  background-color: #06403e;
  background-size: 100% 100%;
  justify-content: center;
  align-items: center;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  min-height: 100vh;
  display: flex;
}

.center {
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.contain {
  display:block;
  width:100%; height:100%;
  object-fit: contain;
}

.stretch {
  display:block;
  width:100%; height:100%;
}

.cover {
  display:block;
  width:100%; height:100%;
  object-fit: cover;
}

.bottom {
  position: absolute;
  bottom: 0;
  left: 50%;
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}

.bottomLeft {
  position: absolute;
  bottom: 0;
  left: 0;
}

.bottomRight {
  position: absolute;
  bottom: 0;
  right: 0;
}


#splash {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.logo-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: logoFloat 3s ease-in-out infinite;
}

.center {
  width: 200px;
  height: 200px;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.2));
}

.progress-container {
  position: relative;
  width: 240px;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 60px;
  background: linear-gradient(90deg, 
      transparent 0%, 
      rgba(255, 255, 255, 0.8) 50%, 
      transparent 100%);
  border-radius: 2px;
  animation: slideRightLeft 2s ease-in-out infinite;
}

.loading-text {
  color: white;
  font-size: 14px;
  font-weight: 500;
  opacity: 0.8;
  animation: pulse 2s ease-in-out infinite;
  letter-spacing: 0.5px;
}

@keyframes slideRightLeft {
  0% {
      transform: translateX(-60px);
  }
  50% {
      transform: translateX(240px);
  }
  100% {
      transform: translateX(-60px);
  }
}

@keyframes logoFloat {
  0%, 100% {
      transform: translateY(0px);
  }
  50% {
      transform: translateY(-8px);
  }
}

@keyframes pulse {
  0%, 100% {
      opacity: 0.6;
  }
  50% {
      opacity: 1;
  }
}

/* Responsive design */
@media (max-width: 480px) {
  .center {
      width: 150px;
      height: 150px;
  }
  
  .progress-container {
      width: 180px;
  }
  
  @keyframes slideRightLeft {
      0% {
          transform: translateX(-60px);
      }
      50% {
          transform: translateX(180px);
      }
      100% {
          transform: translateX(-60px);
      }
  }
}