/* Development Popup Modal Styles */
.dev-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.dev-popup-overlay.show {
    opacity: 1;
    visibility: visible;
}

.dev-popup {
    background: white;
    border-radius: 20px;
    padding: 40px 35px;
    max-width: 500px;
    width: 90%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    transform: scale(0.8) translateY(20px);
    transition: all 0.3s ease;
    text-align: center;
}

.dev-popup-overlay.show .dev-popup {
    transform: scale(1) translateY(0);
}

.dev-popup-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    border-radius: 50%;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
}

.dev-popup h3 {
    color: #333;
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 20px 0;
    line-height: 1.3;
}

.dev-popup p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin: 0 0 15px 0;
}

.dev-popup p:last-of-type {
    margin-bottom: 30px;
}

.dev-popup-close {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.dev-popup-close:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
}

.dev-popup-close:active {
    transform: translateY(0);
}

/* Arabic version styling */
.dev-popup.rtl {
    text-align: right;
    font-family: 'Cairo', 'Tajawal', Arial, sans-serif;
}

.dev-popup.rtl h3 {
    font-weight: 700;
}

/* Close button (X) */
.dev-popup-x {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    color: #999;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.dev-popup-x:hover {
    background: #f0f0f0;
    color: #333;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .dev-popup {
        padding: 30px 25px;
        margin: 20px;
    }
    
    .dev-popup-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .dev-popup h3 {
        font-size: 20px;
    }
    
    .dev-popup p {
        font-size: 14px;
    }
}

/* Animation for icon */
.dev-popup-icon {
    animation: pulseIcon 2s ease-in-out infinite;
}

@keyframes pulseIcon {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}