body {

    background: #121212;
    color: white;

}

.hero {

    padding: 80px 20px;
    text-align: center;
    background: linear-gradient(
        135deg,
        #202020,
        #111111
    );

}

.hero h1 {

    font-size: 3rem;
    margin-bottom: 20px;

}

.hero p {

    color: #bbbbbb;

}

.card {

    background: #1f1f1f;
    color: white;
    border: none;
    transition: 0.3s;

}

.card:hover {

    transform: translateY(-8px);

}

/* ======================================
   Game Cards
====================================== */

.card {

    background: #1f1f1f;
    color: white;
    border: none;
    transition: transform 0.25s;

}

.card:hover {

    transform: translateY(-8px);

}

.card img {

    height: 260px;
    object-fit: cover;

}

.card-title {

    min-height: 55px;
    font-size: 1.1rem;

}