.jungle-popup {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: fixed;
    top: 0;
    right: -100%;
    width: 600px;
    height: 100vh;
    color: white;
    transition: right 1s ease;
    z-index: 9999;
    overflow-y: auto;
    padding: 30px;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
}

#popupOnline {
    background-image: linear-gradient(180deg, #ff0164 0%, #4a0b8f 100%);


    .popup-content {
        display: flex;
        flex-direction: column;
    }

    .popup-content h3 {
        margin: 0;
        margin-top: 20px;

        font-weight: 800;
        font-size: 1.6rem;
        color: var(--jungle-white);
        text-transform: uppercase;
    }

    .popup-content h5 {
        margin: 0;
        margin-top: 15px;
        font-size: 1.2rem;
        color: var(--jungle-yellow);
        text-transform: uppercase;
    }

    .popup-content ul {
        list-style: none;
        padding-left: 0;
        margin: 0;
    }

    .popup-content li a {
        margin: 5px 0;
        font-weight: 600;
        color: var(--jungle-cyan);
        font-size: 24px;
        text-decoration: none;
    }

    .popup-content li a:hover {
        color: var(--jungle-yellow);
    }

    .popup-close {
        background: transparent;
        border: none;
        color: white;
        font-size: 24px;
        cursor: pointer;
        position: absolute;
        top: 20px;
        right: 20px;
    }
}

#popupParks {
    background-image: linear-gradient(180deg, #352EC0 0%, #091968 100%);


    .popup-content {
        display: flex;
        flex-direction: column;
    }

    .popup-content h3 {
        margin: 0;
        margin-top: 20px;

        font-weight: 800;
        font-size: 1.6rem;
        color: var(--jungle-white);
        text-transform: uppercase;
    }

    .popup-content h5 {
        margin: 0;
        margin-top: 15px;
        font-size: 1.2rem;
        color: var(--jungle-pink);
        text-transform: uppercase;
    }

    .popup-content ul {
        list-style: none;
        padding-left: 0;
        margin: 0;
    }

    .popup-content li a {
        margin: 5px 0;
        font-weight: 600;
        color: var(--jungle-cyan);
        font-size: 24px;
        text-decoration: none;
    }

    .popup-content li a:hover {
        color: var(--jungle-pink);
    }

    .popup-close {
        background: transparent;
        border: none;
        color: white;
        font-size: 24px;
        cursor: pointer;
        position: absolute;
        top: 20px;
        right: 20px;
    }

}

.jungle-popup.active {
    right: 0;
}