/* خلفية الصفحة */
body {
    font-family: Tahoma, Arial;
    margin: 0;
    background: #f0f0f7;
    color: #222;
}

/* هيدر مع gradient */
header {
    background: linear-gradient(135deg, #6a0dad, #0066ff);
    color: #fff;
    padding: 40px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.3);
}

h1 {
    margin: 0;
    font-size: 34px;
    font-weight: bold;
}

h2 {
    text-align: center;
    margin-top: 40px;
    color: #4b0082;
}

/* المحتوى */
.container {
    width: 90%;
    margin: auto;
    max-width: 1200px;
}

/* صندوق المعلومات */
.about {
    background: #fff;
    padding: 25px;
    margin-top: 25px;
    border-radius: 12px;
    line-height: 2;
    font-size: 18px;
    border-right: 5px solid #6a0dad;
    box-shadow: 0 3px 8px rgba(0,0,0,0.15);
}

/* صور الألعاب */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin: 40px 0;
}

.gallery img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    transition: .3s;
    box-shadow: 0 3px 6px rgba(0,0,0,0.2);
}

/* مؤثر عند تمرير الماوس */
.gallery img:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* Footer */
footer {
    background: linear-gradient(135deg, #6a0dad, #0066ff);
    color: #fff;
    padding: 20px;
    text-align: center;
    margin-top: 40px;
    font-size: 16px;
}
   .header-img {
    width: 100%;
    height: auto; /* يظهر الصورة كاملة بدون قص */
    display: block;
    border-radius: 10px;
    margin-bottom: 20px;
}

