body {
    font-family: Arial, sans-serif;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #000000;
}
h1 {
    color: #dedede;
    text-align: center;
}
.game-link {
    display: block;
    margin: 20px 0;
    padding: 15px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    text-decoration: none;
    color: #333;
    transition: transform 0.2s;
}
.game-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}
.game-title {
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 5px;
}
.back-link {
    display: inline-block;
    margin-top: 30px;
    color: #666;
}