/* General Styling */
body {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: black;
    color: white;
    font-family: Arial, sans-serif;
    margin: 0;
    height: 100vh;
}

/* Game Container */
#gameContainer {
    display: flex;
    flex-direction: row;
}

/* Canvas Styling */
#gameCanvas {
    background-color: #222;
    width: 400px;
    height: 600px;
    border: 5px solid #555;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

/* Sidebar Styling */
#sidebar {
    width: 200px;
    padding: 20px;
    background-color: #333;
    color: white;
    margin-left: 10px;
    border: 5px solid #555;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

/* Sidebar Headers */
h2, h3 {
    text-align: center;
    border-bottom: 2px solid #555;
    padding-bottom: 5px;
    margin-bottom: 10px;
    font-size: 16px;
}

/* Sidebar List */
ul {
    list-style: none;
    padding: 0;
    font-size: 14px;
}

li {
    margin: 10px 0;
    font-size: 14px;
}

/* Highlighted Text in Sidebar */
span {
    font-weight: bold;
}

/* Start Screen Styling */
#startScreen {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    background: #222;
    color: #ff9800;
    padding: 20px;
    border-radius: 10px;
    border: 3px solid #555;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
    display: block; /* Default display for start screen */
}

#playButton {
    font-size: 1.2em;
    padding: 10px 20px;
    background: #ff9800;
    color: black;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(255, 152, 0, 0.5);
    transition: transform 0.2s ease-in-out;
}

#playButton:hover {
    transform: scale(1.1); /* Hover effect for play button */
}
