.upiwc-payment-content .supm-launcher-mount {
    align-items: stretch;
    text-align: left;
    padding: 0;
    border: 0;
    background: transparent;
}

.supm-launcher {
    --supm-bg: linear-gradient(160deg, rgba(6, 89, 227, 0.08), rgba(14, 165, 233, 0.06));
    --supm-card: #ffffff;
    --supm-border: rgba(15, 23, 42, 0.1);
    --supm-text: #14213d;
    --supm-muted: #5b6472;
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    padding: 18px;
    border: 1px solid var(--supm-border);
    border-radius: 20px;
    background: var(--supm-bg);
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
}

.supm-launcher[data-theme="dark"] {
    --supm-bg: linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(129, 140, 248, 0.08));
    --supm-card: rgba(15, 23, 42, 0.72);
    --supm-border: rgba(255, 255, 255, 0.12);
    --supm-text: #f8fafc;
    --supm-muted: #cbd5e1;
}

.supm-launcher__header {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.supm-launcher__subtitle,
.supm-launcher__helper,
.supm-launcher__footer {
    margin: 0;
    color: var(--supm-muted);
    font-size: 12px;
    line-height: 1.55;
}

.supm-launcher__helper {
    padding: 10px 12px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.72);
}

.supm-launcher[data-theme="dark"] .supm-launcher__helper {
    background: rgba(15, 23, 42, 0.55);
}

.supm-launcher__meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.supm-launcher__meta-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 12px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(15, 23, 42, 0.07);
}

.supm-launcher[data-theme="dark"] .supm-launcher__meta-item {
    background: rgba(15, 23, 42, 0.6);
    border-color: rgba(255, 255, 255, 0.08);
}

.supm-launcher__meta-item span {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--supm-muted);
}

.supm-launcher__meta-item strong {
    color: var(--supm-text);
    font-size: 13px;
    line-height: 1.45;
    word-break: break-word;
}

.supm-launcher__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.supm-launcher__button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    aspect-ratio: 1 / 1;
    min-height: 0;
    padding: clamp(6px, 1.8vw, 10px);
    border: 1px solid rgba(15, 23, 42, 0.09);
    border-radius: 16px;
    background: var(--supm-card);
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.06);
    text-align: center;
    transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
}

.supm-launcher__button:hover,
.supm-launcher__button:focus {
    transform: translateY(-1px);
    border-color: rgba(6, 89, 227, 0.2);
    box-shadow: 0 12px 24px rgba(6, 89, 227, 0.12);
    outline: none;
}

.supm-launcher__button.is-launching {
    border-color: rgba(6, 89, 227, 0.32);
    box-shadow: 0 0 0 4px rgba(6, 89, 227, 0.08);
}

.supm-launcher__icon-wrap {
    display: flex;
    flex: 0 0 clamp(34px, 6vw, 56px);
    align-items: center;
    justify-content: center;
    width: clamp(34px, 6vw, 56px);
    height: clamp(34px, 6vw, 56px);
    padding: 0;
    border-radius: clamp(10px, 1.5vw, 14px);
    background: transparent;
    box-shadow: none;
    overflow: hidden;
}

.supm-launcher__icon {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: inherit;
}

.supm-launcher__status {
    margin: 0;
    padding: 11px 12px;
    border-radius: 12px;
    color: var(--supm-text);
    background: rgba(6, 89, 227, 0.08);
}

.supm-launcher__footer {
    border-top: 1px dashed rgba(15, 23, 42, 0.12);
    padding-top: 12px;
}

.supm-launcher[data-theme="dark"] .supm-launcher__footer {
    border-top-color: rgba(255, 255, 255, 0.12);
}

@media (min-width: 576px) {
    .supm-launcher__header {
        flex-direction: row;
        align-items: start;
        justify-content: space-between;
    }

    .supm-launcher__helper {
        max-width: 210px;
    }

}

@media (max-width: 420px) {
    .supm-launcher {
        padding: 14px;
    }

    .supm-launcher__grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 8px;
    }

    .supm-launcher__meta {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
