 body {
  margin: 0;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-weight: normal;
  background-color: #000;
  height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  z-index: -1;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #000;
  background: url('../images/2025/background3.webp') no-repeat center center;
  background-size: cover;
  opacity: 0.4;
  animation: zoomOut 20s ease-out forwards;
  z-index: -2;
  transform: scale(1.4);
}


@keyframes fadeInDrop {
  0% {
    transform: translate(-50%, -50px);
    opacity: 0;
  }
  100% {
    transform: translate(-50%, 0);
    opacity: 1;
  }
}

.logo {
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 15vmax;
  z-index: 1;
  animation: fadeInDrop 1.5s ease-out;
  opacity: 1;
}

h1 {
  margin: 20px 0;
  color: #FFD700;
}

.footer-content {
  position: absolute;
  bottom: 40px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
}

.countdown {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.unit {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cube {
  width: 80px;
  height: 100px;
  background: #FFD700;
  color: #000;
  font-size: 2em;
  font-weight: bold;   
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  transform-style: preserve-3d;
}

.flip {
  animation: flip 0.6s ease-in-out;
}

@keyframes flip {
  0% { transform: rotateX(0); }
  100% { transform: rotateX(360deg); }
}

.label {
  text-align: center;
  font-size: 0.8em;
  margin-top: 5px;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-bottom: 15px;
  font-weight: bold;
}

.buttons a {
  background: #FFD700;
  color: #000;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 8px;
  animation: pulse 2s infinite;
}

.archive a {
  background: #333;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 8px;
  animation: pulse 2s infinite;
  font-weight: semi-bold;
}

.main-cta {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.main-button {
  background: #ff8914;
  color: #000;
  padding: 20px 40px;
  font-size: 1.4em;
  text-decoration: none;
  border-radius: 10px;
  font-weight: bold;
  animation: pulse 2s infinite;
  text-align: center;
  display: inline-block;
}

.disabled-button {
  pointer-events: none;
}

.strikethrough {
  text-decoration: line-through;
  margin-right: 10px;
}

/* RESPONSIVE */
@media (max-width: 480px) {
  h1 {
    font-size: 1em;
    text-align: center;
    padding: 0 10px;
  }
}
@media (max-width: 768px) {
  .logo {
    width: 30vmax;
    top: 20px;
  }
  body {
    height: 80vh;
  }

  .cube {
    width: 60px;
    height: 80px;
    font-size: 1.5em;
  }

  .buttons a,
  .archive a,
  .main-button {
    padding: 8px 16px;
    font-size: 0.9em;
  }
  
}

@keyframes zoomOut {
  0% {
    transform: scale(1.4);
  }
  100% {
    transform: scale(1);
  }
}