/* ===== Cosmic Noir — Ulduz Fal dizayn sistemi ===== */

:root {
  --bg-0: #0B0E23;
  --bg-1: #141834;
  --bg-2: #1C2044;
  --deep: #0A0C1D;
  --gold: #D4AF37;
  --gold-soft: #E8D5A8;
  --lav: #B4A7E8;
  --lav-soft: #D7CFF2;
  --txt: #EDEAF7;
  --txt-dim: #9B98B8;
  --txt-faint: #6B6890;
  --glass: rgba(255, 255, 255, 0.035);
  --glass-brd: rgba(255, 255, 255, 0.08);
  --danger: #E88B8B;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html, body {
  min-height: 100%;
  background: linear-gradient(160deg, var(--bg-0) 0%, var(--bg-1) 55%, var(--deep) 100%);
}

body {
  font-family: 'Manrope', -apple-system, sans-serif;
  color: var(--txt);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-bottom: 56px;
}

h1, h2, h3, .serif {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  letter-spacing: .01em;
}

#cvs {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.app {
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin: 0 auto;
  padding: 18px 18px 40px;
}

/* ---------- Language pills ---------- */
.lang-bar {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 16px 12px 4px;
  flex-wrap: wrap;
}

.lbtn {
  font-family: 'Manrope', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--txt-dim);
  background: var(--glass);
  border: 1px solid var(--glass-brd);
  padding: 7px 16px;
  border-radius: 999px;
  cursor: pointer;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all .2s ease;
}

.lbtn.active {
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  color: var(--deep);
  border-color: transparent;
  box-shadow: 0 2px 14px rgba(212, 175, 55, .35);
}

.lbtn:active { transform: scale(.94); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 28px 0 18px;
}

.zodiac-ring {
  position: relative;
  width: 128px;
  height: 128px;
  margin-bottom: 6px;
}

.zodiac-ring .ring-spin {
  position: absolute;
  inset: 0;
  animation: ring-rotate 100s linear infinite;
}

.zodiac-ring .glyph {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 18px;
  margin: -9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .82rem;
  color: var(--gold-soft);
  opacity: .75;
}

@keyframes ring-rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

#moonEl {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 60px; height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  animation: halo-pulse 3.6s ease-in-out infinite;
}

#moonEl svg { width: 44px; height: 44px; }

@keyframes halo-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, .28), 0 0 18px 4px rgba(180, 167, 232, .12); }
  50% { box-shadow: 0 0 0 14px rgba(212, 175, 55, 0), 0 0 26px 8px rgba(180, 167, 232, .2); }
}

.hdr-eye { display: none; }

.hdr-title, #hTitle {
  font-size: 2.15rem;
  font-weight: 600;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold) 45%, var(--lav));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-top: 4px;
}

.hdr-sub, #hSub {
  font-size: .86rem;
  color: var(--txt-dim);
  letter-spacing: .03em;
  margin-top: 4px;
}

/* ---------- Error banner ---------- */
.err {
  display: none;
  background: rgba(232, 139, 139, .1);
  border: 1px solid rgba(232, 139, 139, .3);
  color: var(--danger);
  font-size: .84rem;
  padding: 12px 16px;
  border-radius: 14px;
  margin: 0 0 14px;
}
.err.on { display: block; }

/* ---------- Glass card ---------- */
.card, .qa-card, .rcard, .audio-bar, .pill, .limit-content, .ad-content {
  background: var(--glass);
  border: 1px solid var(--glass-brd);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.card {
  border-radius: 22px;
  padding: 22px 20px;
  margin-bottom: 16px;
}

.slabel {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--gold-soft);
  margin-bottom: 10px;
  letter-spacing: .02em;
}

.g1 { margin-bottom: 14px; }
.g3 {
  display: grid;
  grid-template-columns: 1fr 1.3fr 1fr;
  gap: 10px;
  margin-bottom: 14px;
}

