.elementor-5237 .elementor-element.elementor-element-946c537{--display:flex;}.elementor-5237 .elementor-element.elementor-element-27b9ea3{width:100%;max-width:100%;}.elementor-5237 .elementor-element.elementor-element-27b9ea3 > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0px 0px 0px 0px;}/* Start custom CSS for html, class: .elementor-element-27b9ea3 *//* ===== REGISTRATION MODAL ===== */
.evol-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.evol-modal-overlay.evol-modal-active {
    display: flex;
    opacity: 1;
}

.evol-modal {
    position: relative;
    width: 90%;
    max-width: 700px;
    height: 85vh;
    background: var(--evol-bg-secondary, #1a1a1a);
    border: 1px solid var(--evol-border-subtle, rgba(250, 241, 178, 0.2));
    border-radius: 20px;
    overflow: hidden;
    transform: translateY(30px) scale(0.95);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
}

.evol-modal-overlay.evol-modal-active .evol-modal {
    transform: translateY(0) scale(1);
}

.evol-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: rgba(1, 1, 1, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #000;
    font-size: 28px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.evol-modal-close:hover {
    background: var(--evol-primary-gold, #FAF1B2);
    color: #0a0a0a;
    border-color: var(--evol-primary-gold, #FAF1B2);
}

/*.evol-modal-iframe {
    width: 100%;
    height: 100%;
    border: none;
}*/
.evol-modal-body {
    width: 100%;
    height: 100%;
    overflow-y: auto;
    padding: 10px 10px;
    background-color: #ffffff;
}

/* Prevent body scroll when modal is open */
body.evol-modal-open {
    overflow: hidden;
}

@media (max-width: 768px) {
    .evol-modal {
        width: 95%;
        height: 90vh;
        border-radius: 16px;
    }
}/* End custom CSS */