header h1 {
	text-align: center;
}
section {
	padding-top: 1rem;
}
.flex-container .list-container {
	margin-right: 2rem;
}
.list-container {
	padding: 1rem;
}
/*#blog-poetry .blog {
	color: brown;
}
#blog-poetry .poetry {
	color: violet;
}*/
#music .genres {
	font-style: italic;
}


/* Reset et styles de base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
    padding: 20px;
}

/* En-tête */
header {
    background-color: #2c3e50;
    color: #ecf0f1;
    text-align: center;
    padding: 1rem;
    margin-bottom: 2rem;
    border-radius: 5px;
}

header h1 {
    font-size: 2.5rem;
}

/* Sections principales */
main {
    max-width: 1200px;
    margin: 0 auto;
}

section {
    background-color: #fff;
    margin-bottom: 2rem;
    padding: 2rem;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

section h1 {
    color: #2c3e50;
    margin-bottom: 1rem;
    border-bottom: 2px solid #3498db;
    padding-bottom: 0.5rem;
}

/* Conteneurs flexibles */
.flex-container {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}

.list-container {
    flex: 1;
}

/* Listes */
.list {
    list-style-type: none;
}

.list-item {
    margin-bottom: 0.5rem;
}

.list-item-name {
    color: #2980b9;
    text-decoration: none;
    transition: color 0.3s ease;
}

.list-item-name:hover {
    color: #3498db;
    text-decoration: underline;
}

/* Styles spécifiques */
.solo-list h2, .multiplayer-list h2 {
    color: #16a085;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.blog, .poetry {
    font-style: italic;
}

.genres {
    font-size: 0.9em;
    color: #7f8c8d;
}

/* Responsive design */
@media (max-width: 768px) {
    .flex-container {
        flex-direction: column;
    }

    section {
        padding: 1rem;
    }
}

/* Footer */
footer {
    text-align: center;
    margin-top: 2rem;
    padding: 1rem;
    background-color: #2c3e50;
    color: #ecf0f1;
    border-radius: 5px;
}

.transluscent {
    color: transparent;
    cursor: default;
}




/* Ajoutez ceci à la fin de votre fichier CSS existant */

/* Liens d'authentification dans le footer */
.auth-links {
    font-size: 0.8em;
    margin-top: 10px;
}

.auth-links a {
    color: #ecf0f1;
    text-decoration: none;
    margin: 0 5px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.auth-links a:hover {
    opacity: 1;
}

/* Style pour les popups */
.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.popup-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 90%;
}

.popup h2 {
    margin-top: 0;
    color: #2c3e50;
}

.popup form {
    display: flex;
    flex-direction: column;
}

.popup input {
    margin-bottom: 10px;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 3px;
}

.popup button {
    padding: 10px;
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.popup button:hover {
    background-color: #2980b9;
}

.close-popup {
    margin-top: 10px;
    background-color: #e74c3c !important;
}

.close-popup:hover {
    background-color: #c0392b !important;
}