* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #0b1220;
    color: #e5e7eb;
}

.header {
    background-color: #020617;
    padding: 24px;
    text-align: center;
    border-bottom: 2px solid #1e293b;
}

.header h1 {
    margin: 0;
    font-size: 32px;
}

.header p {
    margin-top: 6px;
    color: #94a3b8;
}

.games-container {
    padding: 24px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
}

.game-card {
    display: flex;
    flex-direction: column;
    background-color: #020617;
    border-radius: 12px;
    padding: 18px;
    text-decoration: none;
    color: inherit;
    border: 1px solid #1e293b;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border 0.2s ease;
}

.game-card:hover {
    transform: translateY(-6px);
    border-color: #38bdf8;
    box-shadow: 0 10px 25px rgba(56, 189, 248, 0.15);
}

.game-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.game-id {
    font-size: 12px;
    color: #94a3b8;
}

.winner {
    font-size: 13px;
    font-weight: bold;
    color: #22c55e;
}

.game-body h2 {
    margin: 0 0 10px 0;
    font-size: 22px;
}

.game-body p {
    margin: 4px 0;
    font-size: 14px;
    color: #cbd5f5;
}

.game-footer {
    margin-top: auto;
    padding-top: 12px;
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #94a3b8;
    border-top: 1px solid #1e293b;
}