
.eip-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.eip-overlay.active {
    opacity: 1;
    visibility: visible;
}

.eip-container {
    background: white;
    border-radius: 20px;
    max-width: 1300px;
    width: 100%;
    position: relative;
    transform: scale(0.7) translateY(50px);
    transition: all 0.3s ease;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.eip-overlay.active .eip-container {
    transform: scale(1) translateY(0);
}

.eip-header {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 30px;
    text-align: center;
    position: relative;
}

.eip-header h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    margin-top: 0;
}

.eip-header p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
}

.eip-body {
    padding: 64px;
    color: #333;
}

.eip-body h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2c3e50;
    margin-top: 0;
}

.eip-image {
    width: 100%;
}
.eip-offer-code {
    background: #f8f9fa;
    border: 2px dashed var(--eip-primary-color, #0DB4E9);
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    margin: 20px 0;
}

.eip-offer-code .code {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--eip-primary-color, #0DB4E9);
    font-family: "Courier New", monospace;
}

.eip-actions {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.eip-btn {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.eip-btn.primary {
    background: var(--eip-primary-color, #0DB4E9);
    color: white;
    padding: 16px 40px;
    border-radius: 50px;
    float:right;
}

.eip-btn.primary:hover {
    background: var(--eip-primary-color-dark, #0C1D62);
}

.eip-btn.secondary {
    background: #f8f9fa;
    color: #6c757d;
    border: 2px solid #dee2e6;
}

.eip-btn.secondary:hover {
    background: #e9ecef;
    border-color: #adb5bd;
}

.eip-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    /* font-size: 1.5rem; */
    /* color: white; */
    cursor: pointer;
    /* width: 30px; */
    /* height: 30px; */
    border-radius: 50%;
    /* display: flex; */
    /* align-items: center; */
    /* justify-content: center; */
    /* transition: all 0.3s ease; */
    z-index: 2;
}

/* .eip-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
} */

.eip-email-input {
    width: 100%!important;
    padding: 12px 15px!important;
    border: 2px solid #dee2e6!important;
    border-radius: 50px!important;
    font-size: 16px!important;
    height: unset!important;
    margin-bottom: 5px!important;
    transition: border-color 0.3s ease!important;
    box-sizing: border-box!important;
}

.eip-email-input:focus {
    outline: none;
    border-color: var(--eip-primary-color, #0DB4E9);
}

@media (max-width: 768px) {
    .eip-container {
        margin: 20px;
        width: calc(100% - 40px);
    }
    
    .eip-header h2 {
        font-size: 1.5rem;
    }
    
    .eip-actions {
        flex-direction: column;
    }
}
