:root {
  --dl-accent: #1838D1;
  --dl-accent-2: #1838D1;
  --dl-bg: #FAFAFA;
  --dl-text: #1838D1;
  --dl-muted: #666B7D;
}

#desktop-landing {
  position: fixed;
  inset: 0;
  z-index: 1500;
  display: grid;
  place-items: center;
  overflow: auto;
  background: var(--dl-bg);
  color: var(--dl-text);
  padding: 36px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}
.dl-bg, .dl-overlay { display: none; }
.dl-content {
  position: relative;
  display: grid;
  width: min(100%, 900px);
  grid-template-columns: minmax(0, 1.2fr) minmax(270px, .8fr);
  grid-template-areas: "logo qr" "subtitle qr" "instruction qr" "url qr";
  align-items: center;
  column-gap: 60px;
  overflow: hidden;
  border: 1px solid rgba(24, 56, 209, .15);
  border-radius: 36px;
  background: #fff;
  padding: 46px;
  box-shadow: 0 30px 100px rgba(26, 34, 68, .14);
}
.dl-logo { grid-area: logo; display: block; width: 100%; height: auto; margin-bottom: 8px; }
.dl-subtitle { grid-area: subtitle; margin: 0 0 22px; color: var(--dl-text); font-size: 25px; font-style: italic; font-weight: 900; }
.dl-qr-wrap { grid-area: qr; display: flex; justify-content: center; }
.dl-qr { border: 1px solid rgba(24, 56, 209, .2); border-radius: 24px; background: #fff; padding: 16px; line-height: 0; }
.dl-qr img, .dl-qr canvas { display: block; width: 230px; height: 230px; image-rendering: pixelated; }
.dl-instruction { grid-area: instruction; margin: 0 0 13px; color: var(--dl-muted); font-size: 14px; line-height: 1.5; }
.dl-url { grid-area: url; max-width: 100%; overflow-wrap: anywhere; border-radius: 14px; background: #F0F1F5; color: var(--dl-text); padding: 10px 12px; font-family: "SF Mono", Menlo, Consolas, monospace; font-size: 12px; user-select: all; }

#landscape-overlay {
  position: fixed;
  inset: 0;
  z-index: 1600;
  display: grid;
  place-items: center;
  background: var(--dl-bg);
  color: var(--dl-text);
  padding: 24px;
}
.lo-content { max-width: 360px; text-align: center; }
.lo-icon { width: 72px; height: 72px; margin-bottom: 18px; color: var(--dl-accent); }
.lo-title { margin: 0 0 7px; font-size: 23px; font-weight: 950; }
.lo-subtitle { margin: 0; color: var(--dl-muted); font-size: 14px; line-height: 1.5; }

@media (max-width: 899px), (hover: none) and (pointer: coarse) {
  #desktop-landing { display: none !important; }
}
