:root {
  --dl-accent: #c9b426;
  --dl-accent-2: #f2f2f2;
  --dl-bg: #121212;
  --dl-text: #f2f2f2;
  --dl-text-muted: #8d8d8d;
}
#desktop-landing {
  position: fixed;
  inset: 0;
  z-index: 1500;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 36px;
  background: var(--dl-bg);
  color: var(--dl-text);
  font-family: "Arial Narrow", "Roboto Condensed", Inter, Arial, sans-serif;
}
.dl-bg { position: absolute; inset: -20%; background: repeating-linear-gradient(135deg, transparent 0 42px, rgba(201,180,38,.2) 42px 43px); animation: dl-lines 28s linear infinite; }
.dl-overlay { position: absolute; inset: 0; background: radial-gradient(circle at 50% 45%, rgba(18,18,18,.25), #121212 72%); }
@keyframes dl-lines { to { transform: translate3d(43px, 43px, 0); } }
.dl-content { position: relative; width: min(100%, 860px); display: grid; grid-template-columns: minmax(0, 1fr) 260px; grid-template-areas: "title qr" "subtitle qr" "instruction qr" "url qr"; align-items: end; gap: 12px 54px; padding: 54px; border: 1px solid rgba(242,242,242,.18); border-radius: 8px; background: #1a1a1a; box-shadow: 0 36px 110px rgba(0,0,0,.58); }
.dl-title { grid-area: title; align-self: end; max-width: 510px; color: var(--dl-text); font-size: clamp(62px, 8vw, 104px); font-weight: 950; line-height: .78; letter-spacing: -.075em; text-transform: uppercase; overflow-wrap: anywhere; }
.dl-subtitle { grid-area: subtitle; color: var(--dl-accent); font-size: 17px; font-weight: 900; text-transform: uppercase; }
.dl-qr-wrap { grid-area: qr; align-self: center; display: flex; justify-content: center; }
.dl-qr { padding: 16px; border: 4px solid var(--dl-accent); border-radius: 4px; background: #fff; line-height: 0; }
.dl-qr img, .dl-qr canvas { display: block; width: 220px; height: 220px; image-rendering: pixelated; }
.dl-instruction { grid-area: instruction; color: var(--dl-text-muted); font-size: 13px; line-height: 1.45; }
.dl-url { grid-area: url; display: inline-block; max-width: 100%; padding: 9px 12px; overflow-wrap: anywhere; border-left: 3px solid var(--dl-accent); background: #232323; color: var(--dl-text); font-family: "SF Mono", Menlo, Consolas, monospace; font-size: 12px; user-select: all; }
@media (max-width: 899px), (hover: none) and (pointer: coarse) { #desktop-landing { display: none !important; } }
@media (prefers-reduced-motion: reduce) { .dl-bg { animation: none; } }
#landscape-overlay { position: fixed; inset: 0; z-index: 1600; display: flex; align-items: center; justify-content: center; padding: 24px; background: var(--dl-bg); color: var(--dl-text); font-family: Inter, Arial, sans-serif; }
.lo-content { max-width: 360px; text-align: center; }
