/* App Banner Styles */
.app-banner {
    background-color: #0B181B;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 100%;
    font-weight: 400;
}

.banner-left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.close-btn {
    background: url('../../images/close-btn.png') no-repeat center;
    background-size: contain;
    border: none;
    width: 1rem;
    height: 1rem;
    cursor: pointer;
    padding: 0;
}

.banner-text {
    color: white;
    font-size: 0.875rem;
    font-weight: 500;
}

.banner-right {
    display: flex;
    align-items: center;
}

.download-btn {
    background: transparent;
    border: 1px solid #00FF90;
    color: #00FF90;
    padding: 0.375rem 0.625rem;
    border-radius: 24px;
    font-size: 0.875rem;
    font-weight: 400;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.375rem;
    transition: all 0.2s ease;
}

.download-icon {
    background: url('../../images/dl-btn.svg') no-repeat center;
    background-size: contain;
    width: 1rem;
    height: 1rem;
    display: inline-block;
}

/* ========================================
   TABLET & DESKTOP STYLES
   ======================================== */
@media (min-width: 768px) {
    .app-banner {
        display: none;
    }
}
