.splash_overlay {
    position: fixed;
    display: flex;
    background: rgba(0, 0, 0, 0.5);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all ease-in-out 0.3s;
}

.splash_overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.splash_overlay .splash_popup_wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-height: 100vh;
    overflow: auto;
}

.splash_overlay .splash_popup {
    position: relative;
    background: linear-gradient(45deg, rgba(134,31,86,1) 0%, rgba(26,13,89,1) 100%);
    color: #fff;
    padding: 40px 60px;
    margin: 30px;
    text-align: center;
    max-width: 800px;
    width: 100%;
    border-radius: 5px;
}

.splash_overlay .popup_close {
    position: absolute;
    width: 30px;
    height: 30px;
    font-size: 1.5rem;
    line-height: 30px;
    cursor: pointer;
    top: 5px;
    right: 5px;
}

.splash_overlay .popup_title {
    font-family: var(--soltech-font--secondary);
    font-size: 30px;
    font-weight: bold;
    padding-bottom: 20px;
}

.splash_overlay .popup_content {
    font-size: 20px;
}

.splash_overlay .popup_content p {
    margin: 0 0 1.5rem;
}

.splash_overlay .popup_content p:last-child {
    margin-bottom: 0;
}

.splash_overlay .cta_btn {
    background: none;
    font-family: var(--soltech-font--secondary);
    font-size: 20px;
    border: 3px solid #fff;
    border-radius: 0;
}

.splash_overlay .cta_btn:hover {
    background-color: #fff;
    color: var(--soltech-color--purple);
}

@media (max-width: 576px) {
    .splash_overlay .splash_popup {
        padding: 30px;
        margin-left: 1rem;
        margin-right: 1rem;
    }

    .splash_overlay .popup_title {
        font-size: 1.5rem;
    }

    .splash_overlay .popup_content {
        font-size: 18px;
    }

    .splash_overlay .cta_btn {
        font-size: 18px;
        padding: 0 15px;
    }
}