body {
    font-family: 'Inter', sans-serif;
    line-height: 1.7; /* Slightly more generous line height for readability */
    /* --- Dark Mode Basic --- */
    background-color: #1E1E1E; /* Your game's dark background */
    color: #D0D0D0; /* Light grey for body text, not pure white */
    margin: 0;
    padding: 0;
}
.container {
    max-width: 800px;
    margin: 40px auto; /* More top/bottom margin */
    padding: 30px 40px; /* More padding */
    /* --- Dark Mode Container --- */
    background-color: #2B2B2B; /* Slightly lighter dark for the content box */
    box-shadow: 0 4px 15px rgba(0,0,0,0.2); /* Softer, more modern shadow */
    border-radius: 8px; /* Rounded corners */
}
h1, h2, h3 {
    color: #F0F0F0; /* Your game's primary light text color */
    margin-top: 1.5em; /* More space above headings */
    margin-bottom: 0.8em;
}
h1 {
    border-bottom: 2px solid #FFD700; /* Your yellow accent */
    padding-bottom: 15px;
    font-size: 2.2em; /* Larger H1 */
    text-align: center;
    margin-bottom: 1.5em;
}
h2 {
    font-size: 1.6em;
    border-bottom: 1px solid #4A4A4A; /* Subtle separator for H2 */
    padding-bottom: 8px;
}
h3 {
    font-size: 1.3em;
    color: #E0E0E0; /* Slightly less prominent than H2 */
}
header .logo { /* Assuming .logo is for Thiliax */
    color: #F0F0F0; /* Light text for logo in dark mode */
    /* Make sure it's styled well, perhaps larger or with a specific font weight */
}
a {
    color: #00BFFF; /* Your blue accent for links */
    text-decoration: none;
    font-weight: 500; /* Slightly bolder links */
}
a:hover {
    text-decoration: underline;
    color: #38D9FF; /* Lighter blue on hover */
}
ul {
    padding-left: 20px; /* Standard indent */
}
li {
    margin-bottom: 0.5em; /* Space between list items */
}
footer {
    text-align: center;
    margin-top: 40px;
    padding: 25px;
    background-color: #111; /* Darker footer background */
    color: #888; /* Dimmer footer text */
    font-size: 0.9em;
}
footer a {
    color: #AAA; /* Slightly lighter links in footer */
}
footer a:hover {
    color: #00BFFF;
}
/* Remove default container styling from header/footer if you want them full-width */
header > .container, footer > .container {
    box-shadow: none;
    background-color: transparent;
    padding-top: 20px;
    padding-bottom: 20px;
}