/* New Year Floating Badge - CSS Only (No HTML needed) */

/* الحاوية */
body::before{
  content:"2025";
  position: fixed;
  bottom: 18px;
  left: 18px;
  z-index: 999999;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 1px;
  cursor: pointer;

  background: rgba(0,0,0,0.35);
  color: #fff;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  transition: 0.35s ease;
}

/* لمعة بسيطة */
body::after{
  content:"✦ ✧ ✦";
  position: fixed;
  bottom: 46px;
  left: 26px;
  z-index: 999999;
  font-size: 12px;
  opacity: 0.35;
  transition: 0.35s ease;
}

/* عند المرور يتحول بصريًا إلى 2026 */
body:hover::before{
  content:"2026";
  transform: translateY(-2px) scale(1.03);
  background: rgba(0,0,0,0.45);
}

/* حركة النجوم */
body:hover::after{
  opacity: 0.6;
  transform: translateY(-3px);
}