.games-page {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 24px;
}

.games-page-title {
    font-size: 32px;
    margin-bottom: 32px;
    border-bottom: 2px solid #a00;
    padding-bottom: 10px;
}

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

.game-card {
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 8px;
    overflow: hidden;
    transition: 0.2s ease;
}

.game-card:hover {
    transform: translateY(-4px);
    border-color: #a00;
    box-shadow: 0 8px 24px rgba(0,0,0,.08);
}

.game-banner {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.game-content {
    padding: 18px;
}

.game-title {
    font-size: 22px;
    margin-bottom: 6px;
}

.game-subtitle {
    color: #777;
    font-size: 13px;
    font-family: monospace;
    margin-bottom: 14px;
}

.game-description {
    color: #333;
    margin-bottom: 18px;
    line-height: 1.6;
}

.game-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.game-status {
    font-family: monospace;
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 4px;
    border: 1px solid;
}

.game-status.live {
    color: #2d7d2d;
    border-color: #2d7d2d;
}

.game-status.dev {
    color: #a00;
    border-color: #a00;
}

.game-status.plan {
    color: #666;
    border-color: #666;
}

.game-play {
    background: #a00;
    color: #fff;
    text-decoration: none;
    padding: 8px 14px;
    border-radius: 4px;
    font-family: monospace;
    font-size: 13px;
}

.game-play:hover {
    background: #c00;
}

.game-play.disabled {
    background: #ccc;
    color: #888;
    cursor: default;
    pointer-events: none;
}

@media (max-width: 700px) {
    .games-page {
        padding: 24px 16px;
    }

    .games-grid {
        grid-template-columns: 1fr;
    }

    .game-banner {
        height: 220px;
    }
}