/* Reset basique */
body, h1, h2, h3, p, ul { margin: 0; padding: 0; }
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f0f0f0;
    color: #333;
}
.container { width: 90%; max-width: 1200px; margin: 0 auto; }

/* Police rétro pour les titres */
@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');
h1, h2, h3 {
    font-family: 'Press Start 2P', cursive;
    text-shadow: 2px 2px 0 #000;
}

/* En-tête */
header {
    background-color: #000;
    color: #00ff00;
    padding: 20px 0;
    text-align: center;
}
header nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
}
header nav a {
    color: #00ff00;
    text-decoration: none;
}
header nav a:hover {
    text-decoration: underline;
}

/* Liens */
a {
    color: #00ff00;
    text-decoration: none;
    font-weight: bold;
}
a:hover {
    text-decoration: underline;
    color: #ff00ff;
}

/* Bannière */
.banner {
    text-align: center;
    margin: 20px 0;
    background-color: #fff;
    padding: 20px;
    border: 2px solid #ff00ff;
    box-shadow: 0 0 10px #ff00ff;
}
.banner img {
    transition: transform 0.3s;
}
.banner img:hover {
    transform: scale(1.05);
}

/* Contenu */
main {
    padding: 20px;
    background-color: #fff;
    margin-bottom: 20px;
}
article {
    margin-bottom: 20px;
    padding: 15px;
    border: 1px solid #00ff00;
    box-shadow: 0 0 5px #00ff00;
}

/* Pied de page */
footer {
    text-align: center;
    padding: 10px;
    background-color: #000;
    background-image: url('https://www.transparenttextures.com/patterns/grunge.png');
    color: #00ff00;
}
