html {
	scroll-behavior: smooth;
	}

body {
    font-family: "Quicksand", sans-serif;
    margin: 0;
    padding: 0;
	height: 150vh;
    background-color: #A9DBB4;
    color: #222;
    display: flex;
    flex-direction: column;
    align-items: center;
    }

#title {
    text-align: center;
    margin-top: 10px;
    font-size: 2.5em;
    letter-spacing: 2px;
    height: 10vh;
    }

.main-container {
    display: flex;
    justify-content: space-between;
    width: 90%;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    margin-top: 30px;
    overflow: hidden;
    max-height: 75vh;
    }










/* --- Menu gauche --- */
.left-panel {
    width: 25%;
    border-right: 2px solid #ccc;
    padding: 20px;
    }

.left-panel h3 {
    text-align: center;
    margin-bottom: 10px;
    }

/* Boutons */
.tabs {
    display: flex;
    justify-content: space-around;
    margin-bottom: 10px;
    }

.tab {
    padding: 5px 10px;
    border: 1px solid #aaa;
    border-radius: 10px;
    background-color: #f7f7f7;
    cursor: pointer;
    }

.tab.active {
    background-color: #2A9134;
    color: white;
}

/* Liste (leaderboard) */
.ranking-list {
    border: 2px solid #054A29;
    border-radius: 10px;
    overflow-y: auto;
    padding: 10px;
    background-color: #A9DBB4;
    max-height: 60%;
    }

.right-panel {
    overflow: hidden;
}

.ranking-list.hidden {
    display: none;
}










/* --- Zone centrale (Jeux) --- */
.center-panel {
    width: 50%;
    padding: 20px;
    text-align: center;
    }

.center-panel h2 {
    font-size: 2em;
    margin-bottom: 10px;
    }

.mode-buttons {
    display: flex;
    justify-content: space-around;
    gap: 15px;
    margin-bottom: 20px;
    }

.mode-buttons button {
    padding: 10px 20px;
    border: none;
    border-radius: 10px;
    background-color: #2A9134;
    color: white;
    cursor: pointer;
    transition: 0.3s;
    }

.mode-buttons button:hover {
    background-color: #137547;
    }

.game-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    max-height: 60%;
    overflow-y: auto;
    scrollbar-color: #4CAF50 white;
    scrollbar-width: thin;
    background-color: #fafafa;
    border: 2px solid #137547;
    border-radius: 10px;
    }

.game {
    width: 70%;
    padding: 15px;
    border-radius: 12px;
    background-color: #A9DBB4;
    border: 2px solid #054A29;
    transition: 0.2s;
    cursor: pointer;
    }

.game a {
    pointer-events: none; /* rend toute la carte cliquable */
    color: inherit;
    text-decoration: none;
}

.game:hover {
    background-color: #137547;
    }















/* --- Panneau amis --- */
.right-panel {
    width: 25%;
    border-left: 2px solid #ccc;
    padding: 20px;
    }

.right-panel h3 {
    text-align: center;
}

/* Boutons */
.friends-tabs {
    display: flex;
    justify-content: space-around;
    margin-bottom: 10px;
}

.tab2 {
    padding: 5px 10px;
    border: 1px solid #aaa;
    border-radius: 10px;
    background-color: #f7f7f7;
    cursor: pointer;
    }

.tab2.active {
    background-color: #2A9134;
    color: white;
}


/* Liste des amis / ajouts */
.friends-list {
    border: 2px solid #137547;
    border-radius: 10px;
    overflow-y: auto;
    padding: 10px;
    background-color: #A9DBB4;
    max-height: 60%;
}

.friends-list.hidden {
    display: none;
}

/* Cartes des amis */
.friend-card {
    background-color: #f2f2f2;
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 10px;
    border: 2px solid #054A29;
}

.friend-card p {
    margin: 3px 0;
}

.friends-scroll {
    max-height: 60%;
    overflow-y: auto;
}











/* --- Barre bas pseudo/rank --- */
.bottom-bar {
    width: 50%;
    height: 5vh;
    margin: 50px;
    margin-top: 50px;
    padding: 10px;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    }










/* Login */
.login-box {
    width: 90%;
    margin-top: 0px;
    background: #fff3cd;
    border: 2px solid #f0c36d;
    border-radius: 12px;
    text-align: center;
    font-size: 1.2em;
    box-sizing: border-box;
}

.login-box a {
    text-decoration: none;
    font-weight: bold;
    color: #856404;
}