/* تحسينات أزرار التحميل */
.download-btn {
    padding: 1.25rem 2.5rem !important;
    font-weight: 700 !important;
    font-size: 1.1rem !important;
    box-shadow: 0 8px 30px rgba(245, 146, 11, 0.5) !important;
    animation: pulse-glow 2s ease-in-out infinite !important;
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 8px 30px rgba(245, 146, 11, 0.5);
    }

    50% {
        box-shadow: 0 12px 45px rgba(245, 146, 11, 0.7), 0 0 30px rgba(245, 146, 11, 0.4);
    }
}

.download-btn::after {
    content: '⬇';
    position: absolute;
    right: 1rem;
    font-size: 1.5rem;
    opacity: 0;
    transition: all 0.3s ease;
}

.download-btn:hover::after {
    opacity: 1;
    right: 0.5rem;
}

.download-btn:hover {
    transform: translateY(-5px) scale(1.05) !important;
    box-shadow: 0 15px 50px rgba(245, 146, 11, 0.7) !important;
    animation: none !important;
}

.download-btn:active {
    transform: translateY(-2px) scale(0.98) !important;
}

.btn-icon {
    width: 36px !important;
    height: 36px !important;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.btn-label {
    font-size: 0.85rem !important;
    opacity: 0.95 !important;
    font-weight: 600 !important;
}

.btn-store {
    font-size: 1.2rem !important;
    font-weight: 800 !important;
    letter-spacing: 0.5px;
}