/* ============================================================
   DOSYA SORUMLULUGU — screens-05-weight-insight-card.css
   ------------------------------------------------------------
   NE YAPAR   : Kilo girisi sonrasi cikan yorum karti.
   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
   ============================================================ */

/* ── WEIGHT INSIGHT CARD ── */
#insight-card {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 600;
  background: rgba(0,0,0,0.5);
  align-items: flex-end;
  justify-content: center;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  animation: fadeIn 0.2s ease;
}
#insight-card.active { display: flex; }
#insight-inner {
  width: 100%;
  max-width: 430px;
  background: var(--bg);
  border-radius: 24px 24px 0 0;
  padding: 28px 24px max(env(safe-area-inset-bottom,20px),20px);
  animation: sheetUp 0.32s cubic-bezier(0.32,0.72,0,1);
  text-align: center;
}
#insight-emoji {
  font-size: 48px;
  line-height: 1;
  margin-bottom: 12px;
}
#insight-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}
#insight-msg {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.6;
  margin-bottom: 20px;
}
#insight-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
#insight-btn {
  width: 100%;
  height: 50px;
  background: linear-gradient(135deg, var(--orange2), var(--orange));
  border: none;
  border-radius: 14px;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
}
#insight-btn:active { opacity: 0.9; transform: scale(0.98); }
#insight-btn2 {
  width: 100%;
  background: none;
  border: none;
  color: var(--text3);
  font-size: 13px;
  font-weight: 500;
  padding: 6px;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}

