/* Game Banner Styles */
.game-banner {
    width: 100%;
    margin-bottom: 20px;
    overflow: hidden;
}

.game-banner img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    display: block;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

/*.game-banner img:hover {
    transform: scale(1.02);
}*/

/* Responsive adjustments */
@media (max-width: 768px) {
    .game-banner img {
        border-radius: 10px;
    }
}