body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #0f0f1a, #1a1a2f);
  color: #fff;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.container {
  width: 90%;
  max-width: 800px;
  text-align: center;
  border-radius: 12px;
  padding: 20px;
  background: #1a1a2f;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  animation: fade-in 0.8s ease-out;
}

.hidden {
  display: none;
}

header h1 {
  font-size: 2rem;
  color: #4ade80;
  margin-bottom: 10px;
}

header .loading-message {
  font-size: 1rem;
  color: #ddd;
  margin-top: 8px;
  animation: blink 1.5s infinite;
}

.current-location p {
  font-size: 1.5rem;
  font-weight: 500;
  color: #ddd;
}

h3 {
  margin: 20px 0 10px;
  font-size: 1.4rem;
  color: #4ade80;
}

.card-list {
  list-style: none;
  padding: 0;
}

.card-list li {
  background: #111827;
  margin: 10px 0;
  padding: 10px 15px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  color: #ccc;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.card-list li span {
  font-size: 0.9rem;
  color: #88c0d0;
}

footer {
  margin-top: 20px;
  font-size: 0.9rem;
  color: #aaa;
}

@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}