.povgay-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.povgay-popup-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0 20px;
}

.povgay-popup-close {
    position: absolute;
    top: -60px;
    background: #fff;
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.povgay-popup-content .buttons-container {
    position: absolute;
    line-height: 1;
    bottom: -20px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.povgay-popup-content .buttons-container .btn {
    color: #fff;
    font-weight: 800;
    padding: 15px 30px;
    font-size: 16px;
    border-radius: 30px;
    transition: all linear 0.2s;
    text-align: center;
    text-transform: uppercase;
    margin: 0;
    width: 220px;
}

.povgay-popup-content .buttons-container .btn:first-child {
    margin-right: 10px;
}

.povgay-popup-content .buttons-container .btn:last-child {
    margin-left: 10px;
}

.povgay-popup-content .buttons-container .btn-primary {
    background: var(--gay-color);
}

.povgay-popup-content .buttons-container .btn-secondary {
    background: var(--povgay-color);
}

@media (max-width: 900px) {
    .povgay-popup-content .buttons-container {
        width: auto;
        flex-direction: column;
        bottom: 10px;
    }

    .povgay-popup-content .buttons-container .btn:first-child {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .povgay-popup-content .buttons-container .btn:last-child {
        margin-left: 0;
    }
}
