* { box-sizing: border-box; }
html, body { height: 100%; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  color: #e7fff8;
  font-family: Arial, "Helvetica Neue", Helvetica, "Segoe UI", Roboto, sans-serif;
  background: #0f1220;
  background-image:
    radial-gradient(900px 600px at 30% 15%, #243358 0%, transparent 60%),
    radial-gradient(900px 900px at 70% 60%, #1a213f 0%, transparent 70%),
    radial-gradient(1200px 700px at 50% 120%, #141932 0%, transparent 75%);
  background-attachment: fixed;
  overflow: hidden;
  -webkit-user-select: none; user-select: none;
}

/* centrovanie scény */
.fit {
  position: fixed; inset: 0;
  display: flex; align-items: center; justify-content: center;
}

/* scéna 1280×800 – škáluje sa, nič sa neoreže */
.stage {
  width: 1280px;
  height: 800px;
  position: relative;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: 0 30px 80px rgba(0,0,0,0.45);
  transform-origin: center center;
  padding-bottom: 36px;           /* +++ bezpečný spodný okraj */
}

.row { width: 100%; text-align: center; padding: 0 40px; }

.time-row { margin-top: 60px; }   /* o trochu menší top, necháme viac miesta dole */
.time {
  font-weight: 900;
  letter-spacing: 2px;
  text-shadow: 0 0 18px rgba(0,0,0,0.5);
  font-size: 220px;
  line-height: 1;
}

.date {
  margin-top: 12px;
  font-weight: 800;
  opacity: .95;
  font-size: 86px;
}

.divider {
  width: 88%;
  margin: 22px auto;
  height: 2px;
  background: linear-gradient(90deg, rgba(255,255,255,.0), rgba(255,255,255,.28), rgba(255,255,255,.0));
}

.temps {
  display: flex; justify-content: center; gap: 120px; align-items: center;
}
.temp { display: inline-flex; align-items: center; gap: 18px; }
.icon { width: 70px; height: 70px; filter: drop-shadow(0 4px 10px rgba(0,0,0,.35)); }
.temp-val { font-weight: 900; font-size: 110px; line-height: 1; }
.unit { font-weight: 800; font-size: 64px; opacity: .9; }

.nameday { margin-top: 4px; display: inline-flex; gap: 24px; align-items: center; justify-content: center; }
.icon-lg { width: 90px; height: 90px; filter: drop-shadow(0 4px 10px rgba(0,0,0,.35)); }
.nameday-text { font-size: 96px; font-weight: 900; }

/* fullscreen tlačidlo */
.fs-btn {
  position: fixed; top: 12px; right: 12px; z-index: 10;
  font-size: 28px; line-height: 1;
  padding: 10px 14px; border-radius: 14px;
  border: 1px solid rgba(255,255,255,.35);
  background: rgba(255,255,255,.1); color: #e7fff8;
}
.fs-btn:active { transform: scale(.98); }
.fs-btn.hidden { display: none; }
