.csw-wrapper {
    position: relative;
    width: 450px;
    margin: 30px auto;
    text-align: center;
    font-family: Tahoma, sans-serif;
}

/* بطاقة إدخال الإيميل فوق العجلة */
.csw-email-box {
    background: linear-gradient(135deg, #6b46c1, #5d2e8c);
    color: #ffffff;
    padding: 25px 20px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    margin-bottom: 25px;
    text-align: center;
}

.csw-email-box h3 {
    margin: 0 0 8px 0;
    font-size: 20px;
    color: #fff;
}

.csw-email-box p {
    margin: 0 0 15px 0;
    font-size: 14px;
    color: #e2d9f3;
}

.csw-email-box input[type="email"] {
    width: 85%;
    padding: 12px 15px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    margin-bottom: 12px;
    outline: none;
    text-align: center;
}

.csw-email-box button {
    background: #ffcc00;
    color: #333;
    border: none;
    padding: 12px 25px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s;
    width: 90%;
}

.csw-email-box button:hover {
    background: #e6b800;
}

/* حاوية العجلة بدقة متناهية وبدون حواف خارجية مزعجة */
.wheel-container {
    position: relative;
    width: 420px;
    height: 420px;
    margin: 45px auto 20px auto;
    transition: opacity 0.5s ease;
}

.wheel {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    /* تم إزالة الإطار الرمادي الخارجي (border) لكي تتطابق الصورة كلياً مع الحواف بدون زوائد */
    background: url('../images/wheel-image.png') no-repeat center center;
    background-size: contain; /* استخدام contain لضمان عدم قص أطراف الصورة أو تداخلها */
    transition: transform 5s cubic-bezier(0.17, 0.67, 0.12, 0.99);
}

/* تعديل دقيق لموقع المؤشر بالأعلى ليتمركز تماماً في رأس العجلة */
.wheel-pointer {
    position: absolute;
    top: -2px; /* تم تقريب المؤشر ليلامس حافة العجلة تماماً من الأعلى */
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 30px solid #5d2e8c; /* لون المؤشر */
    z-index: 20;
}

.csw-spin-btn {
    background: #5d2e8c;
    color: #fff;
    border: none;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 30px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: background 0.3s;
    margin-top: 15px;
}

.csw-spin-btn:hover {
    background: #4a2370;
}

/* النافذة المنبثقة (Popup Modal) */
.csw-modal {
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
}

.csw-modal-content {
    background-color: #fff;
    margin: 15% auto;
    padding: 30px;
    border-radius: 12px;
    width: 350px;
    text-align: center;
    position: relative;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.csw-close {
    color: #aaa;
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.csw-close:hover {
    color: #000;
}

.csw-modal-content h3 {
    margin-top: 0;
    color: #5d2e8c;
}

.csw-modal-content button {
    background: #5d2e8c;
    color: #fff;
    border: none;
    padding: 10px 25px;
    font-size: 15px;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 15px;
}