body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f8f9fa;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}

.card {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  width: 90%;
  max-width: 500px;
}

/* Título H1 oculto para SEO pero legible por Google */
.seo-title {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.logo {
  font-size: 32px;
  letter-spacing: 5px;
  color: #333;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-weight: bold;
}

.country {
  color: #1a237e;
  font-weight: bold;
  font-size: 24px;
  margin-bottom: 10px;
}

.status {
  color: #666;
  margin-bottom: 30px;
}

/* Spinner */
.spinner {
  border: 4px solid #f3f3f3;
  border-top: 4px solid #1a237e;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
  margin: 0 auto 20px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Barra de progreso */
.progress-container {
  width: 100%;
  background-color: #eee;
  height: 4px;
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 20px;
}

.progress-bar {
  width: 0%;
  height: 100%;
  background-color: #1a237e;
  transition: width 1.5s ease-out;
}

.direct-link {
  display: block;
  margin-top: 15px;
  color: #1a237e;
  text-decoration: none;
  font-size: 14px;
}

footer {
  font-size: 12px;
  color: #aaa;
  margin-top: 25px;
}