html {
  height: 100%;
}

body {
  margin: 0;
  min-height: 100%;
  background-color: #121212;
  background-image: url("../splash/img/light-background.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

/* Bottom branding - kept exactly as you had it */
.bottom {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translate(-50%, 0);
  max-width: 200px;
  width: auto;
  height: auto;
}

/* Center content container */
.center-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Logo image */
.splash-logo-img {
  width: 240px;
  height: 240px;
  object-fit: contain;
  margin-top: -100px;
  margin-bottom: -70px;
}

/* Typography - consistent light colors */
.splash-title {
  color: #FFFFFF;
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 8px;
  letter-spacing: -0.5px;
}

.splash-subtitle {
  color: #CCCCCC;
  font-size: 14px;
  font-weight: 400;
  margin: 0 0 32px;
  max-width: 500px;
  line-height: 1.4;
}

/* Progress bar - consistent white/opacity */
.progress-container {
  width: 200px;
  height: 3px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background: #FFFFFF;
  border-radius: 3px;
  width: 0%;
  transition: width 0.3s ease;
}

/* Mobile adjustments */
@media (max-width: 480px) {
  .splash-logo-img {
    width: 150px;
    height: 150px;
    margin-top: -80px;
    margin-bottom: -50px;
  }

  .splash-title {
    font-size: 20px;
  }

  .splash-subtitle {
    font-size: 12px;
    max-width: 300px;
  }

  .progress-container {
    width: 180px;
  }

  .bottom {
    bottom: 16px;
    max-width: 160px;
  }
}