/* تطبيق تحميل التطبيق - تحسينات الشكل والتجاوب */
.app-download-link {
    text-decoration: none !important;
    transition: all 0.3s ease;
    border-radius: 8px;
    padding: 8px 12px !important;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    margin-right: 10px;
    border: none;
    outline: none;
}

.app-download-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    color: white !important;
    text-decoration: none !important;
}

.app-download-link:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.3);
}

.app-download-content {
    display: flex;
    align-items: center;
    gap: 8px;
}

.app-icon {
    height: 32px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.app-download-link:hover .app-icon {
    transform: scale(1.1);
}

.app-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    text-align: right;
}

.app-text-small {
    font-size: 11px;
    font-weight: 500;
    opacity: 0.9;
    margin: 0;
}

.app-text-large {
    font-size: 14px;
    font-weight: 700;
    margin-top: -2px;
    margin: 0;
}

/* تجاوب الموبايل */
@media (max-width: 991.98px) {
    .app-download-link {
        padding: 6px 10px !important;
        margin-right: 5px;
    }
    
    .app-icon {
        height: 28px;
    }
    
    .app-text-small {
        font-size: 10px;
    }
    
    .app-text-large {
        font-size: 12px;
    }
}

@media (max-width: 767.98px) {
    .app-download-link {
        padding: 5px 8px !important;
        margin-right: 3px;
    }
    
    .app-icon {
        height: 24px;
    }
    
    .app-text-small {
        font-size: 9px;
    }
    
    .app-text-large {
        font-size: 11px;
    }
}

@media (max-width: 575.98px) {
    .app-download-content {
        gap: 6px;
    }
    
    .app-icon {
        height: 22px;
    }
    
    .app-text-small {
        font-size: 8px;
    }
    
    .app-text-large {
        font-size: 10px;
    }
}

/* تحسينات إضافية للشكل */
.app-download-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    border-radius: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.app-download-link:hover::before {
    opacity: 1;
}

/* تحسين للشاشات الصغيرة جداً */
@media (max-width: 400px) {
    .app-download-link {
        padding: 4px 6px !important;
        margin-right: 2px;
    }
    
    .app-icon {
        height: 20px;
    }
    
    .app-text-small {
        font-size: 7px;
    }
    
    .app-text-large {
        font-size: 9px;
    }
    
    .app-download-content {
        gap: 4px;
    }
}
