body {
  background: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  margin: 0;
  font-family: 'Bruno Ace', sans-serif;
  color: #099;
}

/* Watch Styling */
.watch {
  width: 300px;
  height: 300px;
  background: radial-gradient(#222, #000);
  border: 10px solid #333;
  border-radius: 50%;
  position: relative;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
  margin-bottom: 40px;
}

.brand {
  position: absolute;
  top: 20%;
  width: 100%;
  text-align: center;
  font-size: 1.2em;
  letter-spacing: 1px;
}

.hand {
  position: absolute;
  bottom: 50%;
  left: 50%;
  transform-origin: bottom center;
  transform: rotate(0deg);
  border-radius: 2px;
}

.hour {
  width: 6px;
  height: 60px;
  background: #0ff;
}

.minute {
  width: 4px;
  height: 90px;
  background: #0f0;
}

.second {
  width: 2px;
  height: 110px;
  background: #f00;
}

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

/* Footer Animation Section */
.footer {
  text-align: center;
}

.typing-text {
  font-size: 1.5em;
  white-space: nowrap;
  overflow: hidden;
  border-right: 2px solid #0ff;
  width: 0;
  animation: typing 2s steps(16) forwards, blink 0.6s step-end infinite;
}

@keyframes typing {
  from { width: 0 }
  to { width: 16ch }
}

@keyframes blink {
  50% { border-color: transparent; }
}

.progress-container {
  width: 220px;
  height: 6px;
  background: #222;
  margin: 15px auto;
  overflow: hidden;
  border-radius: 3px;
  display: none;
}

.progress-bar {
  height: 100%;
  width: 0;
  background: #0ff;
  animation: load 2s forwards;
}

@keyframes load {
  from { width: 0; }
  to { width: 100%; }
}

.final-text {
  display: none;
  font-size: 1.5em;
  animation: fadeIn 1s forwards;
  margin-top: 10px;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
