.subscribeAlertContainer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;

    background-color: rgba(47, 58, 53, 0.34);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 1000;
    padding: 18px;
    box-sizing: border-box;
}

.subscribeAlertWrapper {
    max-width: 380px;
    width: 100%;
    margin: auto;

    background-color: #fffefa;
    border: 1px solid rgba(95, 127, 114, 0.18);
    border-radius: 22px;

    box-shadow:
        0 24px 60px rgba(47, 58, 53, 0.20),
        0 2px 10px rgba(47, 58, 53, 0.08);

    overflow: hidden;
    padding: 24px;
    box-sizing: border-box;

    animation: fadeIn 0.26s ease;
}

.subscribeTextWrapper {
    margin-bottom: 18px;
    text-align: center;
}

.subscribeText {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Inter, Arial, "Noto Sans", sans-serif;
    font-size: 18px;
    line-height: 1.45;
    color: #2f3a35;
    margin: 0;
    font-weight: 750;
    letter-spacing: -0.01em;
}

.subscribeBtnsContainer {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.agreeBtn,
.discardBtn {
    flex: 1;
    min-width: 0;
}

.agreeBtn button,
.discardBtn button {
    width: 100%;
    min-height: 46px;
    padding: 11px 14px;

    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Inter, Arial, "Noto Sans", sans-serif;
    font-size: 15px;
    line-height: 1.15;
    font-weight: 800;

    border-radius: 14px;
    cursor: pointer;

    transition:
        transform 0.18s ease,
        box-shadow 0.22s ease,
        background-color 0.22s ease,
        border-color 0.22s ease,
        color 0.22s ease;
}

.agreeBtn button {
    background-color: #5f7f72;
    border: 1px solid #5f7f72;
    color: #ffffff;
    box-shadow: 0 10px 22px rgba(95, 127, 114, 0.22);
}

.agreeBtn button:hover {
    background-color: #48695f;
    border-color: #48695f;
    box-shadow: 0 14px 28px rgba(72, 105, 95, 0.26);
    transform: translateY(-1px);
}

.discardBtn button {
    background-color: #f3f1ea;
    border: 1px solid rgba(95, 127, 114, 0.20);
    color: #5f685f;
    box-shadow: none;
}

.discardBtn button:hover {
    background-color: #e9e7df;
    border-color: rgba(95, 127, 114, 0.30);
    color: #2f3a35;
    transform: translateY(-1px);
}

.agreeBtn button:active,
.discardBtn button:active {
    transform: translateY(0);
    box-shadow: none;
}

.agreeBtn button:focus-visible,
.discardBtn button:focus-visible {
    outline: 3px solid rgba(95, 127, 114, 0.28);
    outline-offset: 3px;
}

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

    .subscribeAlertWrapper {
        max-width: 100%;
        padding: 20px;
        border-radius: 20px;
    }

    .subscribeText {
        font-size: 17px;
    }

    .subscribeBtnsContainer {
        flex-direction: column;
        gap: 8px;
    }

    .agreeBtn button,
    .discardBtn button {
        min-height: 48px;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(8px) scale(0.97);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}
