/* General Reset */
body, html {
  margin: 0;
  padding: 0;
  font-family: 'Arial', sans-serif;
  height: 100%;
  overflow: hidden;
  background: linear-gradient(135deg, #1e90ff, #ff69b4);
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
}

/* Container */
.container {
  text-align: center;
  z-index: 2;
  animation: fadeIn 2s ease-in-out;
}

/* Text Animation */
.animated-text {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 10px;
  animation: colorChange 5s infinite;
}

/* Countdown Timer */
.countdown {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.time {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.time span {
  font-size: 2rem;
  font-weight: bold;
}

.time small {
  font-size: 1rem;
}

/* Background Animation */
body::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, rgba(0,0,0,0.2) 100%);
  z-index: 1;
  animation: backgroundMove 15s infinite;
}

/* Keyframes */
@keyframes colorChange {
  0%, 100% {
    color: #fff;
  }
  50% {
    color: #f7b42c;
  }
}

@keyframes backgroundMove {
  0% {
    transform: scale(1) translate(0, 0);
  }
  50% {
    transform: scale(1.1) translate(-20px, -20px);
  }
  100% {
    transform: scale(1) translate(0, 0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
