body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #1a0b2e;
  background-image: linear-gradient(
    135deg,
    #120721 0%,
    #2f1055 50%,
    #1a0b2e 100%
  );
  font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  overflow: hidden;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
}

.blob-1 {
  width: 350px;
  height: 350px;
  background: #9b4dca;
  top: 15%;
  left: 25%;
  opacity: 0.6;
  animation: float 10s ease-in-out infinite alternate;
}

.blob-2 {
  width: 300px;
  height: 300px;
  background: #ff2a85;
  bottom: 15%;
  right: 25%;
  opacity: 0.2;
  animation: float 12s ease-in-out infinite alternate-reverse;
}

@keyframes float {
  0% {
    transform: translateY(0) scale(1);
  }
  100% {
    transform: translateY(-30px) scale(1.1);
  }
}

.clock-container {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px 60px;
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.time-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 100px;
}

.time-value,
.colon {
  font-family: "Share Tech Mono", monospace;
  font-size: 5rem;
  font-weight: normal;
  color: #ffffff;
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
  line-height: 1;
}

.colon {
  padding-bottom: 25px;
  animation: pulse 1s infinite;
}

@keyframes pulse {
  0%,
  50% {
    opacity: 1;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
  }
  51%,
  100% {
    opacity: 0.3;
    text-shadow: none;
  }
}

.time-label {
  margin-top: 15px;
  font-size: 0.85rem;
  letter-spacing: 4px;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  font-weight: 600;
}

@media (max-width: 768px) {
  .clock-container {
    padding: 30px 40px;
    gap: 15px;
  }
  .time-value,
  .colon {
    font-size: 3.5rem;
  }
  .time-block {
    min-width: 70px;
  }
  .time-label {
    font-size: 0.7rem;
    letter-spacing: 2px;
  }
}

@media (max-width: 480px) {
  .clock-container {
    padding: 20px 25px;
    gap: 10px;
  }
  .time-value,
  .colon {
    font-size: 2.5rem;
  }
  .time-block {
    min-width: 50px;
  }
  .time-label {
    font-size: 0.6rem;
    letter-spacing: 1px;
  }
}
