html, body {
    margin: 0;
    padding: 0;
    font-family: "Helvetica Neue", Arial, sans-serif;
    background: #000;
    color: #fff;
}

header {
    background: #8B0000; /* Dark red */
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1em 2em;
}

header .logo-container h1 {
    margin: 0;
    font-size: 1.5em;
    letter-spacing: 1px;
}

/* Navigation Container */
nav {
    max-width: 100%;
    background: #8B0000; /* Dark red background */
    padding: 10px;
    box-sizing: border-box;
    text-align: center; /* Center the menu */
}

/* Remove default list styles */
.menu {
    display: flex;
    flex-wrap: wrap; /* Allow wrapping to the next line */
    justify-content: center; /* Center-align items */
    list-style: none; /* Remove bullet points */
    padding: 0;
    margin: 0;
}

/* Style the menu links as buttons with uniform width */
.menu-button {
    display: inline-block;
    text-decoration: none;
    color: white;
    background-color: #333; /* Dark button background */
    padding: 8px 15px; /* Smaller padding for smaller buttons */
    margin: 5px; /* Spacing between buttons */
    font-size: 0.9rem; /* Reduce font size for consistency */
    border: 2px solid #8B0000; /* Add border */
    border-radius: 5px; /* Rounded corners */
    width: 150px; /* Fixed width for uniformity */
    text-align: center; /* Center text within the button */
    transition: all 0.3s ease; /* Smooth hover effect */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3); /* Add a subtle shadow */
}

/* Hover effect for buttons */
.menu-button:hover {
    background-color: #A40000; /* Slightly brighter red */
    color: #fff;
    border-color: #A40000;
    transform: translateY(-2px); /* Subtle lift effect */
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.4); /* Enhance shadow */
}

/* Responsive Design for Mobile */
@media (max-width: 768px) {
    .menu {
        flex-direction: column; /* Stack buttons vertically */
        align-items: center; /* Center-align items */
    }

    .menu-button {
        width: 140px; /* Smaller fixed width for mobile */
        font-size: 0.8rem; /* Reduce font size further for smaller screens */
        padding: 6px 10px; /* Adjust padding for smaller buttons */
    }
}


main {
    max-width: 1200px;
    margin: 2em auto;
    padding: 0 1em;
}

.game-section {
    margin-bottom: 3em;
}

.game-section h2 {
    border-bottom: 2px solid #8B0000;
    padding-bottom: 0.5em;
    margin-bottom: 1em;
    font-size: 1.8em;
    font-weight: normal;
}

.game-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2em;
}

.screenshots img {
    display: block;
    width: 100%;
    max-width: 400px; /* Adjust as desired */
    height: auto;
    margin-bottom: 1em; /* Adds space between images */
}
.screenshots img:hover {
    transform: scale(1.05);
    border-color: #fff;
}

.game-info {
    flex: 1 1 300px;
}

.game-info h3 {
    margin-top: 0;
    font-size: 1.2em;
    color: #ccc;
}

.game-info p {
    line-height: 1.6;
    margin-bottom: 1em;
}

.game-info button {
    background: #8B0000;
    border: none;
    padding: 0.8em 1.5em;
    color: #fff;
    cursor: pointer;
    font-size: 1em;
    transition: background 0.3s ease;
}

.game-info button:hover {
    background: #A40000;
}

footer {
    text-align: center;
    font-size: 0.9em;
    padding: 1em 0;
    background: #111;
    color: #ccc;
}

.game-info ul {
    list-style-type: disc;
    margin: 1em 0;
    padding-left: 1.5em;
}

kbd {
    font-family: monospace;
    background-color: #333;
    color: #fff;
    padding: 0.2em 0.4em;
    border-radius: 3px;
    border: 1px solid #555;
}
.game-info p {
    line-height: 1.6;
    margin-bottom: 1em;
}
