

.main-wrapper {
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    max-width: 100%;
    margin: 0 auto;
}

.section-title {
    margin-bottom: 20px;
}

.section-title h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: black;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.slider-container {
    position: relative;
    display: flex;
    align-items: center;
    padding: 15px;
}

.media-strip {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* Internet Explorer 10+ */
    flex: 1;
    padding: 0 55px;
}

.media-strip::-webkit-scrollbar {
    display: none; /* WebKit */
}

.content-item {
    flex: 0 0 auto;
    width: 180px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
}

.content-item:hover {
    transform: scale(1.08) translateY(-5px);
    z-index: 15;
}

.thumbnail-box {
    width: 180px;
    height: 270px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.4s ease;
}

.content-item:hover .thumbnail-box {
    border-color: #667eea;
    box-shadow: 0 12px 24px rgba(102, 126, 234, 0.3);
}

.thumbnail-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        45deg,
        transparent 25%, 
        rgba(255, 255, 255, 0.15) 50%, 
        transparent 75%
    );
    transform: translateX(-100%) skewX(-20deg);
    transition: transform 0.8s ease;
}

.content-item:hover .thumbnail-box::before {
    transform: translateX(100%) skewX(-20deg);
}

.thumbnail-box span {
    font-size: 1.1rem;
    font-weight: 700;
    text-align: center;
    z-index: 3;
    position: relative;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.6);
    padding: 0 10px;
}

.nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(15, 15, 35, 0.9);
    border: 2px solid rgba(102, 126, 234, 0.5);
    color: #f0f0f0;
    font-size: 2.2rem;
    width: 45px;
    height: 70px;
    cursor: pointer;
    z-index: 25;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(6px);
}

.nav-button:hover {
    background: rgba(102, 126, 234, 0.8);
    border-color: rgba(102, 126, 234, 0.9);
    transform: translateY(-50%) scale(1.15);
}

.nav-previous {
    left: 0;
}

.nav-next {
    right: 0;
}

/* Responsive design */
@media (max-width: 768px) {
    .content-item {
        width: 140px;
    }
    
    .thumbnail-box {
        width: 140px;
        height: 210px;
    }
    
    .thumbnail-box span {
        font-size: 1rem;
    }
    
    .media-strip {
        padding: 0 45px;
    }
    
    .nav-button {
        width: 40px;
        height: 60px;
        font-size: 1.8rem;
    }
    
    .section-title h2 {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .content-item {
        width: 110px;
    }
    
    .thumbnail-box {
        width: 110px;
        height: 165px;
    }
    
    .thumbnail-box span {
        font-size: 0.9rem;
    }
    
    .media-strip {
        padding: 0 35px;
        gap: 8px;
    }
    
    .section-title h2 {
        font-size: 1.3rem;
    }
    
    .nav-button {
        width: 35px;
        height: 55px;
        font-size: 1.6rem;
    }
}