#loading {
  display: none;
  text-align: center;
  animation: fadeIn 0.3s ease;
}

#loading .brand-name {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 28px;
}

.status-text {
  color: var(--text-secondary);
  font-family: 'Lora', serif;
  font-size: 1rem;
  margin-top: 22px;
  transition: opacity 0.4s ease;
  min-height: 1.5em;
}

.timer-text {
  color: var(--text-secondary);
  font-family: 'Lora', serif;
  font-size: 0.9rem;
  margin-top: 8px;
}

.timer-circle {
  position: relative;
  width: 96px;
  height: 96px;
  margin: 20px auto 0;
}

.timer-circle svg {
  transform: rotate(-90deg);
  width: 100%;
  height: 100%;
}

.timer-track {
  fill: none;
  stroke: #e2e8f0;
  stroke-width: 5;
}

.timer-progress {
  fill: none;
  stroke: var(--primary);
  stroke-width: 5;
  stroke-linecap: round;
}

.timer-circle-value {
  position: absolute;
  top: 46%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--text);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.timer-circle-label {
  position: absolute;
  top: calc(46% + 16px);
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.55rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.timer-expired {
  display: none;
  color: var(--text-secondary);
  font-family: 'Lora', serif;
  font-size: 0.9rem;
  margin-top: 16px;
}

.status-dots .d {
  visibility: hidden;
}

.status-dots .d.visible {
  visibility: visible;
}

.pulse-dots {
  display: flex;
  gap: 7px;
  justify-content: center;
}

.pulse-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  animation: pulse 1.4s ease-in-out infinite;
}

.pulse-dots span:nth-child(2) { animation-delay: 0.25s; }
.pulse-dots span:nth-child(3) { animation-delay: 0.5s; }