label {
  display: block;
  font-size: .72rem;
  color: var(--txt-faint);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 5px;
}

input, select {
  width: 100%;
  font-family: 'Manrope', sans-serif;
  font-size: .92rem;
  color: var(--txt);
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--glass-brd);
  border-radius: 12px;
  padding: 10px 12px;
  outline: none;
  transition: border-color .2s, background .2s;
}

input::placeholder { color: var(--txt-faint); }

input:focus, select:focus {
  border-color: var(--gold);
  background: rgba(212, 175, 55, .06);
}

select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23B4A7E8'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 28px;
}

select option {
  background: var(--bg-1);
  color: var(--txt);
}

.dvdr {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 16px 0;
  position: relative;
}
.dvdr::before {
  content: '';
  position: absolute;
  left: 0; right: 0; top: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--glass-brd) 30%, var(--glass-brd) 70%, transparent);
}
.dvdr-i {
  position: relative;
  background: var(--bg-1);
  color: var(--gold);
  font-size: .9rem;
  padding: 0 12px;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}
.chip {
  font-family: 'Manrope', sans-serif;
  font-size: .82rem;
  font-weight: 600;
  color: var(--txt-dim);
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--glass-brd);
  border-radius: 999px;
  padding: 8px 14px;
  cursor: pointer;
  transition: all .18s ease;
}
.chip:hover { border-color: rgba(212, 175, 55, .4); }
.chip.active {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: var(--deep);
  border-color: transparent;
}
.chip:active { transform: scale(.96); }

.btn-main {
  width: 100%;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: .03em;
  color: var(--deep);
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  border: none;
  border-radius: 16px;
  padding: 14px;
  cursor: pointer;
  margin-top: 6px;
  box-shadow: 0 6px 22px rgba(212, 175, 55, .28);
  transition: transform .15s, box-shadow .15s;
}
.btn-main:active { transform: scale(.98); }
.btn-main:disabled { opacity: .55; cursor: default; }

.btn-refresh {
  display: block;
  width: 100%;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: .02em;
  color: var(--gold-soft);
  background: var(--glass);
  border: 1px solid rgba(212, 175, 55, .35);
  border-radius: 16px;
  padding: 13px;
  margin-top: 4px;
  cursor: pointer;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: border-color .2s, background .2s, transform .15s;
}
.btn-refresh:hover { border-color: var(--gold); background: rgba(212, 175, 55, .08); }
.btn-refresh:active { transform: scale(.98); }

/* ---------- Istifadeci sayğacı ---------- */
.usage-counter {
  margin: 10px auto 4px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border-radius: 999px;
  border: 1px solid var(--glass-brd);
  background: var(--glass);
  backdrop-filter: blur(8px);
  font-family: 'Manrope', sans-serif;
  font-size: .74rem;
  color: var(--txt-dim);
  letter-spacing: .01em;
}

/* ---------- Tetbiqi paylas paneli (netice deyil, app-in ozunu paylasmaq) ---------- */
.app-share-panel { margin: 18px 0 22px; }
.app-share-grid {
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}
.app-share-grid .sb-icon { width: 42px; height: 42px; border-radius: 13px; }
.app-share-grid .sb-icon svg { width: 21px; height: 21px; }

/* ---------- Paylasim paneli ---------- */
.share-panel { margin-bottom: 16px; }
.share-title { display: flex; align-items: center; gap: 10px; margin: 0 2px 14px; }
.share-title .t {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--txt);
}
.share-title .rule { flex: 1; height: 1px; background: rgba(212, 175, 55, .16); }

.share-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.share-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px 0;
  font-family: 'Manrope', sans-serif;
  transition: transform .15s;
}
.share-btn:active { transform: scale(.9); }
.sb-icon {
  width: 48px; height: 48px;
  border-radius: 15px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--glass-brd);
  background: var(--glass);
  backdrop-filter: blur(8px);
  transition: border-color .15s;
}
.share-btn:hover .sb-icon { border-color: rgba(212, 175, 55, .35); }
.sb-icon svg { width: 24px; height: 24px; }
.sb-label { font-size: .68rem; color: var(--txt-dim); }

