body {
    font-family: 'Arial', sans-serif;
    background-color: #000;
    color: #fff;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background-image: url('Images/Fond1.jpg'); /* Remplacez par le chemin de votre image */
    background-size: cover;
    background-position: center;
    overflow: hidden; /* Empêche les barres de défilement si l'image sort de l'écran */
}

h1 {
    font-size: 3em;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px #000;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px; /* Espace entre les boutons */
    z-index: 1; /* Assurez-vous que les boutons sont au-dessus de l'image qui tourne */
}

.genre-button {
    background-color: #4CAF50; /* Vert */
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 1.5em;
    cursor: pointer;
    border-radius: 10px;
    transition: background-color 0.3s ease;
    box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.5);
}

.genre-button:hover {
    background-color: #3e8e41;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Style futuriste */
body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #0f0, #00f);
    mix-blend-mode: color-dodge;
    z-index: -1;
    animation: animate 5s linear infinite;
}

@keyframes animate {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Style optionnel de chargement */
#loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    color: #fff;
    font-size: 2em;
}

/* Image qui tourne */
.rotating-image {
    position: absolute;
    top: 25%;
    left: 50%;
    width: 200px;  /* Ajustez la taille de l'image */
    height: auto;
    transform: translate(-50%, -50%); /* Centre l'image */
    animation: rotate 10s linear infinite; /* Animation de rotation */
    z-index: 0; /* Place l'image derrière les boutons et le texte */
}

@keyframes rotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}
.social-links {
    display: flex;           /* Affiche les liens en ligne */
    justify-content: center; /* Centre horizontalement */
    margin-top: 20px;       /* Ajoute de l'espace au-dessus */
    gap: 20px;               /* Espacement entre les liens */
}

.social-links a {
    color: #fff;            /* Couleur du texte */
    text-decoration: none;   /* Supprime le soulignement */
    padding: 10px 15px;      /* Ajoute un peu d'espace autour du texte et de l'icône */
    border: 1px solid #fff; /* Ajoute une bordure blanche */
    border-radius: 5px;     /* Arrondit les coins */
    transition: background-color 0.3s ease, color 0.3s ease; /* Effet de transition au survol */
    display: flex;           /* Pour aligner l'icône et le texte verticalement */
    align-items: center;     /* Centre verticalement */
    gap: 5px;                /* Espacement entre l'icône et le texte */
}

.social-links a:hover {
    background-color: #fff; /* Change la couleur de fond au survol */
    color: #000;            /* Change la couleur du texte au survol */
}