/* RESET */
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body {
  height: 100%;
  background: radial-gradient(circle at 50% 50%, #0d0d0d 0%, #000000 100%);
  color: #00ff7f;
  font-family: 'Orbitron', sans-serif;
  overflow: hidden;
  cursor: none;
}

/* PAGE LAYOUT */
.page {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 60px;
}

/* TITLE */
.top-text h1 {
  color: #00ff7f;
  font-size: clamp(30px, 4vw, 60px);
  text-shadow:
    0 0 10px #00ff7f,
    0 0 20px #00ff7f,
    0 0 40px #00ff7f;
  animation: floatText 8s ease-in-out infinite;
  transition: all 1.5s ease;
}
.top-text h1:hover {
  transform: scale(1.05) translateY(-5px);
  text-shadow:
    0 0 20px #00ff7f,
    0 0 40px #00ff7f,
    0 0 80px #00ff7f;
}

/* CLOCK CONTAINER */
.clock-wrap {
  padding: 25px 50px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  box-shadow:
    0 0 40px rgba(0, 255, 127, 0.05),
    inset 0 0 20px rgba(255, 255, 255, 0.02);
  animation: fadeIn 2s ease forwards;
  backdrop-filter: blur(6px);
}

/* CLOCK TEXT */
.clock {
  font-weight: 700;
  font-size: clamp(50px, 10vw, 180px);
  color: #00ff7f;
  text-shadow:
    0 0 15px #00ff7f,
    0 0 35px #00ff7f,
    0 0 60px #00ff7f;
  animation: floatClock 10s ease-in-out infinite;
  transition: transform 1.2s ease, text-shadow 1.2s ease;
}

.clock-wrap:hover .clock {
  transform: scale(1.03) translateY(-8px);
  text-shadow:
    0 0 25px #00ff7f,
    0 0 55px #00ff7f,
    0 0 90px #00ff7f;
}

/* ANIMATIONS */
@keyframes floatClock {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
  100% { transform: translateY(0px); }
}

@keyframes floatText {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

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

/* SMOOTH TRANSITION FOR EVERYTHING */
* {
  transition: all 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
}

/* CUSTOM CURSOR */
.cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 18px;
  height: 18px;
  background: white;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
  z-index: 9999;
  opacity: 0.9;
  box-shadow: 0 0 20px 6px rgba(255,255,255,0.25);
}
