/* WCDC styling – purple #3B2058 and gold #C8A038 */
.wcdc-info {
  margin-top: 1.75em;
  margin-bottom: 1.5em;
  font-family: 'Courier New', monospace;
  font-size: 1rem;
  line-height: 1.4;
  color: #3B2058;
}
.wcdc-msg,
.wcdc-lead {
  display: block;
  margin-bottom: 0.25em;
  color: #3B2058;
}
.wcdc-countdown {
  display: inline-block;
  padding: 0.45em 0.9em;
  border-radius: 6px;
  background: #3B2058;
  color: #C8A038;
  letter-spacing: 0.06em;
  font-weight: 700;
  box-shadow: 0 0 6px rgba(59,32,88,0.8);
  animation: tick 1s steps(1,end) infinite;
}
@keyframes tick {
  0% { filter: brightness(1); }
  50% { filter: brightness(1.35); transform: translateY(-1px); }
  100% { filter: brightness(1); transform: translateY(0); }
}
.wcdc-weekend {
  font-weight: 700;
  background: #3B2058;
  color: #C8A038;
  padding: 0.7em 1.1em;
  border-radius: 6px;
  text-align: center;
  box-shadow: 0 0 6px rgba(59,32,88,0.8);
}
