/* Game Page Styles */
.game-page-container {
    padding: 20px;
}

.game-title {
    margin-bottom: 30px;
    text-align: center;
}

.game-title h1 {
    font-size: 3rem;
    color: #e0e0e0;
    text-transform: uppercase;
    background-color: #1a1a1a; /* Match the game canvas background */
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.7);
    width: 800px; /* Set a fixed width for the canvas */
    margin: 0 auto 20px auto; /* Center the title and add margin-bottom */
    box-sizing: border-box;
}

.game-content {
    display: flex;
    flex-direction: column; /* Stack vertically */
    align-items: center; /* Center align the content */
    gap: 20px; /* Space between game canvas and description */
}

.game-canvas {
    padding: 10px;
    background-color: #1a1a1a; /* Match the game canvas background */
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.7);
    width: 800px; /* Set a fixed width for the canvas */
    height: 600px; /* Set a fixed height for the canvas */
    display: flex;
    justify-content: center;
    align-items: center;
}

.game-info {
    padding: 10px;
    background-color: #1a1a1a; /* Match the game canvas background */
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.7);
    max-width: 800px; /* Match the width of the canvas */
    height: auto; /* Adjust height to content */
    color: #b0b0b0;
    display: flex;
    flex-direction: column;
}

.game-info p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.game-links {
    margin-top: auto; /* Push the links to the bottom of the description */
}

.game-links .btn-back,
.game-links .btn-download {
    display: inline-block;
    background: #333; /* Dark grey */
    color: #fff;
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: bold;
    margin-top: 10px;
    margin-right: 10px;
    transition: background 0.3s ease;
    text-decoration: none;
}

.game-links .btn-back:hover,
.game-links .btn-download:hover {
    background: #444; /* Slightly lighter dark grey */
}
