/* Video Section Styles */
.video-section {
	background: #000000;
	position: relative;
	overflow: hidden;
}

/* Decorative Background Elements */
.bg-decoration {
	position: absolute;
	border-radius: 50%;
	pointer-events: none;
	opacity: 0.05;
}

.bg-decoration-1 {
	top: -10%;
	right: -5%;
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, var(--light-green) 0%, transparent 70%);
	animation: float 15s ease-in-out infinite;
}

.bg-decoration-2 {
	bottom: -15%;
	left: -10%;
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, var(--primary-green) 0%, transparent 70%);
	animation: float 20s ease-in-out infinite reverse;
}

.bg-decoration-3 {
	top: 50%;
	right: 30%;
	width: 300px;
	height: 300px;
	background: radial-gradient(circle, var(--sage-green) 0%, transparent 70%);
	animation: float 18s ease-in-out infinite;
}

@keyframes float {
	0%, 100% {
		transform: translate(0, 0) scale(1);
	}
	25% {
		transform: translate(30px, -30px) scale(1.1);
	}
	50% {
		transform: translate(-20px, 20px) scale(0.9);
	}
	75% {
		transform: translate(20px, 30px) scale(1.05);
	}
}

/* Video Header */
.video-header {
	animation: fadeInDown 0.8s ease;
}

.video-title {
	font-size: 3rem;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 20px;
	position: relative;
	display: inline-block;
	text-shadow: 0 2px 20px rgba(124, 179, 66, 0.3);
}

.video-title::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 4px;
	background: linear-gradient(90deg, var(--light-green), var(--primary-green));
	border-radius: 2px;
	box-shadow: 0 0 20px var(--light-green);
}

.video-subtitle {
	font-size: 1.15rem;
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.8;
	margin: 30px auto 0;
}

/* Video Container */
.video-container {
	background: rgba(20, 20, 20, 0.8);
	border-radius: 30px;
	overflow: hidden;
	box-shadow: 
		0 20px 80px rgba(0, 0, 0, 0.5),
		0 0 0 1px rgba(124, 179, 66, 0.1),
		0 0 40px rgba(124, 179, 66, 0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	animation: fadeInUp 1s ease;
	border: 2px solid rgba(207, 153, 74, 1);
}

.video-container:hover {
	transform: translateY(-10px);
	box-shadow: 
		0 30px 100px rgba(0, 0, 0, 0.6),
		0 0 0 1px rgba(124, 179, 66, 0.3),
		0 0 60px rgba(124, 179, 66, 0.2);
}

/* Video Wrapper */
.video-wrapper {
	position: relative;
	padding-top: 56.25%; /* 16:9 Aspect Ratio */
	background: #000;
	overflow: hidden;
}

.video-wrapper video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Play Button Overlay */
.play-button-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0, 0, 0, 0.5);
	cursor: pointer;
	transition: all 0.3s ease;
	z-index: 2;
}

.play-button-overlay.hidden {
	opacity: 0;
	pointer-events: none;
}

.play-button {
	border: none;
	background: transparent;
	cursor: pointer;
	transition: transform 0.3s ease;
	animation: pulse 2s infinite;
	filter: drop-shadow(0 0 20px rgba(124, 179, 66, 0.5));
}

.play-button:hover {
	transform: scale(1.1);
	filter: drop-shadow(0 0 30px rgba(124, 179, 66, 0.8));
}

@keyframes pulse {
	0%, 100% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.05);
	}
}

/* Video Controls */
.video-controls {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
	padding: 20px;
	opacity: 0;
	transition: opacity 0.3s ease;
	z-index: 3;
}

.video-wrapper:hover .video-controls,
.video-controls.show {
	opacity: 1;
}

.progress-bar {
	width: 100%;
	height: 5px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 10px;
	overflow: hidden;
	cursor: pointer;
	margin-bottom: 15px;
}

.progress-filled {
	height: 100%;
	background: linear-gradient(90deg, var(--light-green), var(--primary-green));
	width: 0%;
	transition: width 0.1s linear;
	border-radius: 10px;
	box-shadow: 0 0 10px var(--light-green);
}

.controls-bottom {
	display: flex;
	align-items: center;
	gap: 15px;
}

.control-btn {
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 5px;
	transition: transform 0.2s ease, filter 0.2s ease;
}

.control-btn:hover {
	transform: scale(1.1);
	filter: drop-shadow(0 0 8px var(--light-green));
}

.time-display {
	color: white;
	font-size: 0.9rem;
	font-weight: 500;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.spacer {
	flex: 1;
}

/* Video Info */
.video-info {
	padding: 30px 40px;
	background: rgba(20, 20, 20, 0.6);
	border-top: 2px solid var(--light-green);
	backdrop-filter: blur(10px);
}

.info-title {
	color: var(--light-green);
	font-weight: 600;
	font-size: 1.5rem;
	margin-bottom: 10px;
	text-shadow: 0 2px 10px rgba(124, 179, 66, 0.3);
}

.info-text {
	color: rgba(255, 255, 255, 0.8);
	font-size: 1rem;
	line-height: 1.6;
	margin: 0;
}

.video-stats {
	display: flex;
	gap: 25px;
	justify-content: flex-end;
}

.stat-item {
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.95rem;
}

.stat-item strong {
	color: var(--light-green);
	font-weight: 600;
	display: block;
	font-size: 1.3rem;
	margin-bottom: 5px;
	text-shadow: 0 2px 10px rgba(124, 179, 66, 0.3);
}

/* Animations */
@keyframes fadeInDown {
	from {
		opacity: 0;
		transform: translateY(-30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Responsive */
@media (max-width: 768px) {
	.video-section {
		padding: 20px 0;
	}

	.video-title {
		font-size: 2rem;
	}

	.video-subtitle {
		font-size: 1rem;
	}

	.video-info {
		padding: 20px;
	}

	.info-title {
		font-size: 1.2rem;
	}

	.video-stats {
		justify-content: flex-start;
		margin-top: 20px;
		gap: 15px;
	}

	.stat-item strong {
		font-size: 1.1rem;
	}

	.bg-decoration-1,
	.bg-decoration-2,
	.bg-decoration-3 {
		opacity: 0.03;
	}
}