html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow: hidden;
  /* Remove static background */
  /* background: linear-gradient(135deg, #e3e6eb 0%, #f8f9fa 100%); */
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

.time-display {
  font-weight: 200;
  color: #ffffff;
  font-size: 18vw;
  text-shadow: 0 0 8px rgba(0,0,0,0.3);
  margin-bottom: 5vh;
}

.info-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 5vh;
  text-align: center;
}

.info-label {
  font-size: 4vw;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  margin-top: 2vh;
  text-shadow: 0 0 4px rgba(0,0,0,0.2);
}

.info-value {
  font-size: 5vw;
  font-weight: 300;
  color: #fff;
  margin-top: 1vh;
  margin-bottom: 2vh;
  text-shadow: 0 0 4px rgba(0,0,0,0.2);
}

@media (min-width: 600px) {
  .info-label {
    font-size: 1.5rem;
  }
  .info-value {
    font-size: 2rem;
  }
}

.input-container {
  position: absolute;
  bottom: 5vh;
  display: flex;
  gap: 1vw;
  width: 80vw;
  max-width: 500px;
  border-radius: 50px;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  padding: 0.5em 1em;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

#destination-input {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 4vw;
  font-weight: 300;
  color: #fff;
  outline: none;
}

#destination-input::placeholder {
  color: rgba(255,255,255,0.8);
}

#set-destination {
  border: none;
  background: rgba(255,255,255,0.3);
  color: #fff;
  font-size: 4vw;
  font-weight: 400;
  border-radius: 30px;
  padding: 0.3em 0.8em;
  cursor: pointer;
  outline: none;
  transition: background 0.2s ease;
}

#set-destination:hover {
  background: rgba(255,255,255,0.5);
}

@media (min-width: 600px) {
  #destination-input, #set-destination {
    font-size: 1.2rem;
  }
}
