body {
  margin: 0;
  padding: 0;
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #000000 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  font-family: "Arial", sans-serif;
}

.clock-container {
  position: relative;
  width: 400px;
  height: 400px;
  background: linear-gradient(145deg, #2a2a2a, #0a0a0a);
  border-radius: 50%;
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.8), 20px 20px 40px rgba(0, 0, 0, 0.5),
    -20px -20px 40px rgba(255, 255, 255, 0.02),
    inset 8px 8px 16px rgba(0, 0, 0, 0.3),
    inset -8px -8px 16px rgba(255, 255, 255, 0.03);
  display: flex;
  justify-content: center;
  align-items: center;
}

.clock-face {
  position: relative;
  width: 360px;
  height: 360px;
  background: radial-gradient(
      circle at 30% 30%,
      rgba(255, 255, 255, 0.05) 0%,
      transparent 50%
    ),
    repeating-linear-gradient(
      0deg,
      #1a1a1a 0px,
      #0f0f0f 1px,
      #1a1a1a 2px,
      #0f0f0f 3px
    ),
    repeating-linear-gradient(
      90deg,
      #1a1a1a 0px,
      #0f0f0f 1px,
      #1a1a1a 2px,
      #0f0f0f 3px
    ),
    linear-gradient(145deg, #1f1f1f, #0a0a0a);
  border-radius: 50%;
  box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.5),
    inset 0 0 20px rgba(0, 0, 0, 0.8), 0 0 30px rgba(0, 0, 0, 0.3);
}

.dial {
  position: absolute;
  inset: 0;
  border-radius: 50%;
}

.tick {
  position: absolute;
  left: 50%;
  top: 0;
  transform-origin: 50% 180px; /* Half of clock face height for center rotation */
  border-radius: 1px;
}

.tick.minute {
  width: 2px;
  height: 15px;
  background: linear-gradient(to bottom, #8b98a5, #6b7885);
  margin-left: -1px;
  opacity: 0.6;
}

.tick.hour {
  width: 4px;
  height: 25px;
  background: linear-gradient(to bottom, #d8d8d8, #b8b8b8, #d8d8d8);
  margin-left: -2px;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.3),
    inset 0 1px 1px rgba(255, 255, 255, 0.2);
}

.number {
  position: absolute;
  font-size: 28px;
  font-weight: bold;
  color: #d0d0d0;
  text-shadow: 0 0 10px rgba(208, 208, 208, 0.5), 2px 2px 4px rgba(0, 0, 0, 0.8);
  transform: translate(-50%, -50%);
  user-select: none;
  z-index: 5;
}

.hand {
  position: absolute;
  left: 50%;
  bottom: 50%;
  transform-origin: bottom center;
  border-radius: 4px;
  z-index: 6;
}

.hour-hand {
  width: 8px;
  height: 80px;
  background: linear-gradient(to top, #a0a0a0, #d0d0d0, #a0a0a0);
  margin-left: -4px;
  box-shadow: 0 0 15px rgba(192, 192, 192, 0.4), 2px 0 6px rgba(0, 0, 0, 0.8),
    inset 0 0 0 1px rgba(255, 255, 255, 0.3);
  border-radius: 4px 4px 2px 2px;
}

.minute-hand {
  width: 6px;
  height: 120px;
  background: linear-gradient(to top, #a0a0a0, #d0d0d0, #a0a0a0);
  margin-left: -3px;
  box-shadow: 0 0 15px rgba(192, 192, 192, 0.4), 2px 0 6px rgba(0, 0, 0, 0.8),
    inset 0 0 0 1px rgba(255, 255, 255, 0.3);
  border-radius: 3px 3px 1.5px 1.5px;
}

.second-hand {
  width: 2px;
  height: 130px;
  background: linear-gradient(to top, #c0c0c0, #ffffff, #c0c0c0);
  margin-left: -1px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.6), 1px 0 3px rgba(0, 0, 0, 0.8);
  border-radius: 1px;
}

.center-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  background: radial-gradient(circle, #e0e0e0, #a0a0a0);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 20px rgba(224, 224, 224, 0.5),
    inset 0 0 5px rgba(255, 255, 255, 0.4), inset 0 0 10px rgba(0, 0, 0, 0.3);
  z-index: 10;
}

.digital-time {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 16px;
  color: #d0d0d0;
  background: rgba(0, 0, 0, 0.8);
  padding: 8px 15px;
  border-radius: 20px;
  border: 1px solid rgba(192, 192, 192, 0.3);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.8),
    inset 0 1px 1px rgba(255, 255, 255, 0.1);
  font-weight: bold;
  backdrop-filter: blur(10px);
  z-index: 7;
}

.brand {
  position: absolute;
  top: 100px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 18px;
  font-weight: bold;
  color: #b0b0b0;
  text-shadow: 0 0 8px rgba(176, 176, 176, 0.4), 2px 2px 4px rgba(0, 0, 0, 0.8);
  font-family: "Arial", sans-serif;
  letter-spacing: 2px;
  z-index: 7;
}

.reflection {
  position: absolute;
  top: 20px;
  left: 50px;
  width: 100px;
  height: 100px;
  background: radial-gradient(
    ellipse,
    rgba(255, 255, 255, 0.08) 0%,
    transparent 70%
  );
  border-radius: 50%;
  transform: rotate(-20deg);
}

.rim-accent {
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  border: 1px solid rgba(192, 192, 192, 0.2);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
