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

body {
  min-height: 100vh;
  background: linear-gradient(135deg, #eaecf3, #764ba2);
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: "Segoe UI", sans-serif;
  color: white;
}

/* MAIN CONTAINER */
.app-container {
  background: rgba(47, 40, 69, 0.898);
  backdrop-filter: blur(15px);
  margin-top: 60px;
  padding: 40px 30px;
  width: 360px;
  border-radius: 25px;
  text-align: center;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.35);
}

h1 {
  font-size: 2.3rem;
  margin-bottom: 25px;
}

select {
  width: 100%;
  padding: 12px 16px;
  border-radius: 30px;
  border: none;
  outline: none;
  font-size: 15px;
  cursor: pointer;
}

/* CITY CARD */
.city {
  margin-top: 30px;
  background: rgba(255, 255, 255, 0.18);
  padding: 25px;
  border-radius: 18px;
  animation: fade 0.6s ease-in-out;
}

.city h2 {
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.date {
  font-size: 0.95rem;
  opacity: 0.9;
}

.time {
  font-size: 2.6rem;
  font-weight: bold;
  margin: 12px 0;
  letter-spacing: 2px;
}

.home-link {
  display: inline-block;
  margin-top: 12px;
  color: white;
  opacity: 0.8;
  text-decoration: none;
}

.home-link:hover {
  opacity: 1;
  text-decoration: underline;
}

/* FOOTER */
footer {
  margin-top: auto;
  padding: 25px;
  font-size: 14px;
  opacity: 0.8;
}

footer a {
  color: white;
  text-decoration: underline;
}

footer a:hover {
  opacity: 1;
}

/* ANIMATION */
@keyframes fade {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

