body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  width: 100vw;
  height: 100vh;
  background: #FF6600;
  color: #FFFFFF;
  font-family: 'Momo Trust Display', Arial, sans-serif;
  overflow: hidden;
  position: relative;
}
.clock {
  position: absolute;
  top: 40px;
  left: 60px;
  font-size: 2.2rem;
  font-weight: 500;
  letter-spacing: 1px;
  font-family: 'Roboto Mono', monospace;
}
.main {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
  width: 70vw;
  text-align: center;
}
.headline {
  font-size: 6vw;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 2vw;
  word-break: break-word;
  white-space: pre-line;
}
.subheadline {
  font-size: 2vw;
  font-weight: 400;
  margin-bottom: 1vw;
  opacity: 0.85;
}
.qr {
  position: absolute;
  bottom: 40px;
  right: 60px;
  background: #fff;
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
}
