body {
    background-color: #000000;
    background-image: linear-gradient(to bottom, #001a00, #000000);
    color: #a8e6cf;
    font-family: monospace;
    margin: 0;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.6;
    min-height: 100vh;
    justify-content: center;
    position: relative;
}

#landing-container {
    max-width: 600px;
    width: 100%;
    /* No background for the overall container, its children will manage */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

#game-info {
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#stats-summary {
    background: none; /* No background color */
    border: 1px solid rgba(168, 230, 207, 0.1);
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 8px;
    white-space: pre-wrap; /* Preserve line breaks */
    text-align: left;
    font-size: 0.9em;
    width: fit-content; /* Make it small */
    max-width: 90%; /* Prevent it from being too wide */
}

button {
    background: rgba(168, 230, 207, 0.05);
    border: 1px solid rgba(168, 230, 207, 0.1);
    color: #a8e6cf;
    padding: 10px 15px;
    margin: 5px;
    text-decoration: none;
    cursor: pointer;
    font-family: inherit;
    font-size: inherit;
    transition: all 0.2s ease;
    border-radius: 4px;
}

button:hover {
    background: rgba(168, 230, 207, 0.1);
    color: #ffffff;
}

#main-menu-overlay {
    position: fixed; /* Overlay the entire screen */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9); /* Dark overlay */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1000; /* Ensure it's on top */
    padding: 20px;
    box-sizing: border-box;
}

#main-menu-overlay.hidden {
    display: none;
}

#main-menu-overlay h1 {
    color: #dff9ee;
    text-shadow: 0 0 10px rgba(168, 230, 207, 0.3);
    margin-bottom: 20px;
    font-size: 2.5em;
}

#quote-display {
    font-style: italic;
    margin-bottom: 30px;
    max-width: 80%;
    color: #c0f0e0;
}

#menu-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}