.hero {
    background: linear-gradient(160deg, var(--bleu-clair-legerement-gris-avec-une-petite-teinte-de-bleu) 0%, #6e86a8 60%, #3b4c64 100%);
    color: #fff;
    padding: 7rem 2.5rem 6rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-flocons {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.flocon {
    position: absolute;
    color: rgba(255, 255, 255, .4);
    font-size: 1.2rem;
    animation: tomber linear infinite;
}

@keyframes tomber {
    0% {
        transform: translateY(-20px) rotate(0deg);
        opacity: .7;
    }
    100% {
        transform: translateY(110vh) rotate(360deg);
        opacity: 0;
    }
}

.hero-contenu {
    position: relative;
    z-index: 2;
}

.hero-surtitre {
    font-size: .95rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--jaune-soleil-plutot-clair-compare-au-jaune-or);
    margin-bottom: 1rem;
}

.hero-titre {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3.5rem, 9vw, 6.5rem);
    letter-spacing: 4px;
    line-height: 1;
}

.hero-titre span {
    color: var(--jaune-soleil-plutot-clair-compare-au-jaune-or);
}

.hero-sous-titre {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, .7);
    margin-top: .8rem;
    letter-spacing: 1px;
}

.hero-boutons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2.5rem;
}

.wikitable {
    border-collapse: collapse;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.wikitable thead tr {
    background: linear-gradient(135deg, var(--bleu-nuit), #2a4a6b);
    color: white;
}

.wikitable thead th {
    border-bottom: 2px solid var(--or);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.wikitable tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background-color 0.2s ease;
}

.wikitable tbody tr:hover {
    background-color: rgba(255, 255, 255, 0.02);
}

.wikitable tbody tr:last-child {
    border-bottom: none;
}

.wikitable thead tr {
    height: 50px;
}

.wikitable tbody tr {
    height: 70px;
}

.wikitable td {
    padding: 12px;
    vertical-align: middle;
}

.cellule-drapeau {
    width: 12%;
}

.cellule-drapeau img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.cellule-nom {
    width: 25%;
}

.wikitable td:nth-child(3) {
    width: 38%;
}

.wikitable td:nth-child(4) {
    width: 25%;
}

.pays-liste {
    padding: 1rem 1.2rem;
    text-align: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.05rem;
    letter-spacing: 1px;
}

.pays-liste:hover {
    background-color: rgba(255, 255, 255, 1);
    cursor: pointer;
    transform: translateY(-5px);
}