/* ============================================================
   DOSYA SORUMLULUGU — screens-04-milestone-core.css
   ------------------------------------------------------------
   NE YAPAR   : 5 kg metabolik adaptasyon ekraninin govdesi.
   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
   ============================================================ */

/* ============================================================
   5KG MİLESTONE KUTLAMA EKRANI
   ============================================================ */
#milestone-screen {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: linear-gradient(160deg, #1a0a00 0%, #2d1200 40%, #E85D00 100%);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 28px 48px;
  max-width: 430px;
  margin: 0 auto;
  text-align: center;
  animation: fadeIn 0.4s ease;
}
#milestone-screen.active { display: flex; }

.ms-emoji {
  font-size: 72px;
  line-height: 1;
  margin-bottom: 12px;
  animation: msBounce 0.6s cubic-bezier(0.34,1.56,0.64,1) 0.3s both;
}
@keyframes msBounce {
  from { transform: scale(0); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
.ms-badge {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 99px;
  padding: 6px 18px;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.ms-title {
  font-size: 42px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -2px;
  line-height: 1.1;
  margin-bottom: 8px;
  font-family: 'JetBrains Mono', monospace;
}
.ms-subtitle {
  font-size: 16px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  margin-bottom: 32px;
  line-height: 1.5;
}
.ms-info-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 18px;
  padding: 18px 20px;
  margin-bottom: 32px;
  width: 100%;
  text-align: left;
  backdrop-filter: blur(8px);
}
.ms-info-title {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.ms-info-text {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
}
.ms-btn-primary {
  width: 100%;
  height: 56px;
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--orange);
  font-size: 16px;
  font-weight: 900;
  border: none;
  cursor: pointer;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
  transition: opacity 0.15s, transform 0.12s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.ms-btn-primary:active { opacity: 0.9; transform: scale(0.97); }
.ms-btn-skip {
  background: none;
  border: none;
  color: rgba(255,255,255,0.45);
  font-size: 13px;
  font-weight: 500;
  padding: 10px;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}
