/* استایل کلی */
body {
    margin: 0;
    font-family: 'Vazir', sans-serif;
    background-color: #111;
    color: #fff;
}

/* هدر */
header {
    background-color: #1a1a1a;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    font-size: 24px;
    font-weight: bold;
    color: #ffcc00;
    text-decoration: none;
}
nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
    margin: 0;
    padding: 0;
}
nav ul li a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    transition: color 0.3s;
}
nav ul li a:hover {
    color: #ffcc00;
}
.header-buttons a {
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 5px;
    background-color: #ffcc00;
    color: #111;
    font-weight: bold;
    transition: background-color 0.3s;
    margin-left: 10px;
}
.header-buttons a:hover {
    background-color: #e6b800;
}

/* اسلایدر */
.slider {
    position: relative;
    max-width: 100%;
    height: 400px;
    overflow: hidden;
}
.slides img {
    width: 100%;
    height: 400px;
    display: none;
    object-fit: cover;
}
.slides img.active {
    display: block;
}
.slider-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}
.slider-controls span {
    font-size: 40px;
    color: #ffcc00;
    cursor: pointer;
    padding: 0 20px;
}

/* بخش بازی‌ها */
.games {
    padding: 50px 30px;
    background-color: #1a1a1a;
}
.games h2 {
    text-align: center;
    margin-bottom: 30px;
}
.game-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}
.card {
    background-color: #222;
    padding: 20px;
    border-radius: 10px;
    width: 250px;
    text-align: center;
}
.card img {
    width: 100%;
    border-radius: 10px;
}
.play-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 16px;
    background-color: #ffcc00;
    color: #111;
    text-decoration: none;
    border-radius: 5px;
}
.play-btn:hover {
    background-color: #e6b800;
}

/* درباره ما */
.about {
    padding: 50px 30px;
    text-align: center;
}

/* فوتر */
footer {
    background-color: #111;
    padding: 20px 30px;
    text-align: center;
}
footer .footer-links a {
    margin: 0 10px;
    color: #fff;
    text-decoration: none;
}
footer .footer-links a:hover {
    color: #ffcc00;
}

/* ریسپانسیو */
@media (max-width: 768px) {
    nav ul {
        display: none;
    }
    .game-cards {
        flex-direction: column;
        align-items: center;
    }
}