/* Updated Compact Premium Button */
.premium-download-btn {
  position: fixed;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  
  /* Size ko thoda chota kiya gaya hai */
  padding: 10px 24px;      /* Pehle 14px 35px tha */
  font-size: 11px;         /* Thoda aur crisp font */
  font-weight: 700;
  text-decoration: none;
  color: white;
  border-radius: 30px;     /* Small size ke hisaab se radius adjust kiya */
  
  /* Background aur Glow wahi rakha hai (Premium look ke liye) */
  background: linear-gradient(45deg, #ff00cc, #3333ff, #00d4ff);
  background-size: 200% auto;
  box-shadow: 0 8px 20px rgba(51, 51, 255, 0.4);
  
  border: 1.5px solid rgba(255, 255, 255, 0.2); 
  z-index: 10000;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  align-items: center;
  gap: 8px;                /* Gap kam kiya gaya hai */
  text-transform: uppercase;
  letter-spacing: 0.8px;
  cursor: pointer;
}

/* Hover Effect adjustment */
.premium-download-btn:hover {
  transform: translateX(-50%) translateY(-3px) scale(1.03); 
  box-shadow: 0 12px 25px rgba(51, 51, 255, 0.6);
}

/* Icon size adjustment */
.btn-icon {
  font-size: 13px;         /* Icon ko bhi thoda chota kiya */
  animation: bounce 2s infinite;
}