.irinanasir-popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 999999;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}

.irinanasir-popup-overlay.active {
    display: flex;
}

.irinanasir-popup-modal {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 24px;
    padding: 50px 45px;
    max-width: 480px;
    width: 90%;
    position: relative;
    box-shadow: 0 25px 80px rgba(102, 126, 234, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.5) inset;
    animation: popupSlideIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: hidden;
}

.irinanasir-popup-modal::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-30px, -30px) rotate(5deg); }
}

@keyframes popupSlideIn {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(40px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.irinanasir-popup-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(102, 126, 234, 0.1);
    border: none;
    font-size: 24px;
    color: #667eea;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border-radius: 50%;
    z-index: 10;
}

.irinanasir-popup-close:hover {
    background: rgba(102, 126, 234, 0.2);
    color: #764ba2;
    transform: rotate(90deg);
}

.irinanasir-popup-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.irinanasir-popup-title {
    font-size: 36px;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 12px 0;
    letter-spacing: -0.5px;
}

.irinanasir-popup-subtitle {
    font-size: 17px;
    color: #6b7280;
    margin: 0 0 30px 0;
    line-height: 1.6;
    font-weight: 400;
}

.irinanasir-popup-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.irinanasir-popup-input {
    padding: 20px 24px;
    border: 2px solid #d1d5db;
    border-radius: 16px;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
    background: linear-gradient(145deg, #ffffff 0%, #f9fafb 100%);
    color: #1f2937;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
}

.irinanasir-popup-input:hover {
    border-color: #9ca3af;
}

.irinanasir-popup-input:focus {
    border-color: #667eea;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.15), 0 0 20px rgba(102, 126, 234, 0.1);
    transform: translateY(-2px);
}

.irinanasir-popup-input::placeholder {
    color: #9ca3af;
    font-weight: 400;
}

.irinanasir-popup-submit {
    padding: 18px 32px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    border: none;
    border-radius: 14px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.irinanasir-popup-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.5);
}

.irinanasir-popup-submit:active {
    transform: translateY(-1px);
}
