/* APP DOWNLOAD BANNER */
.app-banner {
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    border-bottom: 3px solid #7ED321;
    padding: 12px 20px;
    display: none;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: slideDown 0.5s ease-out;
    min-height: 60px;
}

.app-banner.show {
    display: flex;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.app-banner-content {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.app-banner-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #7ED321, #5CB51B);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(126, 211, 33, 0.3);
    flex-shrink: 0;
}

.app-banner-icon img {
    width: 100%;
    height: 100%;
}

.app-banner-text {
    color: white;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.2;
}

.app-banner-bonus {
    color: #7ED321;
    font-size: 24px;
    font-weight: bold;
    text-shadow: 0 2px 4px rgba(126, 211, 33, 0.3);
}

.app-banner-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn.btn-primary {
    background: linear-gradient(135deg, #7ED321, #5CB51B);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(126, 211, 33, 0.3);
    text-decoration: none;
    display: inline-block;
}

.btn.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(126, 211, 33, 0.5);
    color: white;
    text-decoration: none;
}

.app-banner-close {
    border: none;
    color: #7ED321;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    font-size: 24px;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
}

.app-banner-close:hover {
    background: rgba(126, 211, 33, 0.1);
    transform: scale(1.1);
}

body.banner-visible {
    padding-top: 60px;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .app-banner {
        padding: 10px 15px;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .app-banner-content {
        gap: 8px;
        flex: 1;
        min-width: 200px;
    }
    
    .app-banner-icon {
        width: 35px;
        height: 35px;
    }
    
    .app-banner-text {
        font-size: 14px;
    }
    
    .app-banner-bonus {
        font-size: 16px;
    }
    
    .btn.btn-primary {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .app-banner-close {
        width: 28px;
        height: 28px;
        font-size: 20px;
        margin-left: 10px;
    }
    
    body.banner-visible {
        padding-top: 80px;
    }
}

@media (max-width: 480px) {
    .app-banner {
        padding: 8px 12px;
        flex-direction: column;
        align-items: stretch;
    }
    
    .app-banner-content {
        width: 100%;
        justify-content: center;
    }
    
    .app-banner-text {
        font-size: 13px;
    }
    
    .app-banner-bonus {
        font-size: 15px;
    }
    
    .btn.btn-primary {
        padding: 8px 16px;
        font-size: 12px;
        width: 100%;
        text-align: center;
    }
    
    .app-banner-close {
        position: absolute;
        right: 5px;
        top: 5px;
        margin-left: 0;
    }
    
    body.banner-visible {
        padding-top: 120px;
    }
}