@import url("client.css");

html,
body {
    margin: 0;
    height: 100%
}

#splash-container {
    position: relative;
    /* как Stack */
    width: 100%;
    height: 100%;
}

.splash-image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* строго по центру */
  max-width: 80vw;   /* адаптив */
  max-height: 40vh;
  height: auto;
}

#loading {
  position: absolute;
  top: calc(50% + 30%); /* смещение ниже центра */
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  width: 60%;
  max-width: 90px;
}

.progress-bar {
  width: 100%;
  height: 6px;
  background: rgba(128, 128, 128, 0.2);
  border-radius: 6px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  width: 0%;
  background: #808080;
  transition: width 0.3s ease;
}

.progress-text {
  margin-top: 12px;
  font-size: 12px;
  font-weight: 400;
  color: #333;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  letter-spacing: -0.2px;
}