body {
    margin: 0;
    overflow: hidden;
    background: radial-gradient(circle at center, #05070d, #000);
    font-family: Arial, sans-serif;
}

#overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    /* خلفية شفافة تماماً لترى النجوم في البداية */
    background: rgba(0, 0, 0, 0.4); 
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

#startBtn {
    padding: 20px 40px;
    font-size: 24px;
    font-weight: bold;
    color: white;
    /* إزالة الخلفية والحدود */
    background: transparent;
    border: 2px solid rgba(255, 215, 0, 0.3); 
    border-radius: 50px;
    cursor: pointer;
    
    /* إضافة ظل للنص لجعله واضحاً */
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8), 0 0 20px gold;
    
    /* تأثير نبض خفيف لجذب الانتباه */
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

/* إضافة ورود حول النص باستخدام pseudo-elements */
#startBtn::before {
    content: "🌸 🌼 🌻";
    font-size: 30px;
    margin-bottom: 5px;
}

#startBtn::after {
    content: "🌷 🌹 🌺";
    font-size: 30px;
    margin-top: 5px;
}

#startBtn:hover {
    transform: scale(1.1);
    border-color: gold;
    text-shadow: 0 0 15px white, 0 0 30px gold;
}
