.launcher-fallback {
    position: fixed;
    inset: 0;
    z-index: 1400;
    display: none;
    place-items: center;
    padding: 16px;
}

.launcher-fallback.is-open {
    display: grid;
}

.launcher-fallback__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(2, 6, 14, 0.7);
    backdrop-filter: blur(4px);
}

.launcher-fallback__card {
    position: relative;
    width: min(500px, 94vw);
    border-radius: 16px;
    border: 1px solid rgba(148, 163, 184, 0.28);
    background: linear-gradient(180deg, rgba(15, 23, 35, 0.98), rgba(8, 12, 20, 0.98));
    padding: 20px;
    display: grid;
    gap: 10px;
}

.launcher-fallback__title {
    margin: 0;
    font-family: "Rajdhani", system-ui, sans-serif;
    font-size: 29px;
    line-height: 1;
    color: #f5f7fb;
}

.launcher-fallback__text {
    margin: 0;
    color: #c6d0e1;
    font-size: 14px;
    line-height: 1.6;
}

.launcher-fallback__actions {
    margin-top: 4px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.launcher-fallback__btn {
    width: auto;
    min-width: 164px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    padding: 12px 14px;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(130deg, #1f7aff, #0f5ad4);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.launcher-fallback__btn:hover {
    transform: translateY(-1px);
    filter: brightness(1.04);
    box-shadow: 0 12px 26px rgba(15, 90, 212, 0.35);
}

.launcher-fallback__btn--secondary {
    background: rgba(71, 85, 105, 0.6);
}

.launcher-fallback__btn--secondary:hover {
    box-shadow: none;
}

.launcher-fallback__btn.disabled,
.launcher-fallback__btn[aria-disabled="true"] {
    cursor: not-allowed;
    opacity: 0.7;
}

.launcher-fallback__hint {
    margin: 0;
    color: #fca5a5;
    font-size: 13px;
}
