.hero {
    height: 70vh;
    background: linear-gradient(to bottom right, #222, #343a40);
    padding-top: 80px;
}

.card {
    border-radius: 5px;
    transition: 0.2s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 22px rgba(0,0,0,0.15);
}

.member-photo {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.game-card {
    cursor: pointer;
    border-radius: 5px;
    overflow: hidden;
    transition: 0.2s;
}

.game-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.game-card .card-img-top {
    height: 250px;
    object-fit: cover;
}

.member-photo-sm {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.social-icons i {
    font-size: 28px;
    transition: 0.2s;
    color: #333;
}

.social-icons i:hover {
    transform: scale(1.15);
    color: #0d6efd;
}

.icon-link {
    text-decoration: none;
}

