:root {
  --dl-accent: #00B8B8;
  --dl-accent-2: #222831;
  --dl-bg: #FFFFFF;
  --dl-text: #222831;
  --dl-text-muted: #727D84;
}

#desktop-landing {
  position: fixed;
  inset: 0;
  z-index: 1500;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: auto;
  background: var(--dl-bg);
  color: var(--dl-text);
  padding: 32px;
  font-family: Inter, Arial, Helvetica, sans-serif;
}

.dl-bg {
  position: fixed;
  inset: 0;
  opacity: 0.2;
  background-image: radial-gradient(circle, var(--dl-accent) 1.5px, transparent 1.5px);
  background-size: 26px 26px;
  pointer-events: none;
}

.dl-overlay {
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.72);
  pointer-events: none;
}

.dl-content {
  position: relative;
  width: min(100%, 520px);
  border: 1px solid var(--dl-text);
  border-top: 8px solid var(--dl-accent);
  background: #FFFFFF;
  padding: 34px 38px 32px;
  text-align: center;
  box-shadow: 18px 18px 0 rgba(0, 184, 184, 0.12);
}

.dl-logo {
  display: block;
  width: 132px;
  height: 132px;
  margin: 0 auto 20px;
  border-radius: 50%;
  object-fit: contain;
}

.dl-title {
  margin: 0 auto 8px;
  max-width: 100%;
  color: var(--dl-text);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 950;
  line-height: 0.98;
  letter-spacing: -0.035em;
  overflow-wrap: anywhere;
  text-transform: uppercase;
}

.dl-subtitle {
  margin: 0 0 24px;
  color: var(--dl-text-muted);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.dl-qr-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 18px;
}

.dl-qr {
  padding: 12px;
  border: 1px solid var(--dl-text);
  background: #FFFFFF;
  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.45;
}

.dl-url {
  display: inline-block;
  max-width: 100%;
  overflow-wrap: anywhere;
  border-left: 4px solid var(--dl-accent);
  background: #F1F4F4;
  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;
  }
}
