/* Preview-only: let the sky replace the splash's fixed background, and style the time dial. */
.splash { background: none; }
.splash::after { z-index: 0; }

.dial {
  position: fixed;
  right: 12px;
  bottom: 12px;
  z-index: 50;
  width: min(330px, calc(100% - 24px));
  padding: 10px 14px 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(12, 18, 18, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #DCEAE6;
  font-family: var(--font-body);
}
.dial__readout { display: flex; justify-content: space-between; font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; }
#dial-time { color: #00E5D1; font-variant-numeric: tabular-nums; }
#dial-phase { color: #DD8668; }
#dial-range { width: 100%; margin: 8px 0; accent-color: #2FB6A8; }
.dial__buttons { display: flex; flex-wrap: wrap; gap: 6px; }
.dial__buttons button {
  padding: 0.35em 0.7em;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.04);
  color: #DCEAE6;
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
}
.dial__buttons button:hover { border-color: #2FB6A8; }
.dial__buttons button[aria-pressed="true"] { border-color: #00E5D1; color: #00E5D1; }
@media (max-width: 700px) {                 /* phones: a slim bar at the very bottom */
  .dial { left: 12px; right: 12px; width: auto; padding: 8px 10px; }
  .dial__buttons button { font-size: 0.66rem; padding: 0.3em 0.5em; }
}
.dial__back { margin-left: auto; align-self: center; font-size: 0.72rem; color: #DCEAE6; opacity: 0.75; }
.dial__back:hover { opacity: 1; color: #00E5D1; }
