body {
  background: linear-gradient(135deg, #89f7fe, #66a6ff);
  font-family: "Poppins", sans-serif;
  color: #222;
  margin: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  max-width: 600px;
  width: 90%;
  background: rgba(255, 255, 255, 0.95);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(6px);
  animation: fadeIn 0.8s ease-out;
}

h1 {
  text-align: center;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #1a365d;
  text-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

select {
  display: block;
  width: 100%;
  font-size: 18px;
  border-radius: 12px;
  padding: 12px 16px;
  border: 2px solid #66a6ff;
  background: #f9fcff;
  transition: all 0.3s ease;
  cursor: pointer;
}

select:hover {
  background: #e6f0ff;
  border-color: #1a73e8;
}

.city {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 25px 0;
  padding: 25px 0;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, background 0.3s ease;
  border-radius: 12px;
}

.city:hover {
  background: rgba(102, 166, 255, 0.05);
  transform: translateY(-4px);
}

.city:last-child {
  border: none;
}

.date {
  opacity: 0.7;
  font-size: 16px;
}

.time {
  font-size: 48px;
  font-weight: 600;
  color: #1a365d;
  text-align: right;
}

.time small {
  font-size: 20px;
  vertical-align: super;
  opacity: 0.8;
}

footer {
  text-align: center;
  margin-top: 30px;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.7);
}

footer a {
  color: #1a73e8;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #0b5ed7;
}

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