/* Bandeau jeux d'été sur la page d'accueil */
.bandeau-jeux-ete {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 1rem auto;
    border-radius: 12px;
    overflow: hidden;
    display: block;
}

.bandeau-jeux-ete img {
    width: 100%;
    display: block;
    border-radius: 12px;
}

.bandeau-jeux-ete-btn {
    position: absolute;
    top: 12px;
    left: 12px;
    width: 90px;
    height: 90px;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #e67e22;
    font-weight: bold;
    font-size: 0.85rem;
    text-align: center;
    line-height: 1.2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
    transition: transform 0.2s, background 0.2s;
    z-index: 2;
}

.bandeau-jeux-ete-btn:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 1);
}

.bandeau-jeux-ete-btn .icon {
    font-size: 2rem;
    margin-bottom: 2px;
}

/* Page jeux d'été */
.jeux-ete-header {
    background: linear-gradient(135deg, #2196f3, #ff9800);
    color: #fff;
    padding: 2rem 1rem;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 1.5rem;
}

.jeux-ete-header h1 {
    color: #fff;
    margin: 0 0 0.5rem 0;
}

.jeux-ete-header p {
    margin: 0;
    font-size: 1.1rem;
    opacity: 0.95;
}
