body {

    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

    background-color: #1a1a1a;

    color: #e0e0e0;

    margin: 0;

    padding: 20px;

    display: flex;

    justify-content: center;

    align-items: center;

    min-height: 100vh;

    box-sizing: border-box;

}

.container {

    text-align: center;

    background-color: #2c2c2c;

    padding: 20px 40px;

    border-radius: 10px;

    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);

    width: 100%;

    max-width: 800px;

}

h1 {

    color: #4d90fe;

    margin-bottom: 20px;

    text-transform: uppercase;

    letter-spacing: 1px;

}

#game-list {

    list-style: none;

    padding: 0;

}

#game-list li {

    margin: 15px 0;

}

#game-list a {

    text-decoration: none;

    color: #ffffff;

    background-color: #4d90fe;

    padding: 12px 25px;

    border-radius: 5px;

    display: inline-block;

    transition: background-color 0.3s, transform 0.2s;

    font-weight: bold;

    width: 60%;

}

#game-list a:hover {

    background-color: #357ae8;

    transform: scale(1.05);

}

.game-window {

    width: 100%;

    max-width: 640px; 

    height: 400px; 

    margin: 20px auto;

    border: 3px solid #4d90fe;

    background-color: #000;

    position: relative;

}

canvas {

    width: 100%;

    height: 100%;

    image-rendering: pixelated; /* Mantiene los píxeles nítidos */

}

.controls {

    font-size: 0.9em;

    color: #aaa;

    margin-top: 10px;

}

.back-link {

    display: inline-block;

    margin-top: 20px;

    color: #4d90fe;

    text-decoration: none;

}

.back-link:hover {

    text-decoration: underline;

}

code {

    background-color: #444;

    padding: 2px 5px;

    border-radius: 3px;

    font-family: monospace;

}