body {
    font-family: 'Courier New', monospace;
    line-height: 1.6;
    color: #00ff00;
    background-color: #0a0a0a;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background: linear-gradient(45deg, #000000, #1a1a1a);
    border-bottom: 2px solid #00ff00;
    padding: 10px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

h1 {
    font-size: 2em;
    margin: 0;
    text-shadow: 0 0 10px #00ff00;
}

.tagline {
    font-size: 0.9em;
    color: #00ccff;
    margin: 0;
}

.game-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
}

.game-card {
    background-color: #1a1a1a;
    border: 1px solid #00ff00;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: inherit;
    width: 300px;
    height: 200px; /* Set a fixed height */
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 255, 0, 0.2);
}

.game-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

footer {
    margin-top: 30px;
    text-align: center;
    padding: 10px 0;
    border-top: 2px solid #00ff00;
}

/* Additional general styles */
a {
    color: #00ff00;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #00ff00;
    color: #000000;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.button:hover {
    background-color: #00cc00;
}
