body {
    font-family: Arial, sans-serif;
    background: linear-gradient(to right, #ffb6c1, #ffe4e1);
    margin: 0;
    text-align: center;
    cursor: none; /* مؤشر مخصص */
}

header {
    background-color: #ff69b4;
    padding: 20px;
    color: white;
    font-size: 2em;
    font-weight: bold;
}

/* القائمة الرئيسية */
#main-menu {
    position: fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background: rgba(0,0,0,0.8);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

#main-menu h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

#main-menu button {
    padding: 15px 30px;
    font-size: 1.2em;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    background-color: #ff69b4;
    color: white;
    transition: background-color 0.3s ease;
}

#main-menu button:hover {
    background-color: #ff85c1;
}

/* منطقة اللعبة */
#game-area {
    width: 400px;
    height: 400px;
    background-color: #fff;
    margin: 20px auto;
    position: relative;
    border: 3px solid #ff69b4;
    border-radius: 20px;
    overflow: hidden;
}

/* الكرات */
.ball {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    position: absolute;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.ball:hover {
    transform: scale(1.2);
}

/* الزر */
button {
    background-color: #ff69b4;
    border: none;
    padding: 12px 25px;
    color: white;
    font-size: 1em;
    border-radius: 10px;
    cursor: pointer;
    margin-top: 20px;
}

button:hover {
    background-color: #ff85c1;
}

/* إشعارات داخل اللعبة */
#notifications {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0,0,0,0.7);
    color: #fff;
    padding: 8px 15px;
    border-radius: 10px;
    font-size: 1em;
    display: none;
    z-index: 500;
    pointer-events: none;
}

/* مؤشر متوهج للماوس */
#custom-cursor {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    background: radial-gradient(circle, #ff1493 0%, transparent 70%);
    transform: translate(-50%, -50%);
    z-index: 1000;
}