.redirect-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(0,0,0,0.75);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
}

.redirect-box {
  background: #1c1c1c;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  max-width: 400px;
  font-family: sans-serif;
  box-shadow: 0 0 20px rgba(255,255,255,0.2);
}

.redirect-box h2 {
  margin-bottom: 10px;
}

.redirect-bar {
  margin-top: 20px;
  height: 10px;
  background: #555;
  border-radius: 10px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  background: #00ffcc;
  width: 0%;
  transition: width 1s linear;
}
