.pole-jeux-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.pole-jeux-header {
    margin-bottom: 3rem;
}

.pole-jeux-header h1 {
    font-family: 'Gochi Hand', cursive, sans-serif; /* Assuming this font is available based on previous context or standard "handwritten" look */
    font-size: 3rem;
    color: #000;
    margin-bottom: 0.5rem;
}

.pole-jeux-header h2 {
    font-family: 'Gochi Hand', cursive, sans-serif;
    font-size: 1.5rem;
    color: #000;
    margin-top: 0;
}

.jeux-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
    justify-content: center;
}

.jeu-card-placeholder {
    background-color: #d9d9d9;
    border-radius: 20px;
    aspect-ratio: 1 / 1;
    width: 100%;
    transition: transform 0.3s ease;
}

.jeu-card-placeholder:hover {
    transform: scale(1.05);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .jeux-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
