/*!
 * Sentio for Elementor - video-carousel widget
 * Extracted from frontend.css during Batch 7 mechanical extraction (2026-04-19)
 */

/* ==========================================================================
   #16 Video Carousel
   ========================================================================== */

.sentio-vc {
	font-family: inherit;
}

/* ── Filters (Differentiator #4) ── */
.sentio-vc__filters {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 20px;
	justify-content: center;
}

.sentio-vc__filter {
	background: rgba(255,255,255,0.08);
	border: none;
	color: #ccc;
	padding: 6px 16px;
	border-radius: 20px;
	font-size: 13px;
	cursor: pointer;
	transition: background-color 0.2s, color 0.2s;
}

.sentio-vc__filter:hover {
	background: rgba(255,255,255,0.15);
}

.sentio-vc__filter--active {
	background: #6EC1E4;
	color: #fff;
}

/* ── Featured Player (Differentiator #1) ── */
.sentio-vc__player {
	background: #0F0F1A;
	border-radius: 12px;
	overflow: hidden;
	margin-bottom: 20px;
}

.sentio-vc__player-video {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	background: #000;
}

.sentio-vc__player-video video,
.sentio-vc__player-video iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100% !important;
	height: 100% !important;
	display: block;
	border: 0;
}

/* Player Poster / Thumbnail */
.sentio-vc__player-poster {
	position: absolute;
	inset: 0;
	z-index: 2;
	cursor: pointer;
}

.sentio-vc__player-poster img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.sentio-vc__poster-play {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0,0,0,0.3);
	border: none;
	cursor: pointer;
	transition: background-color 0.25s;
}

.sentio-vc__poster-play:hover {
	background: rgba(0,0,0,0.45);
}

.sentio-vc__poster-play span {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: rgba(110,193,228,0.9);
	color: #fff;
	font-size: 26px;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 20px rgba(0,0,0,0.3);
	transition: transform 0.2s;
}

.sentio-vc__poster-play:hover span {
	transform: scale(1.1);
}

/* Player Controls Bar */
.sentio-vc__player-bar {
	padding: 0 16px;
	background: #0F0F1A;
}

.sentio-vc__player-controls {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 8px 0;
}

.sentio-vc__btn {
	background: none;
	border: none;
	color: #fff;
	cursor: pointer;
	font-size: 16px;
	padding: 4px;
	line-height: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	opacity: 0.8;
	transition: opacity 0.2s;
	flex-shrink: 0;
}

.sentio-vc__btn:hover {
	opacity: 1;
}

.sentio-vc__btn-play {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: #6EC1E4;
	color: #fff;
	font-size: 14px;
	opacity: 1;
}

.sentio-vc__btn-play:hover {
	filter: brightness(1.15);
}

.sentio-vc__progress-track {
	flex: 1;
	height: 4px;
	background: rgba(255,255,255,0.15);
	border-radius: 2px;
	cursor: pointer;
	position: relative;
}

.sentio-vc__progress-track:hover {
	height: 6px;
}

.sentio-vc__progress-fill {
	height: 100%;
	background: #6EC1E4;
	border-radius: 2px;
	width: 0%;
	transition: width 0.1s linear;
	pointer-events: none;
}

.sentio-vc__time-current,
.sentio-vc__time-duration {
	font-size: 11px;
	color: #999;
	font-variant-numeric: tabular-nums;
}

.sentio-vc__time-sep {
	font-size: 11px;
	color: #555;
}

.sentio-vc__speed-btn {
	background: rgba(255,255,255,0.1);
	border: none;
	color: #fff;
	padding: 3px 8px;
	border-radius: 4px;
	font-size: 11px;
	font-weight: 600;
	cursor: pointer;
	white-space: nowrap;
}

.sentio-vc__speed-btn:hover {
	background: rgba(255,255,255,0.2);
}

.sentio-vc__volume {
	display: flex;
	align-items: center;
	gap: 4px;
}

.sentio-vc__volume-track {
	width: 60px;
	height: 4px;
	background: rgba(255,255,255,0.15);
	border-radius: 2px;
	cursor: pointer;
	position: relative;
}

.sentio-vc__volume-fill {
	height: 100%;
	background: #6EC1E4;
	border-radius: 2px;
	pointer-events: none;
}

/* Player info */
.sentio-vc__player-info {
	padding: 12px 16px 16px;
}

.sentio-vc__player-title {
	margin: 0;
	font-size: 16px;
	font-weight: 600;
	color: #fff;
}

.sentio-vc__player-desc {
	margin: 4px 0 0;
	font-size: 13px;
	color: #aaa;
}

/* ── Player Position: Left ── */
.sentio-vc--player-left .sentio-vc__body {
	display: flex;
	gap: 20px;
	align-items: flex-start;
}

.sentio-vc--player-left .sentio-vc__player {
	flex: 0 0 55%;
	margin-bottom: 0;
}

.sentio-vc--player-left .sentio-vc__carousel-wrap {
	flex: 1;
	min-width: 0;
}

/* ── Carousel Wrap ── */
.sentio-vc__carousel-wrap {
	position: relative;
}

/* ── Slides / Cards ── */
.sentio-vc__slide {
	background: #16213E;
	border-radius: 8px;
	overflow: hidden;
	cursor: pointer;
	transition: transform 0.25s, box-shadow 0.25s;
}

