* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: white;
  overflow: hidden;
}

.redirect-container {
  text-align: center;
  animation: fadeIn 1s ease-in-out;
}

.card {
  background: rgba(255,255,255,0.05);
  padding: 50px;
  border-radius: 20px;
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  max-width: 500px;
}

.title {
  font-size: 32px;
  margin-bottom: 15px;
  color: #38bdf8;
}

.subtitle {
  font-size: 20px;
  margin-bottom: 10px;
  opacity: 0.9;
}

.description {
  font-size: 14px;
  opacity: 0.7;
  margin-bottom: 30px;
}

.loader {
  width: 100%;
  height: 6px;
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
}

.progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #06b6d4, #3b82f6);
  transition: width 0.2s linear;
}

.redirect-text {
  font-size: 14px;
  margin-bottom: 20px;
}

.btn {
  display: inline-block;
  padding: 12px 25px;
  background: linear-gradient(90deg, #06b6d4, #3b82f6);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 500;
  transition: 0.3s;
}

.btn:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(59,130,246,0.4);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px);}
  to { opacity: 1; transform: translateY(0);}
}
