

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

.row-header {
    padding: 15px;
}

.row-header h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: black;
}

.scrollable-row {
    position: relative;
    display: flex;
    align-items: center;
    padding: 20px;
}

.row-content {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* Internet Explorer 10+ */
    flex: 1;
    padding: 0 50px;
}

.row-content::-webkit-scrollbar {
    display: none; /* WebKit */
}

.title-card {
    flex: 0 0 auto;
    width: 250px;
    cursor: pointer;
    transition: transform 0.3s ease;
    position: relative;
}

.title-card:hover {
    transform: scale(1.05);
    z-index: 10;
}

.poster-placeholder {
    width: 250px;
    height: 400px;
    background: linear-gradient(135deg, #e50914 0%, #8b0000 100%);
    border-radius: 4px;
    display: flex;
    align-items: left;
    justify-content: left;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.poster-placeholder.one {
	background-size: 100%;
	background-repeat: no-repeat;
	background-image:url("showposters/ANBOW_siteposterVERTICAL.png");
}

.poster-placeholder.two {
	background-size: 100%;
	background-repeat: no-repeat;
	background-image:url("showposters/witchdetectives_showposter_Hypp.png");
}

.poster-placeholder.three {
	background-size: 100%;
	background-repeat: no-repeat;
	background-image:url("showposters/lanalongbeard_showposter_Hypp.png");
}

.poster-placeholder.four {
	background-size: 100%;
	background-repeat: no-repeat;
	background-image:url("showposters/tuffpom_showposter_Hypp.png");
}

.poster-placeholder.five {
	background-size: 100%;
	background-repeat: no-repeat;
	background-image:url("showposters/mechamato_showposter_Hypp.png");
}

.poster-placeholder.six {
	background-size: 100%;
	background-repeat: no-repeat;
	background-image:url("showposters/gangnamproject_showposter_Hypp.png");
}

.poster-placeholder.seven {
	background-size: 100%;
	background-repeat: no-repeat;
	background-image:url("showposters/thenextstep_showposter_Hypp.png");
}

.poster-placeholder.eight {
	background-size: 100%;
	background-repeat: no-repeat;
	background-image:url("showposters/JADEARMOR_siteposterVERTICAL.png");
}

.poster-placeholder.nine {
	background-size: 100%;
	background-repeat: no-repeat;
	background-image:url("showposters/superhappymagicforest_showposter_Hypp.png");
}

.poster-placeholder.ten {
	background-size: 100%;
	background-repeat: no-repeat;
	background-image:url("showposters/chiikawa_showposter_Hypp.png");
}

.poster-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        45deg,
        transparent 30%, 
        rgba(255, 255, 255, 0.1) 50%, 
        transparent 70%
    );
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.title-card:hover .poster-placeholder::before {
    transform: translateX(100%);
}

.poster-placeholder span {
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    z-index: 2;
    position: relative;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hypp-scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.8);
    border: none;
    color: white;
    font-size: 2rem;
    width: 40px;
    height: 60px;
    cursor: pointer;
    z-index: 20;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}

.hypp-scroll-btn:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: translateY(-50%) scale(1.1);
}

.hypp-scroll-left {
    left: 0;
}

.hypp-scroll-right {
    right: 0;
}

/* Responsive design */
@media (max-width: 768px) {
    .title-card {
        width: 140px;
    }
    
    .poster-placeholder {
        width: 140px;
        height: 200px;
    }
    
    .poster-placeholder span {
        font-size: 0.9rem;
    }
    
    .row-content {
        padding: 0 40px;
    }
    
    .hypp-scroll-btn {
        width: 35px;
        height: 50px;
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .title-card {
        width: 80px;
    }
    
    .poster-placeholder {
        width: 80px;
        height: 120px;
    }
    
    .poster-placeholder span {
        font-size: 0.8rem;
    }
    
    .row-content {
        padding: 0 30px;
        gap: 6px;
    }
    
    .row-header h2 {
        font-size: 1.2rem;
    }
}