* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #1e1e2e;
    color: #cdd6f4;
}

.layout {
    display: flex;
    height: 100vh;
}

.sidebar {
    width: 250px;
    background-color: #181825;
    padding: 20px;
    border-right: 2px solid #313244;
}

.sidebar h2 {
    margin-bottom: 20px;
    color: #89b4fa;
    text-align: center;
}

#game-list {
    list-style: none;
}

#game-list li {
    margin-bottom: 10px;
}

#game-list button {
    width: 100%;
    padding: 12px;
    background-color: #313244;
    color: #cdd6f4;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s;
    font-size: 16px;
}

#game-list button:hover {
    background-color: #89b4fa;
    color: #11111b;
}

.game-area {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

#game-container {
    background-color: #000;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    overflow: hidden;
    /* Un tamaño por defecto, se ajustará al sketch de processing */
    min-width: 400px;
    min-height: 400px; 
    display: flex;
    align-items: center;
    justify-content: center;
}

#game-canvas:focus {
    outline: none; /* Quita el borde azul al hacer clic en el juego */
}

#instructions {
    margin-top: 20px;
    color: #a6adc8;
    font-size: 14px;
}