/* ============================================================
   DOSYA SORUMLULUGU — screens-08-pwa-install.css
   ------------------------------------------------------------
   NE YAPAR   : PWA kurulum yonlendirme ekrani.
   KAYNAK     : v3.12.0'da bolundu — kurallar birebir tasindi,
                hicbir kural yeniden yazilmadi veya siralanmadi.
   SIRA       : index.html'deki <link> sirasi kaskadi belirler.
                Bu dosyanin sirasini DEGISTIRME.
   ------------------------------------------------------------
   Tam dosya listesi ve sira: BAGIMLILIK-HARITASI.md
   ============================================================ */

/* ============================================================
   PWA INSTALL EKRANI
   ============================================================ */
#install-screen {
  position: fixed;
  inset: 0;
  background: linear-gradient(160deg, #1a0800 0%, #2d1200 50%, #E85D00 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 32px;
  z-index: 9999;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
#install-screen.active {
  opacity: 1;
  pointer-events: all;
}
.inst-icon {
  font-size: 72px;
  margin-bottom: 20px;
}
.inst-title {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}
.inst-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.80);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 280px;
}
.inst-btn-primary {
  width: 100%;
  max-width: 280px;
  padding: 18px;
  background: #fff;
  color: var(--orange);
  border: none;
  border-radius: 16px;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  margin-bottom: 14px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.25);
  letter-spacing: -0.2px;
}
.inst-btn-skip {
  background: none;
  border: none;
  color: rgba(255,255,255,0.55);
  font-size: 14px;
  cursor: pointer;
  padding: 8px;
  text-decoration: underline;
  text-underline-offset: 3px;
}


