
  
/*-------------------------Premium Countdown Styling-------------------------*/
.premium-countdown {
  padding: 40px 20px;
  /* Deep Purple Gradient matching your screenshot */
  background: linear-gradient(135deg, #240b36 0%, #001b4f 100%);
  width: 100%;
  color: #ffffff;
  font-family: 'Inter', sans-serif; /* Use a clean modern font */
  text-align: center;
}

.countdown-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
}

.clock-icon {
          display: none;
  width: 30px;
  height: 30px;
  border: 2.5px dashed #40e0d0; /* Teal/Cyan accent from image */
  border-radius: 50%;
  position: relative;
}

.clock-icon::after {
  content: '';
  position: absolute;
  width: 10px;
  height: 2px;
  background: #40e0d0;
  top: 50%;
  left: 50%;
  transform-origin: left;
  transform: rotate(-45deg);
}

.countdown-label {
  font-size: 18px;
  letter-spacing: 4px; /* Wide spacing for that "Modern" look */
  font-weight: 600;
          text-transform: uppercase;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
}

.premium-grid {
  display: flex;
  justify-content: center;
  gap: 60px; /* Large spacing between units */
}

.time-number {
  display: block;
  font-size: 70px; /* Large hero numbers */
  font-weight: 800;
  line-height: 1;
  letter-spacing: 2px;
}

.time-tag {
    font-size: 16px;
    letter-spacing: 3px;
    margin-top: 0px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
}

/* Optional Highlight for the ticking seconds */
.highlight {
  color: #ffffff;
  text-shadow: 0 0 20px rgba(64, 224, 208, 0.3);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {
          .countdown-header {margin-bottom: 10px;}
}
@media (max-width: 991px) {
  .premium-grid { gap: 30px; }
  .time-number { font-size: 70px; }
}

@media (max-width: 600px) {
  .premium-countdown { padding: 30px 10px !important; }
  .premium-grid { gap: 15px; }
  .time-number { font-size: 45px; }
  .countdown-label { font-size: 14px; letter-spacing: 2px; }
  .time-tag { font-size: 10px; letter-spacing: 1px; }
}
@media (max-width: 480px) {
    .time-number {
        font-size: 35px;
    }
}