/* Basic page setup */
body {
    background-color: #000;
    color: #00FF41; /* Classic green terminal color */
    font-family: 'Courier New', Courier, monospace;
    font-size: 16px;
    margin: 0;
    padding: 20px;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid #00FF41;
    padding: 20px 40px;
}

header {
    text-align: center;
    border-bottom: 1px solid #00FF41;
    margin-bottom: 30px;
    padding-bottom: 10px;
}

header h1 {
    margin-bottom: 5px;
}

/* Styling for the list of games */
.game-list {
    display: flex;
    flex-direction: column;
    gap: 20px; /* Space between game cards */
}

/* Game card styling */
.game-card {
    border: 1px solid #00FF41;
    padding: 15px 20px;
    text-decoration: none; /* Remove underline from links */
    color: #00FF41;
    transition: background-color 0.2s, color 0.2s;
}

.game-card h2 {
    margin-top: 0;
    margin-bottom: 10px;
}

.game-card p {
    margin: 0;
}

/* Interactive hover effect, like selecting a menu item */
.game-card:hover {
    background-color: #00FF41;
    color: #000;
}