/* Ekrandan kenarda gizli paylasim karti - html2canvas capture ucun */
.share-capture-card {
  position: fixed;
  left: -9999px;
  top: 0;
  width: 360px;
  z-index: -1;
}
.fal-card {
  background: var(--bg-1);
  border: 1px solid var(--glass-brd);
  border-radius: 22px;
  padding: 24px 22px;
  position: relative;
  overflow: hidden;
}
.fal-card::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, .5), transparent);
}
.fc-head { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.fc-glyph {
  width: 40px; height: 40px; border-radius: 12px;
  background: rgba(212, 175, 55, .12);
  border: 1px solid rgba(212, 175, 55, .25);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px; color: var(--gold);
}
.fc-sign { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 600; color: var(--txt); }
.fc-date { font-size: 11px; color: var(--txt-dim); }
.fc-text { font-family: 'Cormorant Garamond', serif; font-size: 18px; line-height: 1.5; color: var(--txt); }
.fc-note { font-size: 10px; color: var(--txt-dim); margin-top: 12px; opacity: .7; }

/* ---------- Loading ---------- */
#loadWrap {
  display: none;
  flex-direction: column;
  align-items: center;
  padding: 40px 0;
  gap: 18px;
}
#loadWrap.on { display: flex; }

.orb {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, var(--gold-soft), var(--gold) 45%, var(--lav) 100%);
  animation: orb-pulse 1.6s ease-in-out infinite;
}
@keyframes orb-pulse {
  0%, 100% { transform: scale(1); opacity: .85; box-shadow: 0 0 20px 4px rgba(212,175,55,.25); }
  50% { transform: scale(1.18); opacity: 1; box-shadow: 0 0 32px 10px rgba(180,167,232,.3); }
}

.load-txt {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--lav-soft);
  text-align: center;
}

/* ---------- Result ---------- */
#resWrap { display: none; }
#resWrap.on { display: block; }

.pill-row {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 4px 2px 14px;
  scrollbar-width: none;
  -webkit-mask-image: linear-gradient(to right, black calc(100% - 32px), transparent 100%);
  mask-image: linear-gradient(to right, black calc(100% - 32px), transparent 100%);
}
.pill-row::-webkit-scrollbar { display: none; }
.pill-row.at-end {
  -webkit-mask-image: none;
  mask-image: none;
}

.pill {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: .78rem;
  color: var(--txt-dim);
  white-space: nowrap;
}
.pill span { font-size: 1rem; }
.pill b { color: var(--txt); font-weight: 700; }

.rcard {
  border-radius: 22px;
  padding: 22px 20px;
  margin-bottom: 16px;
}

.rsec-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gold-soft);
  margin-bottom: 8px;
}

.rbody p {
  font-size: .92rem;
  color: var(--txt-dim);
  margin-bottom: 10px;
}
.rbody p:last-child { margin-bottom: 0; }

/* ---------- Audio bar (JS-injected) ---------- */
.audio-bar {
  border-radius: 18px;
  padding: 14px 16px;
  margin-bottom: 16px;
}
.audio-top {
  display: flex;
  align-items: center;
  gap: 12px;
}
.pBtn {
  flex-shrink: 0;
  width: 42px; height: 42px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: var(--deep);
  font-size: 1rem;
  cursor: pointer;
}
.pBtn:disabled { opacity: .55; cursor: default; }
.audio-info { flex: 1; min-width: 0; }
.audio-lbl {
  font-size: .68rem;
  letter-spacing: .06em;
  color: var(--txt-faint);
  text-transform: uppercase;
}
.audio-stat {
  font-size: .84rem;
  color: var(--txt);
  margin-top: 2px;
}
.wave {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 22px;
}
.wb {
  width: 3px;
  height: 100%;
  border-radius: 2px;
  background: linear-gradient(180deg, var(--lav), var(--gold));
  animation: wave-bounce .9s ease-in-out infinite;
}
.wb:nth-child(2) { animation-delay: .1s; }
.wb:nth-child(3) { animation-delay: .2s; }
.wb:nth-child(4) { animation-delay: .3s; }
.wb:nth-child(5) { animation-delay: .4s; }
.wb.p { animation-play-state: paused; opacity: .35; transform: scaleY(.3); }
@keyframes wave-bounce {
  0%, 100% { transform: scaleY(.3); }
  50% { transform: scaleY(1); }
}

