* {
  margin: 0;
}
body {
  background-image: linear-gradient(
    to top,
    #05030a,
    #0a0514,
    #0d081b,
    #0f0b22,
    #0e0e2a,
    #0d102d,
    #0b1130,
    #081333,
    #091432,
    #091532,
    #0a1531,
    #0b1630
  );
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.container {
  color: #ececec;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding: 0 20px;
}
.content {
  flex: 1;
  font-family: "Orbitron", sans-serif;
}
h1 {
  font-family: "Audiowide", sans-serif;
  font-size: 3rem;
  text-align: center;
  margin: 20px 0;
}

.select {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto;
  width: 100%;
  max-width: 800px;
}

select {
  font-family: "Orbitron", sans-serif;
  background-color: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: rgba(214, 214, 214, 0.3) 0px 1px 2px 0px,
    rgba(184, 184, 184, 0.15) 0px 1px 3px 1px;
  color: #ececec;
  letter-spacing: 1px;
  font-size: 0.9rem;
  padding: 15px 25px;
  border-radius: 10px;
  cursor: pointer;
}

select:hover {
  background: #1f3250;
  border-color: #3a5578;
}

.cities {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px 50px;
  max-width: 800px;
  margin: 30px auto;
  text-shadow: 0 0 5px rgba(0, 173, 196, 0.8),
    0 0 10px rgba(209, 123, 255, 0.25);
}

.city {
  flex: 0 0 350px;
  text-align: center;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 30px rgba(63, 232, 255, 0.14);
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  gap: 10px;
  border-radius: 15px;
}

.city h2 {
  font-size: 2rem;
}

.date {
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.time {
  font-family: "Space Mono", monospace;
  font-size: 2.3rem;
}

.selected-city {
  text-align: center;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 30px rgba(63, 232, 255, 0.14);
  padding: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  border-radius: 15px;
  width: 100%;
  max-width: 700px;
}

.selected-city h2 {
  font-size: 2rem;
}

.selected-city .date {
  margin-top: 5px;
  margin-bottom: 0;
  letter-spacing: 2px;
}

.selected-city .time {
  font-size: 2.3rem;
}

.all-cities-btn {
  text-decoration: none;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 30px rgba(63, 232, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  font-size: 0.9rem;
  color: inherit;
  transition: all 0.3 ease;
  margin: 0;
}

.all-cities-btn:hover {
  background: rgba(63, 232, 255, 0.2);
  border-color: rgba(63, 232, 255, 0.4);
}

footer {
  text-align: center;
  margin-bottom: 20px;
  font-family: monospace;
}

a {
  color: rgb(207, 187, 255);
}

@media (max-width: 768px) {
  .cities {
    gap: 20px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2.5rem;
  }

  .selected-city {
    flex-direction: column;
    justify-content: space-around;
    gap: 10px;
    padding: 20px 0;
  }

  .selected-city .date {
    margin-bottom: 15px;
  }
}
