.dm-launch-alert {
    display: grid;
    gap: 10px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.dm-launch-alert__intro {
    display: grid;
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 9px;
    align-items: center;
}

.dm-launch-alert__icon {
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    color: #fff;
    background: linear-gradient(145deg, #ff4747, #d91f28);
    border-radius: 9px;
    box-shadow: 0 8px 20px -12px rgba(255, 59, 71, 0.9);
}

.dm-launch-alert__icon svg {
    width: 16px;
    height: 16px;
}

.dm-launch-alert__copy {
    display: grid;
    gap: 2px;
    min-width: 0;
}

.dm-launch-alert__copy strong {
    color: #fff;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 850;
    line-height: 1.15;
}

.dm-launch-alert__copy span {
    color: rgba(235, 242, 255, 0.65);
    font-size: 0.68rem;
    font-weight: 650;
    line-height: 1.35;
}

.dm-launch-alert__form {
    position: relative;
    display: grid;
    gap: 7px;
}

.dm-launch-alert__fields {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 7px;
}

.dm-launch-alert__input {
    min-width: 0;
    width: 100%;
    height: 40px;
    padding: 0 11px;
    color: #fff;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1;
    outline: 0;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.dm-launch-alert__input::placeholder {
    color: rgba(235, 242, 255, 0.43);
}

.dm-launch-alert__input:focus {
    background: rgba(255, 255, 255, 0.075);
    border-color: rgba(255, 71, 71, 0.75);
    box-shadow: 0 0 0 3px rgba(255, 59, 71, 0.14);
}

.dm-launch-alert__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 86px;
    height: 40px;
    padding: 0 13px;
    color: #fff;
    background: linear-gradient(180deg, #ff4747, #e2232d);
    border: 0;
    border-radius: 10px;
    box-shadow: 0 9px 22px -14px rgba(255, 59, 71, 0.9);
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 850;
    line-height: 1;
    cursor: pointer;
    transition: transform 0.16s ease, filter 0.16s ease;
}

.dm-launch-alert__button:hover {
    filter: brightness(1.08);
    transform: translateY(-1px);
}

.dm-launch-alert__button:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 2px;
}

.dm-launch-alert__button:disabled {
    cursor: default;
    filter: saturate(0.7);
    opacity: 0.78;
    transform: none;
}

.dm-launch-alert__privacy {
    margin: 0;
    color: rgba(235, 242, 255, 0.46);
    font-size: 0.6rem;
    line-height: 1.35;
}

.dm-launch-alert__privacy a {
    color: rgba(255, 255, 255, 0.72);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.dm-launch-alert__status {
    margin: 0;
    padding: 8px 9px;
    color: #baf5d2;
    background: rgba(21, 170, 93, 0.11);
    border: 1px solid rgba(65, 211, 132, 0.22);
    border-radius: 9px;
    font-size: 0.67rem;
    font-weight: 750;
    line-height: 1.35;
}

.dm-launch-alert__status.is-error {
    color: #ffd1d4;
    background: rgba(255, 59, 71, 0.1);
    border-color: rgba(255, 71, 71, 0.24);
}

.dm-launch-alert__status[hidden],
.dm-launch-alert__honeypot {
    display: none !important;
}

.dm-gta6-countdown.is-complete .dm-launch-alert {
    display: none;
}

@media (max-width: 380px) {
    .dm-launch-alert__fields {
        grid-template-columns: minmax(0, 1fr);
    }

    .dm-launch-alert__button {
        width: 100%;
    }
}
