/* ── CLOCK SHELL ── */
.clock-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  z-index: 10;
}

.clock-title {
  color: #00b4d8;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.clock {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: #0d1117;
  border: 5px solid #30363d;
  box-shadow:
    0 0 0 2px #0d1117,
    0 0 0 4px #21262d,
    0 10px 30px rgba(0, 0, 0, 0.6);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── FACE ── */
.face {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #0d1117;
}

/* ── LANGUAGE LABELS ── */
.lang-label {
  position: absolute;
  font-size: 10px;
  font-weight: 700;
  text-align: center;
  transform: translate(-50%, -50%);
  z-index: 5;
  white-space: nowrap;
  pointer-events: none;
  line-height: 1.1;
  letter-spacing: 0.03em;
}

/* ── TICK MARKS ── */
.tick {
  position: absolute;
  border-radius: 1px;
  transform-origin: center bottom;
}

/* ── HANDS ── */
.hand {
  position: absolute;
  bottom: 50%;
  left: 50%;
  transform-origin: bottom center;
  border-radius: 4px 4px 0 0;
}

.hand-hour {
  width: 4px;
  height: 60px;
  background: #c9d1d9;
  margin-left: -2px;
}

.hand-minute {
  width: 3px;
  height: 85px;
  background: #c9d1d9;
  margin-left: -1.5px;
}

.hand-second {
  width: 2px;
  height: 95px;
  background: #00b4d8;
  margin-left: -1px;
  box-shadow: 0 0 6px #58a6ff88;
}

/* ── CENTER DOT ── */
.center-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #00b4d8;
  box-shadow: 0 0 10px #58a6ff99;
  position: absolute;
  z-index: 20;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* ── DIGITAL TIME & DATE ── */
.digital-time {
  color: #00b4d8;
  font-size: 26px;
  font-weight: 300;
  letter-spacing: 0.15em;
  font-variant-numeric: tabular-nums;
  margin-top: 5px;
}

.digital-date {
  color: #00b4d8;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-align: center;
  margin-top: -8px;
}

/* ── RESPONSIVE: Hide on Mobile ── */
@media (max-width: 1024px) {
  .hero-middle {
    display: none !important;
  }
}
