/* ForYou Page Styles */
.foryou {
	width: 100%;
	height: 100vh;
	position: relative;
	overflow: hidden;
}

.video-swiper {
	width: 100%;
	height: 100%;
	position: relative;
	overflow: hidden;
}

.video-slide {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: #000;
	transition: transform 0.3s ease;
}

.video-slide.active {
	transform: translateY(0);
}

.video-slide.prev {
	transform: translateY(-100%);
}

.video-slide.next {
	transform: translateY(100%);
}

/* Video Player Container */
.video-player-container {
	width: 100%;
	height: 100%;
	position: relative;
	background: #000;
}

.video-player {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

/* Video Info Overlay */
.video-info {
	position: absolute;
	bottom: 80px;
	left: 0;
	right: 0;
	padding: 20px;
	background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
	color: #fff;
	z-index: 10;
}

.video-title {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 8px;
}

.video-intro {
	font-size: 14px;
	color: #d0d0d0;
	line-height: 1.4;
	max-height: 60px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}

/* Loading Container */
.loading-container {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
	color: #fff;
	z-index: 20;
}

.loading-container.hidden {
	display: none;
}

.loading-container p {
	font-size: 14px;
	color: #9ca3af;
}

/* Touch Indicators */
.swipe-indicator {
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 15;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.swipe-arrow {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.5);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 20px;
}

.swipe-count {
	position: absolute;
	top: 20px;
	right: 20px;
	padding: 8px 16px;
	background: rgba(0, 0, 0, 0.6);
	border-radius: 20px;
	color: #fff;
	font-size: 12px;
	z-index: 15;
}
