/* إعدادات عامة */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #fff;
    line-height: 1.6;
    text-align: center;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #fff;
}

/* الخلفية */
.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/BackGround2\ \(1\).png'); 
    background-size: cover;
    background-position: center;
    filter: blur(8px);
    z-index: -1; 
}

.content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 20px;
    color: #fff;
    font-family: 'Poppins', sans-serif;
}


header {
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.356);
    color: #fff;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.header-container .logo {
    width: 100px;
    margin-bottom: 15px;
}

.header-container .logo1 {
    width: 18em;
    margin-bottom: 1px;

}

header h1 {
    font-size: 2.8rem;
    margin-bottom: 10px;
}

header p {
    font-size: 1.2rem;
    color: #ddd;
}

h1 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #0a629a;
}

.description h1{
    font-size: 2rem;
    margin-bottom: 20px;
    color: #0a629a;
}

i {
    font-size: 2.5rem;
    color: #307dad;
    margin-bottom: 10px;
}

.features {
    padding: 40px 20px;
}

.features h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #0a629a;
}

.features-content {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.feature-box {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    width: 250px;
    transition: transform 0.3s ease;
}

.feature-box:hover {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.2);
}

.feature-box i {
    font-size: 2.5rem;
    color: #0a629a;
    margin-bottom: 10px;
}

.feature-box h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.gameplay-images {
    padding: 40px 20px;
}

.gameplay-images h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #0a629a;
}

.images-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.images-container img {
    width: 300px;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.images-container img:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.developer-photo {
    width: 50em;
}

.developer-photo1 {
    width: 12em;
}

.developer-text {
    font-size: 1em;
}

.social-media {
    padding: 40px 20px;
}

.social-media h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.social-media img{
    width: 80px;
    transition: transform 0.3s ease;
}

.social-media img:hover{
    width: 80px;
    transform: scale(1.1);
}

.download-section {
    padding: 40px 20px;
}

.download-btn {
    display: inline-block;
    padding: 15px 30px;
    background: #0a629a;
    color: #000;
    text-decoration: none;
    border-radius: 30px;
    font-size: 1.5rem;
    transition: background 0.3s ease;
}

.download-btn:hover {
    background: #07456b;
}

/* الفوتر */
footer {
    background: rgba(0, 0, 0, 0.9);
    padding: 20px;
    font-size: 0.9rem;
    color: #ddd;
}
