/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
  min-height: 100vh;
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.container {
  width: 100%;
  padding: 20px;
}

.card {
  max-width: 500px;
  margin: auto;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(10px);
}

.card h1 {
  font-size: 2rem;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
}

.subtitle {
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 30px;
}

/* Loader Animation */
.loader {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 25px;
}

.loader span {
  width: 10px;
  height: 10px;
  background: #fff;
  border-radius: 50%;
  animation: bounce 1.4s infinite ease-in-out both;
}

.loader span:nth-child(1) {
  animation-delay: -0.32s;
}
.loader span:nth-child(2) {
  animation-delay: -0.16s;
}

@keyframes bounce {
  0%, 80%, 100% {
    transform: scale(0);
  }
  40% {
    transform: scale(1);
  }
}

.notify {
  font-size: 0.9rem;
  opacity: 0.9;
  margin-bottom: 20px;
}

.notify a {
  color: #4fd1c5;
  text-decoration: none;
  font-weight: 500;
}

.notify a:hover {
  text-decoration: underline;
}

footer small {
  font-size: 0.75rem;
  opacity: 0.7;
}
