body, html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  font-family: Arial, sans-serif;
  background: #0a0a1a;
  color: #fff;
}
#bgCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.overlay {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  text-align: center;
}
.content {
  background: rgba(0, 0, 30, 0.7);
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 0 20px #00f, 0 0 40px #0ff;
  max-width: 600px;
  width: 90%;
}
.logo {
  width: 220px;
  margin-bottom: 10px;
  filter: drop-shadow(0 0 10px #00f) drop-shadow(0 0 20px #0ff);
  animation: glow 2s ease-in-out infinite alternate;
}
.subtitle {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #0ff;
  text-shadow: 0 0 15px #0ff, 0 0 10px #00f;
  animation: glow 2s ease-in-out infinite alternate;
}
@keyframes glow {
  from { filter: drop-shadow(0 0 10px #00f) drop-shadow(0 0 20px #0ff); }
  to { filter: drop-shadow(0 0 25px #0ff) drop-shadow(0 0 45px #0ff); }
}
.typing-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.typing-text, .typing-text2 {
  font-size: 1.1rem;
  margin: 10px auto;
  color: #0ff;
  text-shadow: 0 0 10px #0ff;
  overflow: hidden;
  border-right: 2px solid #0ff;
  display: inline-block;
  max-width: 90%;
  text-align: center;
}
.typing-text {
  animation: typing 6s steps(80, end) forwards, blink 0.7s infinite;
}
.typing-text2 {
  animation: typing2 6s steps(80, end) forwards 7s, blink 0.7s infinite 7s;
}
@keyframes typing {
  from { width: 0; }
  to { width: 100%; }
}


}
@keyframes blink {
  50% { border-color: transparent; }
}
.progress-container {
  width: 100%;
  max-width: 400px;
  height: 15px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  margin: 20px auto 10px auto;
  overflow: hidden;
}
.progress-bar {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #00f, #0ff);
}
#counter {
  font-size: 1.2rem;
  color: #0ff;
  text-shadow: 0 0 10px #0ff, 0 0 20px #00f;
  margin-bottom: 15px;
}
.spinner {
  border: 6px solid rgba(255,255,255,0.2);
  border-top: 6px solid #0ff;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  margin: 10px auto 0;
  animation: spin 2s linear infinite;
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
