body {
    margin: 0;
    padding: 20px;
    background-color: #f0f0f0;
    font-family: Arial, sans-serif;
}

#gameWrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

#gameContainer {
    position: relative;
    background-size: cover;
    width: 400px;
    height: 400px;
}

canvas {
    display: block;
    background-color: #2e6bc8;
    border: 3px solid #1a4480;
    border-radius: 8px;
}

#instructionsPanel {
    width: 300px;
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

#instructionsPanel h2 {
    margin-top: 0;
    color: #2e6bc8;
    text-align: center;
}

#instructionsPanel h3 {
    color: #1a4480;
    margin-bottom: 10px;
}

#scoreDisplay, #bestScoreDisplay {
    font-size: 18px;
    font-weight: bold;
    color: #2e6bc8;
    text-align: center;
    margin-bottom: 5px;
}

#bestScoreDisplay {
    margin-bottom: 15px;
    color: #1a4480; /* Slightly different color for best score */
}

#gameStatus {
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    padding: 10px;
    background-color: #e8f4fd;
    border-radius: 5px;
    margin-bottom: 20px;
    color: #1a4480;
}

#instructionsPanel ul {
    margin: 10px 0;
    padding-left: 20px;
}

#instructionsPanel li {
    margin: 5px 0;
    color: #333;
}
