/* Launch gate notices: fixed toast popups, never part of the page flow. */
.df-launch-gate-notices {
    position: fixed;
    top: 22px;
    left: 50%;
    z-index: 80;
    display: grid;
    width: min(620px, calc(100vw - 44px));
    gap: 10px;
    transform: translateX(-50%);
    pointer-events: none;
}

.df-launch-gate-notices .df-launch-gate-notice {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    width: 100%;
    margin: 0;
    padding: 13px 13px 13px 17px;
    border: 1px solid rgba(58, 31, 16, .1);
    border-radius: 18px;
    box-shadow: 0 22px 70px rgba(58, 31, 16, .14);
    backdrop-filter: blur(14px);
    pointer-events: auto;
}

.df-launch-gate-notices .df-launch-gate-notice span {
    min-width: 0;
}

.df-launch-gate-notices .df-launch-gate-notice button {
    display: inline-grid;
    width: 32px;
    height: 32px;
    min-height: 0;
    padding: 0;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: rgba(58, 31, 16, .08);
    color: currentColor;
    box-shadow: none;
    font: 900 20px/1 var(--df-launch-sans, ui-sans-serif, sans-serif);
    cursor: pointer;
}

.df-launch-gate-notices .df-launch-gate-notice button:hover,
.df-launch-gate-notices .df-launch-gate-notice button:focus {
    background: rgba(58, 31, 16, .14);
    transform: none;
}

@media (max-width: 700px) {
    body.df-launch-gate-body .df-launch-gate-notices {
        top: 64px;
        width: calc(100vw - 24px);
        gap: 8px;
    }

    body.df-launch-gate-body .df-launch-gate-notices .df-launch-gate-notice {
        padding: 11px 11px 11px 14px;
        border-radius: 16px;
        font-size: 12px;
        line-height: 1.35;
    }

    body.df-launch-gate-body .df-launch-gate-notices .df-launch-gate-notice button {
        width: 30px;
        height: 30px;
        font-size: 18px;
    }
}

/* Launch gate feedback: real popup overlay for signup results. */
.df-launch-gate-notices {
    position: fixed;
    inset: 0;
    z-index: 90;
    display: grid;
    width: auto;
    padding: 24px;
    place-items: center;
    gap: 14px;
    background: rgba(45, 28, 15, .24);
    transform: none;
    pointer-events: auto;
    backdrop-filter: blur(10px);
}

.df-launch-gate-notices .df-launch-gate-notice {
    width: min(460px, calc(100vw - 36px));
    max-width: 100%;
    padding: 24px 22px 20px;
    border-radius: 24px;
    box-shadow: 0 28px 90px rgba(45, 28, 15, .24);
    text-align: center;
}

.df-launch-gate-notices .df-launch-gate-notice span {
    display: block;
    font-size: 16px;
    line-height: 1.55;
}

.df-launch-gate-notices .df-launch-gate-notice button {
    margin: 16px auto 0;
    width: auto;
    min-width: 120px;
    height: 42px;
    padding: 0 18px;
    border-radius: 999px;
    background: #3a1f10;
    color: #fff7ee;
    font-size: 0;
}

.df-launch-gate-notices .df-launch-gate-notice button::before {
    content: "Sluiten";
    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

@media (max-width: 700px) {
    body.df-launch-gate-body .df-launch-gate-notices {
        top: 0;
        width: auto;
        padding: 16px;
    }

    body.df-launch-gate-body .df-launch-gate-notices .df-launch-gate-notice {
        padding: 22px 18px 18px;
        border-radius: 22px;
    }

    body.df-launch-gate-body .df-launch-gate-notices .df-launch-gate-notice span {
        font-size: 14px;
    }
}
