 .notification
{
font-weight: bold;
font-family: Figtree;
font-size: 16px;
gap: 7px;
justify-content: center;
margin-bottom: 30px;
margin-top: -30px;
padding: 7px;
position: relative;
}

/*CountDown CSS*/

.countdown {
  padding: 40px 20px;
  text-align: center;
  font-family: system-ui, Arial, sans-serif;
  background: #f8fafc;
}

.cd-container {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.cd-content {
  background: #fff;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  min-width: 280px;
}

.cd-box {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 15px;
}

.cd-item {
  background: #0f172a;
  color: #fff;
  padding: 15px;
  border-radius: 10px;
  min-width: 70px;
}
.cd-item span {
  font-size: 24px;
  font-weight: bold;
  display: block;
}
.cd-item small {
  font-size: 14px;
}

/*Countdown Css End*/