.btn-dl {
  width: 100%;
  margin-top: 12px;
  background: transparent;
  border: 1px solid var(--glass-brd);
  color: var(--lav-soft);
  font-family: 'Manrope', sans-serif;
  font-size: .82rem;
  font-weight: 700;
  border-radius: 12px;
  padding: 10px;
  cursor: pointer;
}
.btn-dl:disabled { opacity: .5; }

/* ---------- Q&A ---------- */
.qa-card {
  border-radius: 22px;
  padding: 20px;
  margin-bottom: 16px;
}
.qa-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--gold-soft);
  margin-bottom: 12px;
}
.qa-input-row {
  display: flex;
  gap: 8px;
}
.qa-input-row input { flex: 1; }
.qa-btn {
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: var(--deep);
  border: none;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: .86rem;
  border-radius: 12px;
  padding: 0 18px;
  cursor: pointer;
}
.qa-btn:disabled { opacity: .55; }

.qa-answer {
  display: none;
  margin-top: 14px;
  font-size: .88rem;
  color: var(--txt-dim);
  line-height: 1.7;
  padding-top: 14px;
  border-top: 1px solid var(--glass-brd);
}
.qa-answer.on { display: block; }
.qa-answer.err { color: var(--danger); }

/* ---------- Footer / toast ---------- */
footer {
  text-align: center;
  font-size: .72rem;
  color: var(--txt-faint);
  padding: 20px 12px 8px;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 14px;
  padding: 0 12px 24px;
}
.legal-links a {
  font-size: .72rem;
  color: var(--txt-faint);
  text-decoration: none;
  transition: color .2s;
}
.legal-links a:hover { color: var(--gold-soft); }

/* ---------- Ziyaretci sayğacı (saatlıq/gunluk/heftelik/aylıq/illik/umumi) ---------- */
.visit-stats {
  max-width: 280px;
  margin: 0 auto 28px;
  padding: 14px 18px 12px;
  border-radius: 16px;
  border: 1px solid var(--glass-brd);
  background: var(--glass);
  backdrop-filter: blur(8px);
}
.vs-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: .92rem;
  font-weight: 600;
  color: var(--txt-dim);
  text-align: center;
  margin-bottom: 8px;
}
.vs-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  border-top: 1px solid rgba(212, 175, 55, .12);
}
.vs-row:first-of-type { border-top: none; }
.vs-row-total { border-top: 1px solid rgba(212, 175, 55, .3); margin-top: 2px; padding-top: 9px; }
.vs-label {
  font-family: 'Manrope', sans-serif;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: var(--txt-faint);
}
.vs-row-total .vs-label { color: var(--gold-soft); }
.vs-nums {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-variant-numeric: tabular-nums;
}
.vs-total { font-size: .82rem; font-weight: 800; color: var(--txt); }
.vs-unique { font-size: .66rem; font-weight: 600; color: var(--txt-faint); }
.vs-unique::before { content: "("; }
.vs-unique::after { content: ")"; }
.vs-legend {
  text-align: center;
  font-size: .6rem;
  color: var(--txt-faint);
  margin-top: 8px;
  letter-spacing: .02em;
}

