/* Lichtkrant stijl (simpel P2000-look) */
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  background: #000;
  font-family: Arial, Helvetica, sans-serif;
}

.wrap {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.board {
  width: min(1200px, 95vw);
  height: min(650px, 85vh);
  background: #2a0000;
  border: 8px solid #000;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}

.header {
  height: 90px;
  background: #000;
  display: flex;
  align-items: center;
  padding: 0 24px;
  gap: 18px;
  box-sizing: border-box;
}

.logo {
  width: 58px;
  height: 58px;
  border-radius: 12px;
  background: #1b0000;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #330000;
}

.logo svg {
  width: 40px;
  height: 40px;
}

.title {
  color: #fff;
  font-weight: 800;
  font-size: 46px;
  letter-spacing: 1px;
}

.content {
  padding: 34px 34px;
  box-sizing: border-box;
}

.red {
  color: #ff2a2a;
  text-shadow: 0 0 6px rgba(255, 42, 42, 0.35);
}

.clock {
  font-size: 62px;
  font-weight: 700;
}

.date {
  margin-top: 10px;
  font-size: 46px;
  opacity: 0.95;
}

.alert {
  font-size: 54px;
  font-weight: 700;
  line-height: 1.15;
  white-space: pre-wrap;
}

.smallhint {
  position: absolute;
  bottom: 10px;
  right: 16px;
  font-size: 14px;
  color: rgba(255,255,255,0.35);
}
