.t888-comingsoon-section{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  max-height: 800px;              
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.t888-comingsoon-section::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
}

.t888-comingsoon-content{
  position: relative;               
  text-align: center;
  color: #fff;
  padding: 40px 20px;
}

.t888-comingsoon-heading{
  font-size: clamp(28px, 6vw, 60px);
  line-height: 1.1;
  margin: 0 0 32px;
  letter-spacing: .02em;
  font-weight: 700;
}

.t888-countdown-wrapper{
  display:flex;
  justify-content:center;
  align-items:center;      
  gap: clamp(24px, 6vw, 50px);
  flex-wrap:wrap;
}

.circle{
  position: relative;
  width: 110px;
  height: 110px;
  display: grid;
  place-items: center;            
}

.progress-ring{
  position: absolute; inset: 0;
  width: 110px;
  height: 110px;
  transform: rotate(-90deg);
  overflow: visible;               
  shape-rendering: geometricPrecision;
}

.progress-ring__bg{
  fill: none;
  stroke: rgba(255,255,255,.25);
  stroke-width: 6;
}

.progress-ring__circle{
  fill: none;
  stroke: #fff;
  stroke-width: 6;
  stroke-linecap: round;
  stroke-dasharray: 327 0;          
  stroke-dashoffset: 327;           
  transition: stroke-dashoffset .3s linear;
}

.number{
  position:absolute;
  inset:0;
  display:grid;
  place-items:center;
  font-size:24px;
  font-weight:600; 
  color:#fff;
  line-height:1;
  font-variant-numeric:tabular-nums; letter-spacing:.02em;
  transform: translateY(1px);       
}

.label{
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 8px;
  color: #fff;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: .9;
  pointer-events: none;
  white-space: nowrap;
}

.t888-social{
  margin-top: clamp(20px, 4vw, 36px);
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.t888-social a{
  display: inline-grid;
  place-items: center;
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,.7);
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  transition: transform .15s ease, background-color .15s ease, border-color .15s ease;
  backdrop-filter: blur(2px);
}

.t888-social a:hover{
  transform: translateY(-1px);
  background-color: rgba(255,255,255,.12);
  border-color: #fff;
}

@media (max-width: 575.98px){
  .circle{ width: 96px; height: 96px; }               
  .progress-ring{ width: 96px; height: 96px; }     
  .number{ font-size: 20px; }
  .label{ font-size: 12px; margin-top: 6px; }
}

@media (prefers-reduced-motion: reduce){
  .progress-ring__circle{ transition: none; }
  .t888-social a{ transition: none; }
}