/* === countdown.css === */

.circle-timer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 1000px;
  margin: 40px auto;
  font-family: 'Segoe UI', sans-serif;
  width: 90%;
}
.timer-unit {
  flex: 1 1 22%;
  max-width: 22%;
  min-width: 120px;
  display: flex;
  justify-content: center;
}
.circle-container {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  max-width: 150px;
}
.circle-container svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}
circle.bg {
  fill: none;
  stroke: #eee;
  stroke-width: 10;
}
circle.progress {
  fill: none;
  stroke: #bf1f1f;
  stroke-width: 10;
  stroke-dasharray: 339.292;
  stroke-dashoffset: 339.292;
  transition: stroke-dashoffset 0.5s ease;
}
.centered {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.time {
  font-size: 2em;
  font-weight: bold;
  color: #bf1f1f;
  line-height: 1;
}
.label {
  font-size: 1em;
  font-weight: 600;
  color: #555;
  margin-top: 5px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .timer-unit {
    flex: 1 1 45%;
    max-width: 45%;
  }
  .circle-container {
    max-width: 200px;
  }
}
@media (max-width: 480px) {
  .timer-unit {
    flex: 1 1 45%;
    max-width: 45%;
  }
  .circle-container {
    max-width: 180px;
  }
}
.mutlu-gun {
  text-align: center;
  font-size: 2.5em;
  color: #bf1f1f;
  font-weight: bold;
  padding: 40px 10px;
  animation: fadeIn 1s ease-in-out;
}
@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}
/* === CLS Önleyici CSS === */
#countdown {
  min-height: 900px; /* Sayfa boş görünmesin diye yaklaşık yüksekliği önceden ayarladık */
  display: block;
  position: relative;
}

#countdown .circle-timer {
  min-height: 240px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

#natural-remaining,
#motivation-message,
#detailed-breakdown,
#extra-info-box,
#faq {
  min-height: 60px;
}

#detailed-breakdown {
  min-height: 200px;
}

#extra-info-box {
  min-height: 250px;
}

#faq {
  min-height: 100px;
}