body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    transition: background-color 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
  background-color: #0073e6; /* Couleur de fond principale */
    background-image: linear-gradient(rgba(255, 255, 255,0.8), rgba(255, 255, 255,0.8)), url("fond.png");
    background-blend-mode: overlay;
    background-size: cover;
    background-repeat: repeat;


}

@font-face {
    font-family: 'Martyric Personal Use Only';
    src: url('MartyricPersonalUseOnly.woff2') format('woff2'),
        url('MartyricPersonalUseOnly.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'VCR OSD Mono';
    src: url('VCROSDMono.woff2') format('woff2'),
        url('VCROSDMono.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
.stream-button {
    display: inline-block;
    margin: 1rem auto;
    padding: 0.5rem 2rem;
    background-color: #ffffff; /* Fond vert */
    color: #000000; /* Texte noir */
    font-size: 1rem;
    font-weight: bold;
    border: 2px solid #000000; /* Bordure noire */
    border-radius: 10px; /* Arrondi de 10px */
    text-align: center;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.stream-button:hover {
    background-color: #000000; /* Légèrement plus foncé au survol */
    color :white;
}


h3.paragraph-title {
    font-family: 'VCR OSD Mono', sans-serif;
    font-size: 18px; /* Taille plus petite */
    max-width:70%;
    text-align: justify;
    color: #333; /* Couleur blanche */
    margin-bottom: 1rem; /* Espace sous le titre */
    text-transform: uppercase; /* Convertit le texte en majuscules */
    text-align: center; /* Centre le texte */
}

.mouse-description {
     font-family: 'VCR OSD Mono', sans-serif;
    font-size: 18px; /* Taille plus petite */
    max-width:70%;
    text-align: justify;
    color: #333; /* Couleur blanche */
    margin-bottom: 1rem; /* Espace sous le titre */
    text-transform: uppercase; /* Convertit le texte en majuscules */
    text-align: center; /* Centre le texte */
}

h2.paragraph-title {
    font-family: 'Martyric Personal Use Only', sans-serif;
    font-size: 1.5rem; /* Taille plus petite */
    color: #ffffff; /* Couleur blanche */
    margin-bottom: 1rem; /* Espace sous le titre */
    text-transform: uppercase; /* Convertit le texte en majuscules */
    text-align: center; /* Centre le texte */

}

/* Navbar */
.navbar {
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    background-color: rgba(0, 0, 0, 0.3); /* Transparence de 30% */
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    box-sizing: border-box;
}

.navbar-left span {
    color: #ffffff;
    font-size: 1.2rem;
    font-family: 'VCR OSD Mono', monospace;
}

.navbar-right {
    display: flex;
    gap: 15px; /* Ajuste l'espace entre les boutons */
}

.nav-btn {
    width: 35px;
    height: 35px;
    background-color: transparent;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease;
}

.nav-btn:hover {
    transform: scale(1.1); /* Zoom au survol */
}

/* Boutons spécifiques avec images */
.nav-btn.pump {
    background-image: url('pump.webp');
}

.nav-btn.dex {
    background-image: url('dex.png');
}

.nav-btn.close {
    background-image: url('X.png');
}
.navbar-link {
    font-size: 1.2rem;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
 
        font-family: 'VCR OSD Mono', sans-serif;

}

header {
    color: black;
    text-align: center;
    width: 80%;
    padding-top: 50px;
}

h1 {
    margin: 0;
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.8), 0 0 20px rgba(255, 255, 255, 0.6);

}

main {
    width: 100%;
    max-width: 1200px;
}

.mouse-img {
    max-width: 300px;
    max-height: 300px; 
    margin-bottom: 2rem;
} 

.mouse-selection {
    display: flex;
    justify-content: center;
    flex-direction: column;
    width: 100%; /* Assure que mouse-selection prend toute la largeur disponible */
    
}

.mouse-list {
    
    justify-content: center; /* Centre les éléments verticalement */
    align-items: center; /* Centre les éléments horizontalement */
    flex-direction: column;
    text-align: center; /* Centre le texte si nécessaire */
}


.mouse-btn {
    padding: 1rem;
        border-top-left-radius: 10px;  /* Arrondi en haut à gauche */
    border-top-right-radius: 10px; /* Arrondi en haut à droite */
    cursor: pointer;
    border: none;
    background-color: #f0f0f0;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    font-weight: 500;
    font-size: 1.5rem;

            font-family: 'VCR OSD Mono', sans-serif;

}

.mouse-btn:hover {
    background-color: #e0e0e0;
}

.mouse-btn.selected {
    font-weight: 900;
    border-left: 5px solid;
}

.mouse-info {
    flex-grow: 1;
    padding: 1rem;
    background-color: #f9f9f9;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mouse-info h2 {
    margin: 1rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    text-align: center;
    transition: color 0.3s ease;
    font-size: 2.5rem;
    font-family: 'Martyric Personal Use Only', sans-serif;
    
}

.info-content {
    display: flex;
    justify-content: space-around;
    width: 100%;
    font-size: 1.5rem;
    font-family: 'VCR OSD Mono', monospace;
}

.info-content .number {
    font-weight: bold;
    font-size: larger;
} 
 .arena-section {
    text-align: center;
    padding: 3rem 0;
    margin-top: 2rem;
}

.arena-section h1 {
    font-size: 3rem;
    color: #FFFFFF;
    font-size : 90px;
    margin-bottom: 1.5rem;
    font-family: 'Martyric Personal Use Only', sans-serif;
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.8), 0 0 20px rgba(255, 255, 255, 0.6);

}

.arena-img {
    max-width: 80%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 25px; /* Ajoute des coins arrondis à l'image */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2); /* Ombre pour un effet visuel */
}
.cage-img {
    min-width:550px;
    max-width: 80%;
    border-radius: 25px; /* Ajoute des coins arrondis à l'image */
}
.stream-section {
    text-align: center;
    padding: 2rem 0;
}

.stream-section h1 {
    font-family: 'Martyric Personal Use Only', sans-serif;
    font-size: 6rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.8), 0 0 20px rgba(255, 255, 255, 0.6);

}

