/* الغلاف */
.mam-wheel-wrapper {
    margin-top: 30px;
    text-align: center;
    direction: rtl;
    font-family: inherit;
}

/* العنوان */
.mam-title {
    margin-bottom: 20px;
}

/* غلاف العجلة – كمبيوتر */
.mam-wheel-container {
    position: relative;
    width: 500px;
    height: 500px;
    margin: 0 auto;
}

/* العجلة – كمبيوتر */
#mam-wheel {
    width: 500px;
    height: 500px;
    display: block;
    margin: 0 auto;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 0 25px rgba(0,0,0,0.35);
    /* مهم: إزالة أي transition من CSS */
}

/* السهم – كمبيوتر */
#mam-pointer {
    position: absolute;
    top: -45px;
    left: 50%;
    transform: translateX(-50%);
    width: 85px;
    height: auto;
    z-index: 100;
}

/* زر ابدأ – كمبيوتر */
.mam-start-btn {
    width: 170px;
    height: auto;
    display: block;
    margin: 45px auto 0 auto;
    cursor: pointer;
    transition: transform .2s ease;
}

.mam-start-btn:active {
    transform: scale(0.95);
}

/* البوب أب */
.mam-popup {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
}

.mam-popup-content {
    background: #fff;
    color: #000;
    width: 80%;
    max-width: 350px;
    margin: 120px auto;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    position: relative;
}

.mam-close {
    position: absolute;
    top: 8px;
    left: 12px;
    font-size: 24px;
    cursor: pointer;
}

/* ========================= */
/*        نسخة الجوال        */
/* ========================= */

@media (max-width: 600px) {

    .mam-wheel-container {
        width: 300px;
        height: 300px;
    }

    #mam-wheel {
        width: 300px;
        height: 300px;
    }

    #mam-pointer {
        width: 55px;
        top: -30px;
    }

    .mam-start-btn {
        width: 120px;
        margin-top: 25px;
    }

    .mam-popup-content {
        width: 90%;
        max-width: 300px;
        margin-top: 100px;
    }
}
#mam-prize-img {
    width: 120px;
    height: auto;
    margin: 15px auto;
    display: block;
}