:root {
  --dl-accent: #FFC400;
  --dl-accent-2: #E6E6E6;
  --dl-bg: #303030;
  --dl-text: #E6E6E6;
  --dl-text-muted: #999999;
}

#desktop-landing {
  position: fixed;
  inset: 0;
  z-index: 1500;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: auto;
  padding: 40px;
  background: var(--dl-bg);
  color: var(--dl-text);
  font-family: "Avenir Next", Avenir, Montserrat, "Segoe UI", system-ui, sans-serif;
}
.dl-bg {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image: radial-gradient(circle, var(--dl-accent) 1.3px, transparent 1.5px);
  background-size: 26px 26px;
}
.dl-overlay { position: absolute; inset: 0; background: rgba(48,48,48,0.56); }
.dl-content {
  position: relative;
  width: min(100%, 470px);
  border: 1px solid rgba(230,230,230,0.16);
  border-top: 3px solid var(--dl-accent);
  border-radius: 20px;
  background: rgba(48,48,48,0.94);
  padding: 42px 38px 34px;
  text-align: center;
  box-shadow: 0 28px 90px rgba(0,0,0,0.42);
}
.dl-logo { display: block; width: min(100%, 240px); height: auto; margin: 0 auto 14px; }
.dl-subtitle { margin: 0 0 28px; color: var(--dl-text-muted); font-size: 15px; }
.dl-qr-wrap { display: flex; justify-content: center; margin-bottom: 19px; }
.dl-qr {
  padding: 13px;
  border-radius: 12px;
  background: #fff;
  line-height: 0;
}
.dl-qr img,
.dl-qr canvas { display: block; width: 200px; height: 200px; image-rendering: pixelated; }
.dl-instruction { margin: 0 0 12px; color: var(--dl-text-muted); font-size: 13px; line-height: 1.5; }
.dl-url {
  display: inline-block;
  max-width: 100%;
  overflow-wrap: anywhere;
  border: 1px solid rgba(230,230,230,0.12);
  border-radius: 8px;
  background: #393939;
  color: var(--dl-text);
  padding: 8px 12px;
  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; }
}

#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: "Avenir Next", Avenir, Montserrat, "Segoe UI", system-ui, sans-serif;
}
.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 6px; font-size: 22px; font-weight: 500; }
.lo-subtitle { margin: 0; color: var(--dl-text-muted); font-size: 14px; line-height: 1.5; }
