﻿.games-section {
    width: 100%;
    text-align: center;
    margin-top: 0;
}

.games-title {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 35px;
    color: #fff;
    text-shadow: 0 0 10px #6ab8ff;
}

.games-wrapper {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.game-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #fff;
    transition: 0.3s ease;
}

.game-icon {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #4ac3ff;
    box-shadow: 0 0 15px rgba(0,255,255,0.4);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.game-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.game-item span {
    margin-top: 12px;
    font-size: 18px;
    font-weight: 600;
}

/* افکت هاور */
.game-item:hover .game-icon {
    transform: scale(1.12) rotate(-3deg);
    box-shadow: 0 0 25px rgba(0,255,255,0.8);
}

.game-item:hover span {
    text-shadow: 0 0 8px #4ac3ff;
}
