:root{
  --bg:#0b0f14;
  --fg:rgba(255,255,255,.92);
  --muted:rgba(255,255,255,.70);
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  color:var(--fg);
  background:var(--bg);
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  display:grid;
  place-items:center;
  padding:18px;
}
.wrap{width:min(980px,100%); text-align:center}
.time{
  font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;
  font-variant-numeric:tabular-nums;
  font-weight:800;
  line-height:1;
  letter-spacing:.02em;
  font-size:clamp(64px,12vw,160px);
  margin:0;
}
.sub{
  margin-top:16px;
  display:grid;
  gap:8px;
  color:var(--muted);
  font-size:clamp(14px,2.2vw,18px);
}
.brand-corner{
  position:fixed;
  top:12px;
  left:12px;
  z-index:10;
  display:inline-flex;
  text-decoration:none;
  opacity:.55;
}

.brand-corner img{
  height:16px;   /* změň na 14px/18px podle chuti */
  width:auto;
  user-select:none;
  -webkit-user-drag:none;
}