
  
/*-------------------------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: 16px;
  letter-spacing: 2px; /* 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: 12px; letter-spacing: 0px; }
  .time-tag { font-size: 10px; letter-spacing: 1px; }
}
@media (max-width: 480px) {
    .time-number {
        font-size: 35px;
    }
}



/*-------------------------Smart Marquee (Auto-Scroll)-------------------------*/
.marquee-component {
  width: 100%;
  background: #f2f2f2;
  border-bottom: 1px solid #ccc;
  overflow: hidden;
}

.Amts {
  display: flex;
  align-items: center;
  padding: 10px 0;
  max-width: 1200px; /* Or your container width */
  margin: 0 auto;
  overflow: hidden;
}

.announcement-label {
  color: #da2032;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 13px;
  padding: 0 15px;
  flex-shrink: 0;
  background: #f2f2f2;
  z-index: 5;
}

.marquee-wrapper {
  flex: 1;
  overflow: hidden; /* This is the "window" */
  position: relative;
}

.marquee-content {
  display: inline-block;
  white-space: nowrap;
  padding-left: 10px;
  transition: transform 0.1s linear;
}

/* This class will be added by JS ONLY if text is too long */
.is-scrolling {
  animation: smartScroll 15s linear infinite;
}

.marquee-content:hover {
  animation-play-state: paused;
}

.marquee-content p {
  margin: 0px;
  font-size: 14px;
  font-weight: 500;
  display: block;
          width: 100%;
}

.marquee-btn {
  background-color: #EA1D25;
  color: white !important;
  padding: 4px 12px;
  border-radius: 4px;
  text-decoration: none;
  margin-left: 0px;
  font-size: 12px;
}

/* Animation that scrolls only the required distance */
@keyframes smartScroll {
  0% { transform: translateX(100%-100px); }
  100% { transform: translateX(-100%); }
}
