/* /agos/timer.css - styles only for the timer (and colored "AGOSto") */

/* Ensure nexa is used for the timer (font-face you already included in main.css) */
#timer-box {
  display: inline-block;
  text-align: center;
  margin-top: 10px;
  padding: 8px 12px;
  border-radius: 10px;
  background: rgba(240,140,80,0.65); /* semi-transparent dark backing */
  color: #fff;
  font-family: "nexa", sans-serif;
  box-shadow: 0 6px 18px rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

/* countdown number */
#count {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: .6px;
  line-height: 1;
}

/* status text under the countdown */
#status {
  font-size: 0.86rem;
  color: #e6eef8;
  margin-top: 6px;
  line-height: 1;
}

/* colored month spans (AGOSto) */
.m-a { color: #ff3b3b; }     /* rojo */
.m-g { color: #ff8a2b; }     /* naranja */
.m-o { color: #ffd24d; }     /* amarillo */
.m-s { color: #7ce36b; }     /* verde */

/* small responsive tweak so timer doesn't overflow on tiny screens */
@media (max-width: 420px) {
  #timer-box { padding: 6px 8px; }
  #count { font-size: 1rem; }
  #status { font-size: 0.8rem; }
}
