body {
    background-color: #2c3e50;
    color: #ecf0f1;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    text-align: center;
    margin: 0;
    padding: 20px;
}

header {
    margin-bottom: 40px;
}

header h1 {
    font-size: 3em;
    color: #3498db;
}

.game-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.game-card {
    background-color: #34495e;
    border: 2px solid #3498db;
    border-radius: 10px;
    padding: 20px;
    width: 80%;
    max-width: 500px;
    text-decoration: none;
    color: #ecf0f1;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.game-title {
    font-size: 1.8em;
    font-weight: bold;
    margin-bottom: 10px;
}

.game-description {
    font-size: 1.1em;
}

.coming-soon {
    border-color: #95a5a6;
    color: #95a5a6;
}
