/* Recent Games Banner */
.recent-games-banner {
    background: linear-gradient(90deg, rgba(255,165,0,0.9) 0%, rgba(255,69,0,0.9) 100%);
    padding: 15px 0;
    margin: 20px 0;
    border-top: 3px solid var(--primary-orange);
    border-bottom: 3px solid var(--primary-orange);
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
}

.banner-label {
    background: rgba(0,0,0,0.8);
    color: var(--primary-orange);
    padding: 10px 20px;
    font-weight: bold;
    font-size: 14px;
    letter-spacing: 2px;
    white-space: nowrap;
    z-index: 10;
    border-right: 3px solid var(--primary-orange);
    margin-right: 20px;
}

.games-scroll-container {
    flex: 1;
    overflow: hidden;
}

.games-scroll {
    display: flex;
    animation: scroll-left 30s linear infinite;
    will-change: transform;
}

.games-scroll:hover {
    animation-play-state: paused;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.game-item {
    display: flex;
    align-items: center;
    background: rgba(0,0,0,0.3);
    border-radius: 8px;
    padding: 8px 15px;
    margin: 0 10px;
    min-width: 280px;
    border: 2px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.game-item:hover {
    background: rgba(0,0,0,0.5);
    border-color: rgba(255,255,255,0.5);
    transform: scale(1.05);
}

.game-item img {
    width: 40px;
    height: 56px;
    object-fit: cover;
    border-radius: 4px;
    margin-right: 12px;
    border: 1px solid rgba(255,255,255,0.3);
}

.game-item .no-image {
    width: 40px;
    height: 56px;
    background: rgba(101,69,178,0.5);
    border-radius: 4px;
    margin-right: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: rgba(255,255,255,0.3);
    border: 1px solid rgba(255,255,255,0.2);
}

.game-info {
    flex: 1;
    min-width: 0;
}

.game-name {
    color: white;
    font-weight: bold;
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 3px;
}

.game-platform {
    color: var(--primary-orange);
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive adjustments */
@media only screen and (max-width: 768px) {
    .banner-label {
        font-size: 11px;
        padding: 8px 12px;
        letter-spacing: 1px;
    }
    
    .game-item {
        min-width: 220px;
        padding: 6px 10px;
    }
    
    .game-item img,
    .game-item .no-image {
        width: 32px;
        height: 45px;
    }
    
    .game-name {
        font-size: 12px;
    }
    
    .game-platform {
        font-size: 10px;
    }
}
