/* ===== Flip Countdown Dark Metallic Banner Style ===== */
.flip-clock-container {
  text-align: center;
  font-family: 'Arial', sans-serif;
  color: #f5f5f5;
  padding: 10px 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

}


/* Center title */
.flip-title {
  font-size: 2rem;
  margin-bottom: 25px;
  letter-spacing: 2px;
  color: #f5f5f5;
}

/* Countdown layout */
.flip-clock {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
}

/* === Panel Box === */
.flip-clock__card {
  position: relative;
  width: 100px;
  height: 100px;
  background: linear-gradient(to bottom, #ffffff 0%, #c8c8c8 50%, #999 100%);
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
  overflow: hidden;
  border: 1px solid #000;
}

/* divider line in the middle */
.flip-clock__card::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(0,0,0,0.6);
}

/* digits centered perfectly */
.flip-clock__card span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  width: 100%;
  text-align: center;
  font-size: 3.8rem;
  font-weight: bold;
  color: #000;
  line-height: 1;
  backface-visibility: hidden;
}

/* Label text under each card */
.label {
  color: #cfcfcf;
  font-size: 1.2rem;
  margin-top: 12px;
  font-weight: bold;
  letter-spacing: 1px;
}

/* Footer text */
.flip-footer {
  color: #e66b00;
  font-size: 1rem;
  margin-top: 25px;
  letter-spacing: 1px;
}

/* Responsive tweak */
@media (max-width: 768px) {
  .flip-clock__card {
    width: 70px;
    height: 90px;
  }

  .flip-clock__card span {
    font-size: 2.4rem;
  }

  .flip-clock {
    gap: 15px;
  }
}

/* === FORCE countdown banner to escape Genesis container === */
.countdown-banner {
    width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
    background: #111 !important;
    padding: 5px 0 !important;   /* <<< WAS 50px — now smaller */
    text-align: center;
    position: relative;
    z-index: 99;
}


/* Keep the countdown centered inside the full-width banner */
.countdown-banner .flip-clock-container {
    margin: 0 auto;
    width: max-content;
}

.flip-main-title {
    font-size: 2.3rem;
    color: #f9302e; /* NICABM pinkish/red */
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 15px;
    margin-top: 5px;
}

