.luts-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 100001;
    display: flex;
    justify-content: center;
    align-items: center;
}

.luts-modal {
    background-color: #0E1034;
    border-radius: 5px;
    max-width: 640px;
    width: 90%;
    padding: 50px 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.luts-modal h2 {
    color: #fff;
    font-family: railroad-gothic-atf, sans-serif;
    font-size: 3.75rem;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 1rem;
}

@media screen and (max-width: 767px) {
    .luts-modal h2 {
        font-size: 3rem;
    }
}

.luts-modal p {
    color: #fff;
    font-size: 1rem;
    line-height: 1.2;
}