/* Styles globaux et fond */
body, html {
    padding: 0;
    height: 100%;
    background: linear-gradient(to bottom, #1a1a2e, #111);
    background-repeat: no-repeat; 
    background-attachment: fixed;
    font-family: 'Orbitron', sans-serif;
    color: #fff;
}

.container {
    max-width: 800px;
    margin: 50px auto 100px auto;  /* Espacement ajouté en bas */
    padding: 20px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 20px;
    box-shadow: 0 0 20px #ff66d9; /* rose/violet */
    backdrop-filter: blur(5px);

}

.spacer {
    height: 1%;
    width: 100%;
}

footer {
    margin-top: 30px; /* Espacement avec le cadre */
    text-align: center;
}

.copyright {
    font-family: 'Orbitron', sans-serif;
    color: #ff66d9;
    text-shadow: 
        0 0 5px #ff66d9, 
        0 0 10px #ff66d9, 
        0 0 15px #ff66d9;
    animation: neonFlicker 2s infinite alternate;
} 

/* Styles pour la section des sponsors */
.sponsor-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 30px;
}

.sponsor {
    width: 30%; /* Permet d'afficher trois sponsors par ligne */
    border: 2px solid #ff66d9; /* Contour en rose/violet */
    border-radius: 10px;
    margin-bottom: 20px;
    padding: 10px;
    box-shadow: 0 0 10px #ff66d9; /* Légère ombre en rose/violet */
    transition: transform 0.3s ease;
}

.sponsor img {
    width: 100%; /* L'image prend toute la largeur du container */
    margin-bottom: 10px;
}

.sponsor:hover {
    transform: scale(1.05); /* Petit effet de zoom au survol */
}


/* Titre principal en néon */
h1 {
    font-size: 2.5rem;
    color: #ff66d9; /* couleur rose/violet */
    text-align: center;
    text-shadow: 
        0 0 8px #ff66d9, 
        0 0 15px #ff66d9;
    animation: neonFlicker 2s infinite alternate;
}

/* Sous-titres et texte */
h2 {
    color: #ff66d9; /* couleur rose/violet */
    text-shadow: 
        0 0 5px #ff66d9, 
        0 0 10px #ff66d9;
}

p, li, th, td {
    color: #fff;  /* couleur de texte blanc pour le contraste */
}

/* Styles pour la table */
table {
    width: 100%;
    margin-top: 20px;
    border-collapse: collapse;
}

table, th, td {
    border: 1px solid #ff66d9; /* couleur rose/violet */
}

th, td {
    padding: 10px;
    text-align: left;
}

th {
    background-color: rgba(0, 0, 0, 0.8);
    color: #ff66d9; /* couleur rose/violet */
    text-shadow: 0 0 5px #ff66d9;
}

tbody tr:nth-child(odd) {
    background-color: rgba(255, 255, 255, 0.1);
}

ul {
    padding-left: 20px;
}



@keyframes neonFlicker {
    0%   { text-shadow: 0 0 5px #ff66d9, 0 0 10px #ff66d9; }
    100% { text-shadow: 0 0 8px #ff66d9, 0 0 15px #ff66d9; }
}

/* Styles responsives */
@media only screen and (max-width: 600px) {
    .container {
        margin: 10px;
        padding: 10px;
    }

    h1, h2 {
        font-size: 1.5rem;
    }
}

@media only screen and (max-width: 600px) {
    .sponsor {
        width: 100%; /* Sur les petits écrans, un sponsor par ligne */
    }
}