.app-install-banner {
    display: none;
}

@media (max-width: 767.98px) {
    .app-install-banner:not([hidden]) {
        display: flex;
        align-items: center;
        gap: 12px;
        position: fixed;
        top: 8px;
        left: 8px;
        right: 8px;
        z-index: 2000;
        min-height: 72px;
        padding: 12px 16px 12px 12px;
        background: #202124;
        border-radius: 16px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.28);
        text-decoration: none;
        font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    }

    body.has-app-install-banner {
        padding-top: 92px;
    }

    body.has-app-install-banner .header.position-absolute {
        top: 92px;
    }

    .app-install-banner__icon {
        flex-shrink: 0;
        width: 52px;
        height: 52px;
        border-radius: 12px;
        background: #004899;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }

    .app-install-banner__icon img {
        width: 38px;
        height: 38px;
        object-fit: contain;
    }

    .app-install-banner__text {
        flex: 1;
        min-width: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 3px;
        line-height: 1.3;
    }

    .app-install-banner__title {
        color: #fff;
        font-size: 16px;
        font-weight: 600;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .app-install-banner__subtitle {
        color: #c8ccd1;
        font-size: 13px;
        font-weight: 400;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .app-install-banner__cta {
        flex-shrink: 0;
        color: #8ab4f8;
        font-size: 17px;
        font-weight: 700;
        text-decoration: none;
        padding: 10px 6px 10px 10px;
    }
}
