@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&display=swap");

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

body {
  font-family: "Cinzel", serif;
  min-height: 100vh;
  background: radial-gradient(
    ellipse at 40% 30%,
    #4a2580 0%,
    #2d1b69 50%,
    #1a0f3d 100%
  );
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
}

header {
  text-align: center;
  margin-bottom: 10px;
}

footer {
  text-align: center;
  margin-top: 10px;
  font-size: 0.85rem;
  opacity: 0.7;
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  width: 100%;
  max-width: 600px;
}

.clock-card {
  background: rgba(255, 248, 235, 0.07);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 32px 48px;
  text-align: center;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.clock-card h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 0.1em;
}

.clock-card .time {
  font-size: 3rem;
  letter-spacing: 0.08em;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
}

.clock-card .date {
  font-size: 0.9rem;
  opacity: 0.75;
  margin-top: 8px;
  letter-spacing: 0.08em;
}

select {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 24px;
  padding: 12px 36px 12px 36px;
  font-family: "Cinzel", serif;
  font-size: 1rem;
  cursor: pointer;
  outline: none;
  text-align: center;
}

#home-link {
  display: inline-block;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
}

footer a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: underline;
  text-underline-offset: 3px;
}
