.android_app_prompt[hidden] {
    display: none !important;
}

.android_app_prompt {
    position: fixed;
    z-index: 250000;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 16px;
    background: rgba(20, 32, 38, 0.56);
}

.android_app_prompt_panel {
    position: relative;
    width: min(100%, 410px);
    max-height: calc(100dvh - 32px);
    overflow-y: auto;
    padding: 24px 20px 18px;
    border: 1px solid #d7eef5;
    border-radius: 8px;
    background: #fff;
    color: #263238;
    text-align: center;
    box-shadow: 0 14px 38px rgba(0, 0, 0, 0.2);
}

.android_app_prompt_logo {
    display: block;
    width: 76px;
    height: 76px;
    margin: 0 auto 12px;
    border-radius: 8px;
    object-fit: contain;
}

.android_app_prompt h2 {
    margin: 0;
    color: #263238;
    font-size: 20px;
    line-height: 1.3;
    letter-spacing: 0;
}

.android_app_prompt p {
    margin: 9px auto 17px;
    max-width: 340px;
    color: #596a72;
    font-size: 14px;
    line-height: 1.5;
}

.android_app_prompt_close {
    position: absolute;
    top: 8px;
    right: 8px;
    display: inline-grid;
    width: 40px;
    height: 40px;
    padding: 0;
    place-items: center;
    border: 0;
    background: transparent;
    color: #263238;
    font-size: 20px;
    cursor: pointer;
}

.android_app_prompt_actions {
    display: grid;
    gap: 10px;
    width: min(100%, 330px);
    margin: 0 auto;
}

.android_app_prompt_button {
    display: flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-sizing: border-box;
    padding: 10px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.25;
    text-decoration: none;
}

.android_app_prompt_button_play {
    border: 1px solid #263238;
    background: #263238;
    color: #fff;
}

.android_app_prompt_button_apk {
    border: 1px solid #6adffc;
    background: #eefbff;
    color: #263238;
}

.android_app_prompt_button i {
    flex: 0 0 auto;
    font-size: 20px;
}

.android_app_prompt_later {
    min-height: 42px;
    margin: 8px auto 0;
    padding: 8px 14px;
    border: 0;
    background: transparent;
    color: #596a72;
    font-size: 13px;
    text-decoration: underline;
    cursor: pointer;
}

.android_app_prompt_open {
    overflow: hidden;
}

@media (min-width: 700px) {
    .android_app_prompt {
        align-items: center;
    }
}
