/* ============================================================
   XP SCROLL SYSTEM  –  Progress Pill + Achievement Toasts
   ============================================================ */

/* ── 1. Progress Pill ────────────────────────────────────── */
/* Kaydırma ikonunun (back-to-top) solunda, yanında; dikey hizada, yükseklik 44px */
#xp-pill {
  position: fixed;
  bottom: 26px;
  right: 104px;
  z-index: 9997;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  height: 44px;
  min-height: 44px;
  box-sizing: border-box;
  background: rgba(12, 12, 16, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 999px;
  padding: 0 13px 0 10px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255,255,255,0.04);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
  user-select: none;
}

#xp-pill.visible {
  opacity: 1;
  transform: translateY(0);
}

.xp-pill-icon {
  font-size: 12px;
  line-height: 1;
  filter: grayscale(0.2);
  flex-shrink: 0;
}

#xp-pill-track {
  position: relative;
  width: 110px;
  height: 3px;
  background: rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  overflow: visible;
}

#xp-pill-fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #c0251e 0%, #e8312a 60%, #ff5a4a 100%);
  border-radius: 999px;
  transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

#xp-pill-fill::after {
  content: '';
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  width: 11px;
  height: 11px;
  background: #e8312a;
  border-radius: 50%;
  border: 2px solid rgba(12, 12, 16, 0.9);
  box-shadow: 0 0 0 1px rgba(232, 49, 42, 0.5), 0 0 8px rgba(232, 49, 42, 0.55);
  transition: opacity 0.2s ease;
}

/* Hide dot when at 0% */
#xp-pill-fill[style*="width: 0"]::after,
#xp-pill-fill[style*="width:0"]::after {
  opacity: 0;
}

#xp-pill-text {
  font-size: 10px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.8px;
  min-width: 26px;
  text-align: right;
  font-family: 'Courier New', 'Lucida Console', monospace;
  line-height: 1;
}


/* ── 2. Achievement Toast ─────────────────────────────────── */
/* Görünürlük JS inline-style ile; CSS sadece konum & görsel stil */
#xp-toast {
  position: fixed;
  bottom: 80px;
  right: 104px;
  z-index: 10000;
  display: none;        /* JS açar/kapatır */
  align-items: center;
  pointer-events: none;
  user-select: none;
}

/* main.css .xp-toast kurallarını sıfırla — kompakt boyut */
#xp-toast .xp-toast {
  position: static !important;
  opacity: 1 !important;
  transform: none !important;
  display: flex !important;
  align-items: center;
  gap: 8px;
  background: rgba(9, 9, 13, 0.96);
  border: 2px solid #e8312a;
  border-radius: 8px;
  padding: 8px 12px 8px 8px;
  min-width: 140px;
  max-width: 200px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.5), 0 0 0 1px rgba(232,49,42,0.06);
  pointer-events: none;
}

/* İkon kutusu — küçültülmüş */
.xp-toast-left {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(232, 49, 42, 0.1);
  border: 1px solid rgba(232, 49, 42, 0.2);
  border-radius: 6px;
}

#xp-toast-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

#xp-toast-icon svg {
  display: block;
  width: 14px;
  height: 14px;
}

/* Metin sütunu */
.xp-toast-body {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 0;
}

/* Tag ve açıklama gizli — sadece başlık görünür */
.xp-toast-tag    { display: none !important; }
#xp-toast-text   { display: none !important; }
.xp-toast-xp-bar { display: none !important; }

#xp-toast-title {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.2;
  letter-spacing: -0.15px;
}


/* ── 3. Responsive ───────────────────────────────────────── */
@media (max-width: 767px) {
  #xp-pill  { bottom: 16px; right: 72px; }
  #xp-toast { bottom: 72px; right: 20px; }
  #xp-toast .xp-toast { min-width: 120px; max-width: 180px; padding: 6px 10px 6px 6px; }
  #xp-toast-title { font-size: 11px; }
  .xp-toast-left { width: 24px; height: 24px; border-radius: 5px; }
  #xp-toast-icon svg { width: 12px; height: 12px; }
  #xp-pill-track { width: 80px; }
}
