html, body {
  margin: 0;
  width: 1920px; height: 1080px;
  overflow: hidden;
  background: transparent;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.root { position: absolute; inset: 0; background: transparent; }

/* Widget — centré par défaut, tout écrasé par JS */
.timerWrap {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;

  padding: 14px 24px 16px;
  min-width: 160px;

  /* Valeurs par défaut écrasées par JS */
  background:    #eef0ff;
  border:        3px solid #12121b;
  border-radius: 18px;
  opacity:       1;

  box-shadow: 0 10px 28px rgba(0,0,0,.28);
  transition: border-color .2s, background .2s;
}

.timerLabel {
  font-size: 16px;
  font-weight: 1000;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  line-height: 1;
  color: rgba(18,18,27,.60);
}

.timerDisplay {
  font-size: 64px;
  font-weight: 1000;
  letter-spacing: .02em;
  font-variant-numeric: tabular-nums;
  line-height: 1;
  text-align: center;
  color: rgba(18,18,27,.92);
}
