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

body {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #1a1a1a;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.clock-container {
  position: relative;
  width: 500px;
  height: 500px;
}

.clock-ring {
  position: absolute;
  width: 100%;
  height: 100%;
}

.clock-ring path {
  stroke: #1a1a1a;
  stroke-width: 1;
}

.clock-center {
  position: absolute;
  width: 300px;
  height: 300px;
  left: 100px;
  top: 100px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 1s ease;
  box-shadow:
    0 0 40px rgba(0, 0, 0, 0.5),
    inset 0 0 30px rgba(0, 0, 0, 0.2);
}

.time-display {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

#current-time {
  font-size: 3em;
  font-weight: 300;
  color: white;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  letter-spacing: 2px;
}

#hex-code {
  font-size: 1.2em;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
  font-family: 'Monaco', 'Menlo', monospace;
  text-transform: uppercase;
}

.hour-label {
  position: absolute;
  font-size: 0.7em;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
  pointer-events: none;
}
