    .modal-container_m {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 9999;
        pointer-events: none;
    }

    .signup-btn_m {
        background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
        color: white;
        border: none;
        padding: 15px 40px;
        font-size: 18px;
        font-weight: 600;
        border-radius: 50px;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(155, 89, 182, 0.4);
        position: relative;
        overflow: hidden;
        font-family: 'Vazirmatn', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    }

    .signup-btn_m:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(155, 89, 182, 0.6);
    }

    .signup-btn_m:active {
        transform: translateY(0);
    }

    .signup-btn_m::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: left 0.5s;
    }

    .signup-btn_m:hover::before {
        left: 100%;
    }

    .modal-overlay_m {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.7);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        display: none;
        align-items: center;
        justify-content: center;
        z-index: 10000;
        opacity: 0;
        transition: opacity 0.3s ease;
        pointer-events: all;
    }

    .modal-overlay_m.active_m {
        display: flex;
        opacity: 1;
    }

    .modal-content_m {
        background: linear-gradient(135deg, #2d2d44 0%, #1e1e2e 100%);
        border-radius: 20px;
        padding: 40px;
        max-width: 450px;
        width: 90%;
        text-align: center;
        position: relative;
        transform: scale(0.8);
        transition: transform 0.3s ease;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
        border: 1px solid rgba(155, 89, 182, 0.3);
        font-family: 'Vazirmatn', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        color: #fff;
    }

    .modal-overlay_m.active_m .modal-content_m {
        transform: scale(1);
    }

    .modal-icon_m {
        width: 80px;
        height: 80px;
        background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 25px;
        position: relative;
        animation: pulse_m 2s infinite;
    }

    @keyframes pulse_m {
        0% {
            box-shadow: 0 0 0 0 rgba(155, 89, 182, 0.7);
        }
        70% {
            box-shadow: 0 0 0 20px rgba(155, 89, 182, 0);
        }
        100% {
            box-shadow: 0 0 0 0 rgba(155, 89, 182, 0);
        }
    }

    .modal-icon_m svg {
        width: 40px;
        height: 40px;
        fill: white;
    }

    .modal-title_m {
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 15px;
        color: #fff;
    }

    .modal-text_m {
        font-size: 16px;
        line-height: 1.8;
        color: #b8b8c8;
        margin-bottom: 30px;
    }

    .close-btn_m {
        background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
        color: white;
        border: none;
        padding: 12px 35px;
        font-size: 16px;
        font-weight: 600;
        border-radius: 30px;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(155, 89, 182, 0.4);
    }

    .close-btn_m:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(155, 89, 182, 0.6);
    }

    .sparkle_m {
        position: absolute;
        width: 4px;
        height: 4px;
        background: #9b59b6;
        border-radius: 50%;
        animation: sparkle_m 3s linear infinite;
        pointer-events: none;
    }

    @keyframes sparkle_m {
        0% {
            transform: translateY(0) scale(0);
            opacity: 1;
        }
        100% {
            transform: translateY(-100px) scale(1);
            opacity: 0;
        }
    }

    /* لود کردن فونت فارسی */
    @import url('https://fonts.googleapis.com/css2?family=Vazirmatn:wght@400;600;700&display=swap');

    ::selection{
    color: #f008f8 !important;
}