/* ===== PAGE LAYOUT ===== */
body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  background: #111;
  font-family: Arial, sans-serif;
  padding: 20px;
}

/* ===== CLOCK BOX ===== */
#clock {
  font-size: 60px;
  color: #00ff88;
  background: #222;
  padding: 20px 40px;
  border-radius: 15px;
  box-shadow: 0 0 20px #00ff88;
  text-align: center;
  word-break: break-word;
}

/* ===== MOBILE RESPONSIVENESS ===== */
@media (max-width: 600px) {
  #clock {
    font-size: 40px;
    padding: 15px 25px;
  }
}

@media (max-width: 400px) {
  #clock {
    font-size: 30px;
    padding: 12px 20px;
  }
}
