* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Arial', sans-serif;
	background: #000;
	color: #fff;
	overflow-x: hidden;
}

/* Animated background particles */
.bg-particles {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
}

.particle {
	position: absolute;
	width: 2px;
	height: 2px;
	background: rgba(255, 255, 255, 0.3);
	animation: float 20s infinite linear;
}

@keyframes float {
	0% {
		transform: translateY(80vh) translateX(0px);
		opacity: 0;
	}
	10% {
		opacity: 1;
	}
	90% {
		opacity: 1;
	}
	100% {
		transform: translateY(-100px) translateX(100px);
		opacity: 0;
	}
}

/* Header section */
.hero-section {
	height: 80vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	padding: 0 8%;
	position: relative;
}

.origins-title {
	font-size: clamp(4rem, 8vw, 12rem);
	font-weight: 100;
	letter-spacing: -2px;
	opacity: 0;
	animation: slideInFromLeft 1.5s ease-out 0.5s forwards;
	background: linear-gradient(135deg, #fff, #888);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

@keyframes slideInFromLeft {
	from {
		transform: translateX(-100px);
		opacity: 0;
	}
	to {
		transform: translateX(0);
		opacity: 1;
	}
}

@keyframes fadeInUp {
	from {
		transform: translateY(40px);
		opacity: 0;
	}
	to {
		transform: translateY(0);
		opacity: 1;
	}
}

/* Interactive elements */
.floating-elements {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: -1;
}

.floating-element {
	position: absolute;
	width: 60px;
	height: 60px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	animation: floatAround 15s infinite ease-in-out;
}

.floating-element:nth-child(1) {
	top: 20%;
	left: 10%;
	animation-delay: 0s;
}

.floating-element:nth-child(2) {
	top: 60%;
	right: 15%;
	animation-delay: -5s;
	border-radius: 0;
	transform: rotate(45deg);
}

.floating-element:nth-child(3) {
	bottom: 30%;
	left: 20%;
	animation-delay: -10s;
	width: 40px;
	height: 40px;
}

@keyframes floatAround {
	0%,
	100% {
		transform: translateY(0px) rotate(0deg);
		opacity: 0.3;
	}
	50% {
		transform: translateY(-30px) rotate(180deg);
		opacity: 0.6;
	}
}

/* Responsive design */
@media (max-width: 768px) {
	.nav-links {
		gap: 2rem;
		flex-wrap: wrap;
		justify-content: center;
	}

	.nav-container {
		flex-direction: column;
		gap: 1rem;
	}

	.hero-section {
		padding: 0 4%;
		text-align: center;
		align-items: center;
	}

	.name-section {
		padding: 4rem 0;
	}

	.name-container {
		padding: 0 4%;
	}

	.main-name {
		margin-top: 50px;
		text-align: center;
	}
}

/* Scroll animations */
.animate-on-scroll {
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.8s ease;
}

.animate-on-scroll.animate {
	opacity: 1;
	transform: translateY(0);
}

/* Cursor trail effect */
.cursor-trail {
	position: fixed;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(99, 102, 241, 0.8), transparent);
	pointer-events: none;
	z-index: 9999;
	transition: all 0.1s ease;
}
