body {
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: #181818;
    color: white;
    margin: 0;
    padding: 20px;
}

h1 {
    color: #ffffff;
}

.game-list, .video-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

a {
    text-decoration: none;
    color: white;
    display: block;
    text-align: center;
}

img {
    width: 400px;
    height: 220px;
    border-radius: 8px;
    transition: transform 0.2s ease-in-out;
}

img:hover {
    transform: scale(1.05);
}

.hero-banner {
    position: relative;
    width: 100%;
    height: 250px; /* Adjust height as needed */
    overflow: hidden;
    display: flex;
    justify-content: center; /* Center image horizontally */
    align-items: center; /* Center image vertically */
}

.hero-banner img {
    height: 100%;
    object-fit: cover; /* Ensures it fills the space without being distorted */
    display: block;
    transition: none !important; /* Prevents hover zoom if applied elsewhere */
}

.hero-banner img:hover{
    transform: none !important;
}


.hero-banner::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%; /* Adjust gradient size */
    background: linear-gradient(to bottom, rgba(24, 24, 24, 0) 0%, #181818 100%);
}