/* Styles for the static loading splash and the device helpers injected by
   scripts/patch-merge-play.py. The CSP for /merge/play/* has style-src
   'self', so these rules cannot live in style attributes. React replaces
   the splash when the app mounts. */
.site-splash {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  background: #F4ECDC;
  color: #4A2F1E;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.05rem;
  text-align: center;
}
.site-splash a { color: #6B8F4A; }

/* rotate hint: shown by device.js on short landscape phone viewports */
.device-rotate-hint {
  position: fixed;
  left: 50%;
  bottom: 0.75rem;
  transform: translateX(-50%);
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.55rem 0.75rem 0.55rem 1rem;
  border-radius: 999px;
  background: rgba(31, 18, 8, 0.92);
  color: #FAF2DF;
  font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.85rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}
.device-rotate-hint button {
  border: 1px solid rgba(250, 242, 223, 0.4);
  border-radius: 999px;
  background: transparent;
  color: #FAF2DF;
  font: inherit;
  padding: 0.2rem 0.8rem;
  cursor: pointer;
}
