#yanbot-clocks {
  display:flex;
  gap:25px;
  justify-content:center;
  flex-wrap:wrap;
  text-align:center;
  direction:rtl;
  padding:20px;
}

.clock-box {
  background: linear-gradient(145deg, #0a0a1a, #111122);
  color:#0ff;
  padding:25px;
  border-radius:16px;
  border:1px solid #0ff;
  box-shadow:0 0 25px #0ff, 0 0 50px #09f inset;
  width:280px;
  transition: transform 0.3s;
}
.clock-box:hover {
  transform: scale(1.05);
  box-shadow:0 0 35px #f0f, 0 0 60px #0ff inset;
}
.clock-box h3 {
  margin-bottom:10px;
  color:#0ff;
  text-shadow:0 0 15px #09f;
}
.clock-time {
  font-size:1.2em;
  margin-top:8px;
  margin-bottom:8px;
  font-weight:bold;
}
.clock-status {
  font-size:0.9em;
  margin-bottom:10px;
}
.ai-hint {
  font-size:0.85em;
  color:#f0f;
  text-shadow:0 0 8px #f0f;
  animation: flicker 2s infinite;
}
@keyframes flicker {
  0%, 100% { opacity:1; }
  50% { opacity:0.6; }
}

.analog-clock {
  position: relative;
  margin: 0 auto;
  width: 120px;
  height: 120px;
  border: 4px solid #0ff;
  border-radius: 50%;
  box-shadow: 0 0 20px #0ff inset, 0 0 15px #09f;
  background: radial-gradient(circle at center, #000 60%, #111 100%);
}

.hand {
  position: absolute;
  width: 50%;
  height: 2px;
  background: #0ff;
  top: 50%;
  transform-origin: 100%;
  transform: rotate(90deg);
  transition: all 0.5s ease-in-out;
}
.hand.hour { height: 4px; background: #0ff; }
.hand.minute { height: 3px; background: #09f; }
.hand.second { height: 2px; background: #f0f; }

.center-dot {
  position: absolute;
  width: 12px;
  height: 12px;
  background: #f0f;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 10px #f0f;
}