/* ============================================================
   DOSYA SORUMLULUGU — screens-06-goal-reached.css
   ------------------------------------------------------------
   NE YAPAR   : Hedefe ulasildi kutlama 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
   ============================================================ */

/* ── GOAL REACHED CELEBRATION ── */
#goal-reached-screen {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: linear-gradient(160deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 24px;
  overflow: hidden;
}
#goal-reached-screen.active { display: flex; }
#gr-confetti {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.gr-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 100%;
  max-width: 360px;
}
.gr-emoji {
  font-size: 72px;
  line-height: 1;
  animation: gr-pop 0.6s cubic-bezier(0.34,1.56,0.64,1) both;
}
@keyframes gr-pop {
  0%   { transform: scale(0); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
.gr-badge {
  background: rgba(255,215,0,0.15);
  border: 1px solid rgba(255,215,0,0.4);
  color: #ffd700;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
}
.gr-title {
  color: #fff;
  font-size: 32px;
  font-weight: 800;
  text-align: center;
  margin-top: 4px;
}
.gr-subtitle {
  color: rgba(255,255,255,0.6);
  font-size: 15px;
  text-align: center;
  line-height: 1.5;
}
.gr-stat-row {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 16px 28px;
  margin-top: 6px;
}
.gr-stat { text-align: center; }
.gr-stat-val {
  color: #fff;
  font-size: 22px;
  font-weight: 800;
}
.gr-stat-lbl {
  color: rgba(255,255,255,0.45);
  font-size: 11px;
  margin-top: 2px;
}
.gr-arrow {
  color: rgba(255,255,255,0.3);
  font-size: 20px;
}
.gr-btn-primary {
  width: 100%;
  height: 52px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  border: none;
  border-radius: 14px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  margin-top: 12px;
  box-shadow: 0 4px 20px rgba(255,107,53,0.4);
}
.gr-btn-primary:active { opacity: 0.9; transform: scale(0.97); }
.gr-btn-skip {
  background: none;
  border: none;
  color: rgba(255,255,255,0.4);
  font-size: 13px;
  font-weight: 500;
  padding: 8px;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}

