#lockscreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(255, 222, 232);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.boite-login {
    text-align: center;
}

#mdp-input {
    padding: 10px;
    font-size: 16px;
    border: 2px solid #333;
    border-radius: 5px;
}


/*--------------------------------- verrou ------------------------------------*/


body {
    background-image: linear-gradient( rgba(0, 0, 0, 0.65)), url("images/pic (6).jpeg") ;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    font-family: Arial, sans-serif;
    background-color: #2d4f19;
    margin: 0;
    min-height: 100vh;
}

header {
    /*
    background-image: url("images/pic (21).jpeg");
    background-position: center;
    
    background-color: #0000008d;
    */
    text-align: center;
    padding: 5px;
}

header h1 {
    text-align: center;
    color: rgb(255, 209, 223);
    background-color: rgba(0, 0, 0, 0.661);
    padding: 10px;
    display: inline-block; /* Pour que le fond ne prenne pas toute la largeur */
    border-radius: 5px;
}

/*
header p {
    display: block;
    width: fit-content;
    margin: 0 auto;
    text-align: center;
    color: rgb(255, 64, 64);
    background-color: rgba(0, 0, 0, 0.5);
    padding: 10px;
    border-radius: 1px;
}
*/

#info {
    display: block;
    width: fit-content;
    height: fit-content;
    margin: 10px auto;
    text-align: center;
    background-color: rgba(8, 8, 8, 0.677);
    color: rgb(243, 210, 26);
    padding: 1px 20px;
    border-radius: 5px;
}

section h3 {
    display: block;
    width: fit-content;
    margin: 0 auto;
    text-align: center;
    background-color: rgba(8, 8, 8, 0.677);
    color: rgb(243, 210, 26);
    padding: 10px;
    border-radius: 5px;
}

nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
}

nav li {
    margin: 0 15px;
}


#chooser {
    display: flex;
    justify-content: center;
    gap: 50px;
    padding: 40px; /* Espace à l'intérieur de la section */
}

.card {
    transition: all 0.3s ease;
    cursor: pointer;

    background: rgb(214, 214, 214);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    width: 220px;

    text-decoration: none !important; 
}

/*
.card:hover {
    transform: translateY(-10px); 
    
    box-shadow: 0 0 20px 5px rgba(255, 180, 209, 0.6);
    filter: brightness(1.1);
}
*/

.photo:hover {
    transform: translateY(-10px); 
    
    box-shadow: 0 0 50px 15px rgba(168, 255, 63, 0.6);
    filter: brightness(1.18);
}

.game:hover {
    transform: translateY(-10px); 
    
    box-shadow: 0 0 50px 15px rgba(255, 246, 83, 0.6);
    filter: brightness(1.18);
}

.live:hover {
    transform: translateY(-10px); 
    
    box-shadow: 0 0 50px 15px rgba(96, 244, 255, 0.6);
    filter: brightness(1.25);
}

.card h4{
    color: rgb(75, 75, 75);
    font-size: 20px;
    width: fit-content;
    padding: 5px;
    border-radius: 8px;
    /*background-color: #303030b5;*/
}

.card p{
    color: rgb(27, 27, 27);
    font-size: 15px;
    width: fit-content;
    padding: 5px;
    background-color: #d1d1d18f;
    border-radius: 8px;
}

.photo{
    background-image: url('images/pic (3)_sqr.jpeg');
    background-position: center center;
    background-size: 400px auto;
}

.game{
    background-image: url('images/pic (2).jpeg');
    background-position: center center;
    background-size: 400px auto;
}

.live{
    background-image: url('images/pic (15).jpeg');
    background-position: center center;
    background-size: 400px auto;
}


.photo h4{
    background-color: #6da12fb6;
}
.game h4{
    background-color: #b1a73fb5;
}
.live h4{
    background-color: #2e859bb5;
}


.photo p{
    background-color: #c3e6ad94;
}
.game p{
    background-color: #f1eab390;
}
.live p{
    background-color: #9cc4ce8c;
}


.copyrights{
    position: fixed;   /* Il "colle" à l'écran */
    bottom: 0;         /* Tout en bas */
    left: 0;
    width: 100%;       /* Prend toute la largeur */
    text-align: center;
    padding: 10px 0;
    color: white;
    font-size: 14px;
}