/* PWA Install Guard CSS */
.pwa-guard-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 999999;
  background: #121212 url("../assets/icons/coi_common_ui_mobywatel_background.webp") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
  font-family: "Roboto", system-ui, -apple-system, sans-serif;
  color: #ffffff;
}

.pwa-guard-card {
  background: rgba(30, 32, 42, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  padding: 36px 24px 28px;
  max-width: 380px;
  width: 100%;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  animation: pwaCardFadeIn 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes pwaCardFadeIn {
  from { opacity: 0; transform: translateY(16px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.pwa-guard-icon-wrapper {
  margin: 0 auto 20px;
  width: 84px;
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pwa-guard-app-icon {
  width: 84px;
  height: 84px;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  object-fit: cover;
}

.pwa-guard-title {
  font-size: 1.45rem;
  font-weight: 700;
  margin: 0 0 10px 0;
  color: #ffffff;
}

.pwa-guard-subtitle {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
  margin: 0 0 24px 0;
}

.pwa-guard-btn {
  width: 100%;
  padding: 15px;
  background-color: #165ef8;
  color: #ffffff;
  border: none;
  border-radius: 14px;
  font-weight: 600;
  font-size: 1.05rem;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.15s;
  font-family: inherit;
}

.pwa-guard-btn:active {
  transform: scale(0.98);
  background-color: #1251d3;
}

.pwa-guard-help {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: left;
}

.pwa-guard-help-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 6px 0;
}

.pwa-guard-help-text {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
  margin: 0;
}
