@charset "UTF-8";
.countdown-container {
  text-align: center;
  max-width: 800px;
  width: 100%;
}

.countdown-title {
  color: #333;
  font-size: 18px;
  margin-bottom: 30px;
  font-weight: 400;
}

.countdown-wrapper {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.countdown-box {
  position: relative;
  min-width: 120px;
}

.flip-clock {
  position: relative;
  width: 100%;
  height: 110px;
  perspective: 400px;
}

/* Statikus részek */
.flip-static-top,
.flip-static-bottom {
  position: absolute;
  width: 100%;
  height: 50%;
  overflow: hidden;
}

.flip-static-top {
  top: 0;
  border-bottom: 2px solid rgba(0, 20, 40, 0.8);
}

.flip-static-bottom {
  bottom: 0;
  border-top: 1px solid rgba(0, 100, 180, 0.3);
}

.flip-static-inner {
  position: absolute;
  width: 100%;
  height: 200%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 72px;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  letter-spacing: -2px;
  border-radius: 12px;
}

.flip-static-top .flip-static-inner {
  top: 0;
  background: linear-gradient(to bottom, #252050, #1F1746);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  box-shadow: 0 -1px 0 rgba(255, 255, 255, 0.1) inset;
}

.flip-static-bottom .flip-static-inner {
  bottom: 0;
  background: linear-gradient(to bottom, #1F1746, #1A1440);
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.3) inset;
}

/* Animált flip elem - csak a felső részt takarja */
.flip-animated {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  transform-origin: 50% 100%;
  transform-style: preserve-3d;
  z-index: 5;
}

/* Flip előoldal - régi szám felső fele */
.flip-front {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  backface-visibility: hidden;
}

.flip-front-inner {
  position: absolute;
  width: 100%;
  height: 200%;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 72px;
  font-weight: 700;
  background: linear-gradient(to bottom, #252050, #1F1746);
  border-radius: 12px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  letter-spacing: -2px;
  box-shadow: 0 -1px 0 rgba(255, 255, 255, 0.1) inset;
}

/* Flip hátoldal - új szám alsó fele */
.flip-back {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  backface-visibility: hidden;
  transform: rotateX(180deg);
}

.flip-back-inner {
  position: absolute;
  width: 100%;
  height: 200%;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 72px;
  font-weight: 700;
  background: linear-gradient(to bottom, #1F1746, #1A1440);
  border-radius: 12px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  letter-spacing: -2px;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.3) inset;
}

.flip-animated.animate {
  animation: flipDown 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes flipDown {
  0% {
    transform: rotateX(0deg);
  }
  100% {
    transform: rotateX(-180deg);
  }
}
/* Középső csík */
.flip-divider {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, transparent, rgba(15, 10, 30, 0.9) 10%, rgba(15, 10, 30, 0.9) 90%, transparent);
  z-index: 10;
  transform: translateY(-1.5px);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.countdown-label {
  color: #333;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 5px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

@media (max-width: 768px) {
  .countdown-box {
    min-width: 68px;
  }
  .flip-clock {
    height: 75px;
  }
  .flip-static-inner,
  .flip-front-inner,
  .flip-back-inner {
    font-size: 42px;
    letter-spacing: -1px;
  }
  .countdown-label {
    font-size: 9px;
    margin-top: 8px;
    letter-spacing: 0.5px;
  }
  .countdown-wrapper {
    gap: 8px;
  }
}/*# sourceMappingURL=countdown.css.map */