* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body,
html {
  height: 100%;
  font-family: "Outfit", sans-serif;
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 1rem;
}

.card {
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  padding: 3rem;
  text-align: center;
  max-width: 400px;
  width: 100%;
  color: #ffffff;
  animation: fadeIn 1.2s ease-out;
}

.card h1 {
  font-size: 2rem;
  font-weight: 700;
  margin: 1rem 0;
}

.card p {
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.5;
  color: #d1d1d1;
}

.icon {
  color: #ffcc00;
  animation: bounce 2s infinite;
}

.spinner {
  margin-top: 2rem;
  border: 4px solid rgba(255, 255, 255, 0.2);
  border-top: 4px solid #ffcc00;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  animation: spin 1s linear infinite;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* Responsive */
@media (max-width: 500px) {
  .card {
    padding: 2rem;
  }

  .card h1 {
    font-size: 1.6rem;
  }

  .card p {
    font-size: 1rem;
  }
}
