.optep-android-download {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 48px;
    gap: 10px;
    margin-top: 14px;
}

.optep-android-download-button,
.optep-android-copy-button {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    text-decoration: none;
    font: inherit;
    font-weight: 850;
    transition:
        transform .16s ease,
        border-color .16s ease,
        background .16s ease,
        box-shadow .16s ease;
}

.optep-android-download-button {
    gap: 9px;
    padding: 0 16px;
    color: #5b21b6;
    background: #f5f3ff;
    border: 1px solid #ddd6fe;
    font-size: 12px;
}

.optep-android-download-button:hover,
.optep-android-download-button:focus-visible {
    color: #4c1d95;
    background: #ede9fe;
    border-color: #c4b5fd;
    box-shadow: 0 9px 20px rgba(109, 40, 217, .12);
    transform: translateY(-1px);
    outline: none;
}

.optep-android-download-icon {
    width: 27px;
    height: 27px;
    display: inline-grid;
    place-items: center;
    color: #fff;
    background: linear-gradient(135deg, #6d28d9, #8b5cf6);
    border-radius: 9px;
    font-size: 17px;
    line-height: 1;
}

.optep-android-copy-button {
    width: 48px;
    padding: 0;
    color: #6d28d9;
    background: #fff;
    border: 1px solid #ddd6fe;
    cursor: pointer;
    font-size: 20px;
}

.optep-android-copy-button:hover,
.optep-android-copy-button:focus-visible,
.optep-android-copy-button.is-copied {
    color: #fff;
    background: #6d28d9;
    border-color: #6d28d9;
    outline: none;
    transform: translateY(-1px);
}

.optep-android-copy-status {
    grid-column: 1 / -1;
    min-height: 16px;
    margin: -2px 0 0;
    color: #15803d;
    font-size: 10px;
    font-weight: 800;
    text-align: center;
}

@media (max-width: 520px) {
    .optep-android-download {
        grid-template-columns: minmax(0, 1fr) 46px;
    }

    .optep-android-download-button {
        padding: 0 12px;
        font-size: 11px;
    }
}