.sentio-vc__slide:hover {
	transform: translateY(-3px);
	box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.sentio-vc__slide--active {
	outline: 2px solid #6EC1E4;
	outline-offset: -2px;
}

/* Thumbnail Wrap */
.sentio-vc__thumb-wrap {
	position: relative;
	overflow: hidden;
	aspect-ratio: 16 / 9;
}

.sentio-vc--ratio-4-3 .sentio-vc__thumb-wrap {
	aspect-ratio: 4 / 3;
}

.sentio-vc--ratio-1-1 .sentio-vc__thumb-wrap {
	aspect-ratio: 1 / 1;
}

.sentio-vc__thumb {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.3s;
}

.sentio-vc__slide:hover .sentio-vc__thumb {
	transform: scale(1.05);
}

.sentio-vc__thumb-placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255,255,255,0.05);
	font-size: 36px;
	color: rgba(255,255,255,0.15);
}

/* Duration Badge */
.sentio-vc__duration {
	position: absolute;
	bottom: 8px;
	right: 8px;
	background: rgba(0,0,0,0.75);
	color: #fff;
	font-size: 11px;
	font-weight: 600;
	padding: 2px 6px;
	border-radius: 3px;
	line-height: 1.3;
	font-variant-numeric: tabular-nums;
	z-index: 2;
}

/* Differentiator #5: Play Overlay */
.sentio-vc__play-overlay {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0,0,0,0.35);
	opacity: 0;
	transition: opacity 0.25s;
	z-index: 1;
}

.sentio-vc__slide:hover .sentio-vc__play-overlay {
	opacity: 1;
}

.sentio-vc__play-overlay span {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: rgba(110,193,228,0.9);
	color: #fff;
	font-size: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	animation: sentio-vc-pulse 1.5s infinite;
}

@keyframes sentio-vc-pulse {
	0%, 100% { transform: scale(1); }
	50% { transform: scale(1.1); }
}

/* Differentiator #6: Watch Progress Bar */
.sentio-vc__watch-bar {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: rgba(255,255,255,0.2);
	z-index: 2;
}

.sentio-vc__watch-fill {
	height: 100%;
	background: #6EC1E4;
	width: 0%;
	transition: width 0.3s;
}

/* Card Body */
.sentio-vc__card-body {
	padding: 10px 12px 12px;
}

.sentio-vc__card-title {
	margin: 0;
	font-size: 13px;
	font-weight: 600;
	color: #fff;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.sentio-vc__card-desc {
	margin: 4px 0 0;
	font-size: 12px;
	color: #aaa;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

/* ── Navigation ── */
.sentio-vc__arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 5;
	background: rgba(0,0,0,0.5);
	border: none;
	color: #fff;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	font-size: 20px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background-color 0.2s;
}

.sentio-vc__arrow:hover {
	background: rgba(0,0,0,0.8);
}

.sentio-vc__arrow--prev { left: -18px; }
.sentio-vc__arrow--next { right: -18px; }

.sentio-vc__dots {
	text-align: center;
	margin-top: 16px;
}

.sentio-vc__dots .swiper-pagination-bullet {
	width: 8px;
	height: 8px;
	background: rgba(255,255,255,0.3);
	opacity: 1;
	margin: 0 4px;
}

.sentio-vc__dots .swiper-pagination-bullet-active {
	background: #6EC1E4;
}

/* ── Differentiator #2: Lightbox ── */
.sentio-vc__lightbox {
	position: fixed;
	inset: 0;
	z-index: 100000;
	background: rgba(0,0,0,0.9);
	display: flex;
	align-items: center;
	justify-content: center;
}

.sentio-vc__lightbox-inner {
	position: relative;
	width: 80vw;
	max-width: 1100px;
	aspect-ratio: 16 / 9;
}

.sentio-vc__lightbox-video {
	width: 100%;
	height: 100%;
	position: relative;
}

.sentio-vc__lightbox-video video,
.sentio-vc__lightbox-video iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100% !important;
	height: 100% !important;
	border: 0;
}

.sentio-vc__lightbox-close {
	position: absolute;
	top: -40px;
	right: 0;
	background: none;
	border: none;
	color: #fff;
	font-size: 32px;
	cursor: pointer;
	opacity: 0.7;
	transition: opacity 0.2s;
	line-height: 1;
}

.sentio-vc__lightbox-close:hover {
	opacity: 1;
}

/* ── Differentiator #7: Sticky Mini-Player ── */
.sentio-vc__sticky {
	position: fixed;
	z-index: 99999;
	width: 320px;
	aspect-ratio: 16 / 9;
	background: #000;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 8px 30px rgba(0,0,0,0.5);
	transition: transform 0.3s, opacity 0.3s;
}

.sentio-vc__sticky--bottom-right { bottom: 20px; right: 20px; }
.sentio-vc__sticky--bottom-left  { bottom: 20px; left: 20px; }
.sentio-vc__sticky--top-right    { top: 20px; right: 20px; }
.sentio-vc__sticky--top-left     { top: 20px; left: 20px; }

.sentio-vc__sticky-video {
	width: 100%;
	height: 100%;
	position: relative;
}

.sentio-vc__sticky-video video,
.sentio-vc__sticky-video iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100% !important;
	height: 100% !important;
	border: 0;
}

.sentio-vc__sticky-close {
	position: absolute;
	top: 4px;
	right: 4px;
	background: rgba(0,0,0,0.6);
	border: none;
	color: #fff;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	font-size: 14px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2;
	line-height: 1;
}

/* ── Responsive ── */
@media (max-width: 767px) {
	.sentio-vc--player-left .sentio-vc__body {
		flex-direction: column;
	}
	.sentio-vc--player-left .sentio-vc__player {
		flex: 0 0 auto;
		width: 100%;
	}
	.sentio-vc__arrow--prev { left: 4px; }
	.sentio-vc__arrow--next { right: 4px; }
	.sentio-vc__lightbox-inner {
		width: 95vw;
	}
	.sentio-vc__sticky {
		width: 200px;
	}
}
