/* Deus Vult — PWA install banner + modal */
.dv-install-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: linear-gradient(135deg,#8b1a1a,#5c1a1a);
  border-bottom: 1px solid rgba(201,168,76,0.4);
  color: #f5e8c0;
  font-family: 'Cinzel', Georgia, serif;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.65rem 1rem;
  cursor: pointer;
}
.dv-install-banner:hover { filter: brightness(1.1); }
.dv-install-banner svg { width: 16px; height: 16px; flex-shrink: 0; }

#dv-install-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(10,6,8,0.85);
  display: flex; align-items: center; justify-content: center;
  padding: 1.5rem;
}
.dv-install-box {
  position: relative;
  background: #110c0e;
  border: 1px solid rgba(201,168,76,0.3);
  color: #e8dcc0;
  font-family: Georgia, serif;
  max-width: 380px;
  width: 100%;
  padding: 1.75rem;
  border-radius: 4px;
}
.dv-install-box h3 {
  font-family: 'Cinzel', Georgia, serif;
  color: #e8c97a;
  font-size: 1.1rem;
  margin-bottom: 0.9rem;
  letter-spacing: 0.03em;
}
.dv-install-box ol { padding-left: 1.3rem; margin-bottom: 0.8rem; }
.dv-install-box li { margin-bottom: 0.5rem; line-height: 1.5; }
.dv-install-box p { line-height: 1.5; color: #a09070; }
.dv-install-close {
  position: absolute; top: 0.6rem; right: 0.8rem;
  background: none; border: none; color: #a09070;
  font-size: 1.5rem; line-height: 1; cursor: pointer;
}
.dv-install-close:hover { color: #e8c97a; }
