.container-jeux {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 20px;
    max-width: 900px;
    margin: auto;
}

.card-jeu {
    background: white;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.card-jeu:hover {
    transform: translateY(-5px);
}

.jeu-header {
    display: flex;
    align-items: flex-start;
    gap: 25px;
}

.logo-jeu {
    transition: 0.3s;
    width: 120px;
    height: 120px;
    object-fit: cover;
    flex-shrink: 0;
}
.logo-jeu:hover {
    transition: 0.3s;
    transform:translateY(-10px)
}

.jeu-info h3 {
    transition: 0.3s;
    margin-top: 0;
    font-size: 28px;
    color: #333;
    font-family: 'Raleway ExtraBold';
}

.jeu-info h3:hover {
    transition: 0.3s;
    transform: translateX(33px)
}

.description {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    max-height: 150px;
    overflow-y: auto;
}



@media (max-width: 600px) {
    .jeu-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .btn-jouer {
        align-self: center;
        width: 100%;
    }
}