/* Container */
#tcg-countdown {
  width: 100%;
}

/* Optional headline boven de vakjes */
#tcg-countdown .tcgcd-headline {
  margin-bottom: 10px;
  color: rgba(255,255,255,0.92);
  font-family: Inter, system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight: 400;
  font-size: 16px;
}

/* Grid met losse vakjes */
#tcg-countdown .tcgcd-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

/* Los vakje: gele glass gloed */
#tcg-countdown .tcgcd-box {
  position: relative;
  padding: 14px 12px;
  border-radius: 14px;

  /* glass + geel */
  background: rgba(255, 193, 7, 0.14);
  border: 1px solid rgba(255, 193, 7, 0.35);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);

  /* glow */
  box-shadow:
    0 0 26px rgba(255, 193, 7, 0.35),
    inset 0 0 14px rgba(255, 193, 7, 0.16);

  text-align: center;
}

/* Nummer: Outfit 800 20px wit */
#tcg-countdown .tcgcd-num {
  color: #ffffff;
  font-family: Outfit, system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight: 800;
  font-size: 20px;
  line-height: 1.1;
}

/* Label: Inter 400 16px wit */
#tcg-countdown .tcgcd-label {
  margin-top: 6px;
  color: rgba(255,255,255,0.92);
  font-family: Inter, system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.1;
}

/* Live / After teksten (ook in jouw stijl) */
#tcg-countdown .tcgcd-live,
#tcg-countdown .tcgcd-after {
  padding: 14px 18px;
  border-radius: 14px;
  background: rgba(255, 193, 7, 0.14);
  border: 1px solid rgba(255, 193, 7, 0.35);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 0 26px rgba(255, 193, 7, 0.35);
  color: #fff;
  font-family: Inter, system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight: 400;
  font-size: 16px;
  text-align: center;
}

/* Mobile: 2x2 grid */
@media (max-width: 640px) {
  #tcg-countdown .tcgcd-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
