/* --- Basic Reset & Setup --- */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #121212; /* Dark background */
    color: #e0e0e0;            /* Light gray text */
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

/* --- Container for Content --- */
body > * {
    max-width: 800px;
    margin: 20px auto;
    padding: 0 20px;
}

header, footer {
    text-align: center;
    padding: 10px 0;
    border-bottom: 1px solid #333;
    border-top: 1px solid #333;
    background-color: #1e1e1e;
}

header h1 {
    margin-bottom: 0;
    color: #4da6ff; /* A nice blue color */
}

/* --- Typography --- */
h1, h2 {
    color: #ffffff;
}

p {
    margin: 10px 0;
}

/* --- Links (The game list) --- */
a {
    color: #4da6ff; /* Blue links */
    text-decoration: none; /* Remove underline by default */
    transition: color 0.3s ease;
}

a:hover, a:focus {
    color: #80bfff; /* Lighter blue on hover */
    text-decoration: underline;
}

/* --- The List Itself --- */
ul {
    list-style-type: none; /* Removes bullet points */
    padding: 0;
}

li a {
    display: block;
    background-color: #1e1e1e;
    margin-bottom: 10px;
    padding: 15px;
    border-radius: 5px;
    border: 1px solid #333;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease, transform 0.2s ease;
}

li a:hover, li a:focus {
    background-color: #2c2c2c;
    text-decoration: none; /* Keep underline off on hover for the list items */
    transform: translateX(5px); /* Slide slightly on hover */
}

/* --- Footer styles --- */
footer p {
    font-size: 0.8em;
    color: #777;
}
