/* STYLE GENERAL DU SITE */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body{
    background-color: #f4f4f4;
    padding-top: 100px;
}

/* MENU DE NAVIGATION */
header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #00205b;
    z-index: 1000;
}

.navbar{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
}

/* Logo FIFA + Nom du site */
.logo{
    display: flex;
    align-items: center;
}

.logo img{
    width: 70px;
    height: 70px;
    object-fit: contain;
    margin-right: 15px;
}

.logo h2{
    font-size: 22px;
    color: #ffd700;
}

/* Les liens du menu */
.menu{
    display: flex;
    list-style: none;
}

.menu li{
    margin-left: 13px;
    list-style-type: none;
}

.menu li a{
    text-decoration: none;
    color: #ffd700;
    font-size: 16px;
    font-weight: bold;
    border-radius: 40px;
    padding: 5px 10px;
    transition: 150ms;
}

.menu li a:hover{
    transition: 0.3s;
    background: white;
}

/* FAN ZONE */
.fan-zone{
    text-align:center;
    background: #d4c464;
    color:white;
    padding: 30px;
    margin: 30px;
    border-radius: 500rem;
}

.fan-zone h2{
    font-size:40px;
    margin-bottom:15px;
}

/* PREDICTOR */
.predictor{
    width:60%;
    margin:50px auto;
    background:white;
    padding:40px;
    border-radius:15px;
    box-shadow:0 5px 15px rgba(0,0,0,.2);
}

.predictor h2{
    text-align:center;
    color:#00205b;
    margin-bottom:25px;
}

.predictor form{
    display:flex;
    flex-direction:column;
}

.predictor label{
    margin-top:15px;
    font-weight:bold;
}

.predictor input,
.predictor select{
    padding:12px;
    margin-top:8px;
    border:1px solid #ccc;
    border-radius:8px;
}

.predictor button{
    margin-top:30px;
    padding:15px;
    background:#00205b;
    color:white;
    border:none;
    border-radius:8px;
    cursor:pointer;
}

.predictor button:hover{
    background:#FFD700;
    color:black;
}

/* LEADERBOARD */
.leaderboard{
    width:70%;
    margin:50px auto;
}

.leaderboard h2{
    text-align:center;
    color:#00205b;
    margin-bottom:25px;
}

table{
    width:100%;
    border-collapse:collapse;
    background:white;
}

table th{
    background:#00205b;
    color:white;
    padding:15px;
}

table td{
    border:1px solid #ddd;
    padding:15px;
    text-align:center;
}

table tr:nth-child(even){
    background:#f4f4f4;
}

/* RESPONSIVE */
@media(max-width:768px){
    .predictor{
        width:95%;
    }

    .leaderboard{
        width:95%;
    }
}

/* FOOTER */
footer{
    background-color: #00205b;
    color: white;
    padding: 40px 20px;
}

.footer-container{
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.footer-box{
    width: 220px;
    margin: 15px;
}

.footer-box h3{
    color: #ffd700;
    margin-bottom: 15px;
}

.footer-box p{
    margin: 8px 0;
    cursor: pointer;
}

.footer-box p:hover{
    color: #ffd700;
}

/* Réseaux sociaux */
.social a{
    color: white;
    text-decoration: none;
    margin-right: 10px;
}

.social a:hover{
    color: #ffd700;
}

/* Copyright */
.copyright{
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid white;
}

/* RESPONSIVE TELEPHONE */
@media(max-width:900px){
    .navbar{
        flex-direction: column;
    }

    .menu{
        flex-direction: column;
        text-align: center;
        margin-top: 20px;
    }

    .menu li{
        margin: 10px;
    }

    .footer-container{
        flex-direction: column;
        align-items: center;
    }
}