body {
    background-image: url("/images/background2.jpg");
}

.section_classement {
    margin: 0 auto;
    max-width: 800px;
}

.section_classement article {
    height: auto;
    margin-top: 30px;
    border-collapse:collapse;
    background: rgba(50, 50, 50, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 40px 20px;
    justify-content: space-between;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    gap: 25px;
}

.section_classement article::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.8s ease;
}

.section_classement article:hover::before {
    left: 100%;
}

.section_classement article:hover {
    transform: translateY(-2px);
}

.section_classement {
    min-height: 80vh;
    padding: 80px;
    text-align: center;
}

.section_classement table {
    margin: 0 auto;
}

.section_classement th,td{
    padding:15px 30px;
}

.section_classement tr{
    background:rgba(163, 163, 163, 0.482);
}

.section_classement th{
    background:rgba(161, 161, 161, 0.482);
}

@media (max-width: 768px) {
    
    .section_classement {
        padding: 20px;
    }

    .section_classement table {
        width: 100%;
        font-size: 14px;
    }

    .section_classement th,
    .section_classement td {
        padding: 10px;
    }

    .section_classement {
        overflow-x: auto;
    }

    .section_classement h2 {
        font-size: 22px;
    }
}