body, html {
  margin: 0;
  padding: 0;
  overflow: hidden;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(120deg, #0f2027 0%, #2c5364 100%);
  font-family: 'Montserrat', Arial, sans-serif;
}

#container {
  position: absolute;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: 1;
}

.centered-text {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  text-shadow: 0 0 18px #00f0ff, 0 0 40px #0077ff, 0 0 2px #fff;
  letter-spacing: 2px;
  animation: floatText 3s ease-in-out infinite alternate;
}

@keyframes floatText {
  from { transform: translate(-50%, -50%) scale(1); }
  to   { transform: translate(-50%, -52%) scale(1.03); }
}

.centered-text h1 {
  font-size: 2.7em;
  font-weight: 800;
  letter-spacing: 3px;
  margin-bottom: 0.2em;
  background: linear-gradient(90deg, #00f0ff 30%, #fff 60%, #0077ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.centered-text p {
  font-size: 1.2em;
  color: #e0f7fa;
  margin-top: 0.5em;
  text-shadow: 0 0 8px #00f0ff99;
}

.loading-wrapper {
  position: absolute;
  top: 70%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  width: 350px;
  text-align: center;
  background: none;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
  border: none;
  backdrop-filter: none;
}

.loading-bar-bg {
  width: 100%;
  height: 22px;
  background: linear-gradient(90deg, #232526 0%, #414345 100%);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 18px #00f0ff55;
  margin-bottom: 10px;
  border: 1.2px solid #00f0ff33;
}

.loading-bar-fill {
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, #00f0ff 0%, #fff 60%, #0077ff 100%);
  border-radius: 12px 0 0 12px;
  transition: width 0.5s;
  box-shadow: 0 0 18px #00f0ff99;
}

.loading-text {
  color: #fff;
  font-size: 1.1em;
  text-shadow: 0 0 8px #00f0ff, 0 0 2px #fff;
  letter-spacing: 1px;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-top: 2px;
  font-weight: 600;
  text-transform: uppercase;
} 