body {
  margin: 0;
  padding: 0;
  background-color: #000;
  color: white;
  font-size: 14px;
  font-family: 'Arial', sans-serif;
  overflow: auto;
}
a {
  color: white;
  font-size: 14px;
}
#main {
  width: 100%;
}
#wrap {
  position: relative;
  margin: 0 auto;
  width: 1100px;
  height: 680px;
  margin-top: 10px;
}
#text {
  width: 272px;
  height: 560px;
  left: 188px;
  top: 80px;
  position: absolute;
}
#code {
  display: none;
  color: rgb(196, 255, 255);
  font-size: 16px;
  margin-top: 70px;
  line-height: 25px;
  font-size: larger;
  font-weight: bolder;
}

#countdown-message {
  text-align: center;
}

.countdown-header {
  font-size: 1.8em;
  font-weight: bold;
  background: linear-gradient(45deg, #ff6b6b, #feca57, #48dbfb, #ff9ff3);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 5s ease infinite;
  margin-bottom: 15px;
  line-height: 1.4;
}

.countdown-subtext {
  font-size: 1.1em;
  color: #feca57;
  margin-bottom: 20px;
  font-style: italic;
}

.countdown-footer {
  font-size: 1.2em;
  color: #ff9ff3;
  margin-top: 20px;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.05); }
}

#clock-box {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 20px 30px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: inline-block;
  margin: 10px 0;
}
#clock-box a {
  font-size: 28px;
  text-decoration: none;
}
#clock {
  font-size: 1.3em;
  font-weight: bold;
  letter-spacing: 1px;
  color: #ffffff;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
  font-family: 'Courier New', monospace;
}
#clock .digit {
  font-size: 1.5em;
  color: #feca57;
}
#canvas {
  margin: 0 auto;
  width: 1100px;
  height: 680px;
}
#error {
  margin: 0 auto;
  text-align: center;
  margin-top: 60px;
  display: none;
}
.hand {
  cursor: pointer;
}
.say {
  margin-left: 5px;
}
.space {
  margin-right: 150px;
}

#message-box{
  position: absolute;
  margin-top:450px;
  font-size: 25px;
  font-family: monospace;

}

.falling-heart {
    position: fixed;
    font-size: 30px;
    pointer-events: none;
    z-index: 999;
    animation: fall linear forwards;
}

@keyframes fall {
    to {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}