* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #121212; /* Fond sombre */
    color: #e0e0e0; /* Texte clair */
}

.container {
    width: 90%;
    margin: 0 auto;
}

header {
    background-color: #1f1f1f; /* Fond sombre pour l'en-tête */
    color: #e0e0e0;
    padding: 20px 0;
    text-align: center;
}

h1 {
    font-size: 2em;
    color: #f1f1f1; /* Titre en blanc */
}

.links {
    margin-top: 20px;
}

.link-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #2c3e50; /* Fond sombre pour les boutons */
    color: #e0e0e0;
    text-decoration: none;
    border-radius: 5px;
    margin: 5px;
    font-size: 1.1em;
    transition: background-color 0.3s ease;
}

.link-button:hover {
    background-color: #34495e; /* Fond un peu plus clair au survol */
}

main {
    padding: 40px 0;
}

.info {
    background-color: #2c3e50;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    padding: 20px;
    margin-top: 20px;
}

.status-container {
    margin-bottom: 20px;
}

h2 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #f1f1f1;
    display: flex;
    justify-content: space-between; /* Place l'horloge à droite */
    align-items: center;
}

#time {
    font-size: 1.1em;
    color: #f1f1f1;
    background-color: #333;
    padding: 4px 8px;
    border-radius: 4px;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

table th, table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #444; /* Lignes de séparation sombres */
}

table th {
    background-color: #1f1f1f; /* Fond sombre pour l'en-tête du tableau */
    font-weight: bold;
    color: #ccc;
}

.game-name {
    font-weight: 600;
    font-size: 1.1em;
    color: #e0e0e0;
}

.game-status {
    padding: 6px 12px;
    border-radius: 4px;
    text-transform: uppercase;
    font-weight: 700;
    color: white;
    display: inline-block;
}

.game-status.stopped {
    background-color: #e74c3c; /* Rouge pour 'stopped' */
}

.game-status.running {
    background-color: #2ecc71; /* Vert pour 'running' */
}

footer {
    background-color: #1f1f1f; /* Fond sombre pour le footer */
    color: #e0e0e0;
    text-align: center;
    padding: 20px 0;
}

footer p {
    font-size: 1em;
}

@media (max-width: 768px) {
    h1 {
        font-size: 1.5em;
    }

    table th, table td {
        font-size: 0.9em;
        padding: 10px;
    }

    footer p {
        font-size: 0.8em;
    }
}