.toast {
  position: fixed;
  left: 50%; bottom: 22px;
  transform: translateX(-50%) translateY(140%);
  background: var(--bg-1);
  border: 1px solid var(--glass-brd);
  color: var(--txt);
  font-size: .84rem;
  padding: 11px 20px;
  border-radius: 12px;
  z-index: 50;
  transition: transform .25s ease;
  box-shadow: 0 8px 24px rgba(0,0,0,.4);
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* ---------- Modals ---------- */
.limit-modal, .ad-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 60;
  align-items: center;
  justify-content: center;
  background: rgba(6, 7, 20, .72);
  backdrop-filter: blur(4px);
  padding: 20px;
}
.limit-modal.on, .ad-modal.on { display: flex; }

.limit-content, .ad-content {
  width: 100%;
  max-width: 380px;
  border-radius: 22px;
  padding: 26px 22px;
  background: var(--bg-1);
  text-align: center;
}

.limit-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: var(--gold-soft);
  margin-bottom: 10px;
}
.limit-content p {
  font-size: .88rem;
  color: var(--txt-dim);
  margin-bottom: 20px;
}
.limit-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: var(--deep);
  border: none;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: .92rem;
  border-radius: 14px;
  padding: 13px;
  cursor: pointer;
  margin-bottom: 10px;
}
.limit-close-btn {
  width: 100%;
  background: transparent;
  border: 1px solid var(--glass-brd);
  color: var(--txt-dim);
  font-family: 'Manrope', sans-serif;
  font-size: .86rem;
  border-radius: 14px;
  padding: 12px;
  cursor: pointer;
}

.ad-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.ad-badge {
  font-size: .66rem;
  letter-spacing: .08em;
  color: var(--txt-faint);
  border: 1px solid var(--glass-brd);
  padding: 3px 8px;
  border-radius: 999px;
}
.ad-close {
  background: none;
  border: none;
  color: var(--txt-dim);
  font-size: 1.3rem;
  cursor: pointer;
  line-height: 1;
}
.ad-close:disabled { opacity: .3; cursor: default; }
.ad-icon { font-size: 2.4rem; margin-bottom: 10px; }
.ad-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--gold-soft);
  margin-bottom: 8px;
}
.ad-content p { font-size: .85rem; color: var(--txt-dim); margin-bottom: 18px; }
.ad-timer {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--gold);
}

/* ---------- Responsive ---------- */
@media (min-width: 640px) {
  .app { max-width: 620px; padding-top: 8px; }
  .hdr-title, #hTitle { font-size: 2.5rem; }
  .zodiac-ring { width: 150px; height: 150px; }
}

@media (min-width: 900px) {
  .app { max-width: 680px; }
}

/* ---------- PWA install banner ---------- */
.pwa-banner {
  position: fixed;
  left: 16px; right: 16px; bottom: 16px;
  max-width: 480px; margin: 0 auto;
  z-index: 200;
  background: var(--bg-1);
  border: 1px solid var(--glass-brd);
  border-radius: 18px;
  padding: 14px 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,.5);
  display: flex;
  align-items: center;
  gap: 12px;
  transform: translateY(140%);
  transition: transform .3s ease;
}
.pwa-banner.show { transform: translateY(0); }
.pwa-banner .pwa-logo { width: 38px; height: 38px; border-radius: 10px; flex-shrink: 0; }
.pwa-banner .pwa-txt {
  flex: 1;
  font-size: .82rem;
  color: var(--txt-dim);
  line-height: 1.4;
}
.pwa-banner .pwa-install {
  flex-shrink: 0;
  border: none;
  border-radius: 10px;
  padding: 9px 16px;
  font-size: .82rem;
  font-weight: 700;
  font-family: 'Manrope', sans-serif;
  color: var(--deep);
  cursor: pointer;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
}
.pwa-banner .pwa-close {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 1px solid var(--glass-brd);
  background: transparent;
  color: var(--txt-faint);
  font-size: 13px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