.stream-iframe {
    width: 100%;
    height: 800px;
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    margin: 0 auto;
    display: block;
}


/* Couleurs de fond plus foncées */
body.mouse-Jerry { background-color: #004080; }
body.mouse-Speedy { background-color: #800000; }
body.mouse-Mickey { background-color: #004d00; }
body.mouse-CheddarChuck { background-color: #808000; }

body.mouse-Heisenberg .mouse-btn.selected {
    background-color: #4a90e2;
    color: white;
    border: none; /* Enlève la bordure */
}

body.mouse-Speedy .mouse-btn.selected {
    background-color: #e24a4a;
    color: white;
    border: none; /* Enlève la bordure */
}

body.mouse-Mickey .mouse-btn.selected {
    background-color: #4ae24a;
    color: white;
    border: none; /* Enlève la bordure */
}

body.mouse-CheddarChuck .mouse-btn.selected {
    background-color: #e2e24a;
    color: white;
    border: none; /* Enlève la bordure */
}


body.mouse-Heisenberg .mouse-info h2 { color: #4a90e2; }
body.mouse-Speedy .mouse-info h2 { color: #e24a4a; }
body.mouse-Mickey .mouse-info h2 { color: #4ae24a; }
body.mouse-CheddarChuck .mouse-info h2 { color: #e2e24a; }

body.mouse-Heisenberg .mouse-info .info-content .number {
    color: #4a90e2;
    text-decoration: underline;
    text-decoration-color: #4a90e2;
}
body.mouse-Speedy .mouse-info .info-content .number {
    color: #e24a4a;
    text-decoration: underline;
    text-decoration-color: #e24a4a;
}
body.mouse-Mickey .mouse-info .info-content .number {
    color: #4ae24a;
    text-decoration: underline;
    text-decoration-color: #4ae24a;
}
body.mouse-CheddarChuck .mouse-info .info-content .number {
    color: #e2e24a;
    text-decoration: underline;
    text-decoration-color: #e2e24a;
}
