/* ── Highscore overlay ──────────────────────────────────────── */
.cafe-hs-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
}
.cafe-hs-overlay.hidden { display: none; }

.cafe-hs-boks {
  background: #1a2a3a;
  border: 2px solid #ffd700;
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
  max-width: 320px;
  width: 90%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cafe-hs-emoji { font-size: 3rem; line-height: 1; }
.cafe-hs-titel { color: #fff; font-size: 1.2rem; font-weight: 800; letter-spacing: 1px; margin: 0; }
.cafe-hs-point { color: #ffd700; font-size: 2rem; font-weight: 800; }
.cafe-hs-rang  { color: rgba(255,255,255,0.65); font-size: 0.9rem; min-height: 1.2em; }
.cafe-hs-form  { display: flex; flex-direction: column; gap: 8px; }
.cafe-hs-bekræft { color: rgba(255,255,255,0.80); font-size: 0.9rem; line-height: 1.7; }
.cafe-hs-bekræft.hidden { display: none; }
.cafe-hs-link { color: #48cae4; text-decoration: underline; font-weight: 700; display: block; margin-top: 4px; }

.cafe-hs-input {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 8px;
  color: #fff;
  font-size: 1rem;
  padding: 10px 14px;
  text-align: center;
  outline: none;
  width: 100%;
  box-sizing: border-box;
}
.cafe-hs-input::placeholder { color: rgba(255,255,255,0.35); }
.cafe-hs-input:focus { border-color: #1a7acc; }

.cafe-hs-knap {
  border: none;
  border-radius: 8px;
  color: #fff;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 11px 20px;
  transition: opacity 0.15s;
  width: 100%;
}
.cafe-hs-knap:hover { opacity: 0.85; }
.cafe-hs-knap-grøn { background: #2d7a2d; }
.cafe-hs-knap-blå  { background: #005ea8; }

/* ── Canvas layout ──────────────────────────────────────────── */
.biltema-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 8px 20px;
}

#biltema-canvas {
  display: block;
  width: 100%;
  max-width: 480px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.6);
  touch-action: none;
  cursor: pointer;
}
