@media (max-width: 991px) {
    #installBanner,
    #iosBanner {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        padding: 12px 15px;
        z-index: 1001;
        box-shadow: 0 2px 10px rgba(0,0,0,0.2);
        animation: slideDown 0.3s ease;
    }
    
    .install-banner-content {
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: 14px;
    }
    
    .install-banner-content .mdi-notification-play-install,
    .install-banner-content .mdi-apple {
        font-size: 24px;
    }
    
    .install-text {
        flex: 1;
        line-height: 1.4;
    }
    
    .install-text small {
        display: block;
        opacity: 0.9;
        font-size: 12px;
        margin-top: 2px;
    }
    
    .share-icon {
        display: inline-block;
        font-weight: bold;
        font-size: 16px;
        padding: 2px 6px;
        background: rgba(255,255,255,0.2);
        border-radius: 4px;
        margin: 0 2px;
    }
    
    #installBannerBtn {
        background: white;
        color: #667eea;
        border: none;
        padding: 8px 16px;
        border-radius: 20px;
        font-weight: 600;
        font-size: 13px;
        white-space: nowrap;
    }
    
    .close-btn {
        background: none;
        border: none;
        color: white;
        font-size: 24px;
        padding: 0;
        width: 30px;
        height: 30px;
        cursor: pointer;
        flex-shrink: 0;
    }
    
    @keyframes slideDown {
        from { 
            transform: translateY(-100%); 
            opacity: 0;
        }
        to { 
            transform: translateY(0); 
            opacity: 1;
        }
    }
    
    /* Προσθέτουμε padding στο body όταν το banner είναι ορατό */
    body.install-banner-visible {
        padding-top: 75px;
    }
    
    /* iOS specific styling */
    .ios-banner {
        background: linear-gradient(135deg, #000000 0%, #434343 100%);
    }
}

@media (min-width: 992px) {
    #installBanner,
    #iosBanner {
        display: none !important;
    }
}
</style>

<style>
.ios-instructions {
    flex: 1;
}

.ios-step {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 6px 0;
    font-size: 13px;
}

.step-number {
    background: rgba(255,255,255,0.2);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.share-icon-big {
    display: inline-block;
    font-size: 18px;
    background: rgba(255,255,255,0.3);
    padding: 4px 8px;
    border-radius: 6px;
    margin: 0 4px;
}

.arrow-down {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 30px;
    animation: bounce 1s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}