body {
    background-color: #000;
    color: #0f0;
    font-family: 'Courier New', Courier, monospace;
    padding: 20px;
    max-width: 800px;
    margin: 0 auto;
}
h1, h2 { text-transform: uppercase; border-bottom: 2px solid #0f0; }
.game-card {
    border: 1px solid #0f0;
    padding: 15px;
    margin-bottom: 20px;
    display: flex;
    gap: 20px;
}
.game-img { max-width: 200px; max-height: 200px; object-fit: cover; border: 1px solid #333; }
.btn {
    display: inline-block;
    background: #0f0;
    color: #000;
    padding: 10px 15px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 10px;
}
.btn:hover { background: #fff; }
input, textarea {
    background: #111;
    color: #0f0;
    border: 1px solid #0f0;
    padding: 5px;
    width: 100%;
    margin-bottom: 10px;
}
