/* styles.css */
body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #222;
    color: #fff;
    font-family: Arial, sans-serif;
}

#game-container {
    position: relative;
    width: 800px;
    height: 600px;
    background-image: url('https://cdn.pixabay.com/photo/2016/08/14/14/58/pokemon-1593048_1280.jpg');
    background-size: cover;
    background-position: center;
}

#gameCanvas {
    display: block;
}

#score, #energy, #time {
    position: absolute;
    top: 10px;
    font-size: 24px;
    color: white;
    text-shadow: 2px 2px 4px #000;
}

#score {
    left: 10px;
}

#energy {
    right: 110px;
}

#time {
    right: 10px;
}

#controls {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

button {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    background-color: #555;
    color: #fff;
    border: none;
    border-radius: 5px;
}

button:hover {
    background-color: #777;
}