/* ─── Games Index Page ─── */
body {
    background: #07070b;
    font-family: 'Inter', sans-serif;
}

/* ─── Site Logo Link ─── */
.site-logo-link {
    position: fixed;
    top: 1.2rem;
    left: 1.5rem;
    z-index: 100;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.site-logo-link:hover {
    transform: translateY(-1px);
}

.site-logo-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: white;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    box-shadow: 0 2px 10px rgba(99, 102, 241, 0.3);
    transition: all 0.3s ease;
}

.site-logo-link:hover .site-logo-icon {
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.5);
    transform: rotate(5deg) scale(1.08);
}

.games-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.games-container h1 {
    color: #e0e7ff;
    font-weight: 700;
    margin-bottom: 2rem;
}

.game-card {
    background: rgba(99, 102, 241, 0.05);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
    margin-bottom: 1.5rem;
}

.game-card:hover {
    border-color: rgba(99, 102, 241, 0.5);
    background: rgba(99, 102, 241, 0.1);
    transform: translateY(-2px);
}

.game-card h3 {
    color: #c7d2fe;
    margin-bottom: 0.5rem;
}

.game-card p {
    color: rgba(200, 200, 220, 0.75);
    margin: 0;
    font-size: 0.9rem;
}

.game-card .players {
    color: rgba(165, 180, 252, 0.7);
    font-size: 0.8rem;
    margin-top: 0.5rem;
}
