/* pwa-first-open.css — iOS standalone first-open notification prompt */

.pwa-fo-overlay {
  position: fixed;
  inset: 0;
  z-index: 10002;
  background: rgba(0, 0, 0, 0.72);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.pwa-fo-card {
  background: var(--brand-surface, #1c1c1e);
  color: var(--brand-text, #fff);
  border-radius: var(--brand-radius-lg, 16px);
  padding: 28px 24px;
  max-width: 340px;
  width: 100%;
  font-family: var(--brand-font-body, sans-serif);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pwa-fo-heading {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
}

.pwa-fo-allow-btn {
  width: 100%;
  background: var(--brand-accent, #FFF310);
  color: var(--brand-text-inverse, #000);
  border: none;
  border-radius: var(--brand-radius-md, 12px);
  padding: 15px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  box-sizing: border-box;
}

.pwa-fo-dismiss-btn {
  background: none;
  border: none;
  color: var(--brand-text-faint, #666);
  font-size: 14px;
  cursor: pointer;
  padding: 8px;
  width: 100%;
}
