* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
body {
	font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
	background: #1a1a1a;
	color: #fff;
	overflow-x: hidden;
}
.container {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}
.normal-section {
	padding: 60px 40px;
	background: #2a2a2a;
	text-align: center;
}
.normal-section h2 {
	font-size: 2rem;
	margin-bottom: 15px;
	color: #fff;
}
.normal-section p {
	color: #999;
	font-size: 1.1rem;
}
/* Special Interactive Section */
.interactive-section {
	position: relative;
	min-height: 600px;
	background: #000;
	border: 2px solid #444;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}
.interactive-section.cursor-active {
	cursor: none;
}
.interactive-section.playing {
	cursor: default;
}
/* Thumbnail State */
.thumbnail-container {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: opacity 0.3s ease;
}
.thumbnail-container.hidden {
	opacity: 0;
	pointer-events: none;
}
.video-thumbnail {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
}
.thumbnail-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.4);
}
.section-content {
	position: relative;
	text-align: center;
	z-index: 1;
	pointer-events: none;
}
.section-content h3 {
	font-size: 2.5rem;
	margin-bottom: 20px;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 3px;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}
.section-content p {
	font-size: 1.2rem;
	color: #ccc;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}
/* Video Player State */
.video-container {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: none;
	align-items: center;
	justify-content: center;
	background: #000;
}
.video-container.active {
	display: flex;
}
video {
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	   object-fit: contain;
}
/* Custom Cursor */
.custom-cursor {
	position: fixed;
	width: 60px;
	height: 60px;
	pointer-events: none;
	z-index: 9999;
	display: none;
	transform: translate(-50%, -50%);
	transition: transform 0.15s ease-out, opacity 0.2s ease;
}
.custom-cursor.active {
	display: block;
}
.cursor-inner {
	position: relative;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.95);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
	-webkit-animation: pulse 2s infinite;
	        animation: pulse 2s infinite;
}
.cursor-inner.clicked {
	-webkit-animation: click-effect 0.3s ease-out;
	        animation: click-effect 0.3s ease-out;
}
@-webkit-keyframes pulse {
	0%,
	100% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.05);
	}
}
@keyframes pulse {
	0%,
	100% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.05);
	}
}
@-webkit-keyframes click-effect {
	0% {
		transform: scale(1);
	}
	50% {
		transform: scale(0.9);
	}
	100% {
		transform: scale(1);
	}
}
@keyframes click-effect {
	0% {
		transform: scale(1);
	}
	50% {
		transform: scale(0.9);
	}
	100% {
		transform: scale(1);
	}
}
.cursor-icon {
	width: 24px;
	height: 24px;
	fill: #000;
}
.cursor-text {
	position: absolute;
	bottom: -25px;
	left: 50%;
	transform: translateX(-50%);
	background: #fff;
	color: #000;
	padding: 4px 12px;
	border-radius: 20px;
	font-size: 12px;
	font-weight: bold;
	white-space: nowrap;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
/* Ripple effect on click */
.ripple {
	position: absolute;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.3);
	transform: scale(0);
	-webkit-animation: ripple-animation 0.6s ease-out;
	        animation: ripple-animation 0.6s ease-out;
	pointer-events: none;
	z-index: 2;
}
@-webkit-keyframes ripple-animation {
	to {
		transform: scale(4);
		opacity: 0;
	}
}
@keyframes ripple-animation {
	to {
		transform: scale(4);
		opacity: 0;
	}
}