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

body {
	font-family: "Inter", sans-serif;
	overflow: hidden;
	height: 100vh;
}

.container {
	position: relative;
	width: 100vw;
	height: 100vh;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

/* Background Elements */
.background-elements {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.phone-outline {
	position: absolute;
	width: 120px;
	height: 200px;
	border: 2px solid rgba(255, 255, 255, 0.1);
	border-radius: 20px;
	animation: float 6s ease-in-out infinite;
}

.phone-outline::before {
	content: "";
	position: absolute;
	top: 10px;
	left: 50%;
	transform: translateX(-50%);
	width: 40px;
	height: 4px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 2px;
}

.phone-outline::after {
	content: "";
	position: absolute;
	bottom: 10px;
	left: 50%;
	transform: translateX(-50%);
	width: 30px;
	height: 30px;
	border: 2px solid rgba(255, 255, 255, 0.1);
	border-radius: 50%;
}

.phone-1 {
	top: 20%;
	left: 10%;
	animation-delay: 0s;
}

.phone-2 {
	top: 60%;
	right: 15%;
	animation-delay: -2s;
}

.phone-3 {
	top: 10%;
	right: 8%;
	animation-delay: -4s;
	opacity: 0.5;
}

.code-snippet {
	position: absolute;
	width: 100px;
	height: 60px;
	background: rgba(0, 0, 0, 0.1);
	border-radius: 8px;
	padding: 8px;
	animation: float 8s ease-in-out infinite;
}

.code-line {
	height: 3px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 2px;
	margin: 4px 0;
}

.code-line:nth-child(1) {
	width: 80%;
}
.code-line:nth-child(2) {
	width: 60%;
}
.code-line:nth-child(3) {
	width: 90%;
}

.snippet-1 {
	top: 30%;
	left: 5%;
	animation-delay: -1s;
}

.snippet-2 {
	bottom: 20%;
	right: 10%;
	animation-delay: -3s;
}

.floating-icon {
	position: absolute;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	color: rgba(255, 255, 255, 0.6);
	font-size: 18px;
	animation: float 10s ease-in-out infinite;
}

.icon-1 {
	top: 15%;
	left: 20%;
	animation-delay: 0s;
}

.icon-2 {
	top: 70%;
	left: 8%;
	animation-delay: -2.5s;
}

.icon-3 {
	top: 40%;
	right: 5%;
	animation-delay: -5s;
}

.icon-4 {
	bottom: 15%;
	left: 15%;
	animation-delay: -7.5s;
}

/* Content */
.content {
	position: relative;
	z-index: 10;
	text-align: center;
	color: white;
	max-width: 500px;
	padding: 0 20px;
}

.avatar {
	width: 100px;
	height: 100px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 30px;
	backdrop-filter: blur(10px);
	border: 2px solid rgba(255, 255, 255, 0.3);
}

.avatar i {
	font-size: 40px;
	color: white;
}

.name {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 10px;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.title {
	font-size: 1.2rem;
	font-weight: 400;
	margin-bottom: 20px;
	opacity: 0.9;
	text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.description {
	font-size: 1rem;
	line-height: 1.6;
	margin-bottom: 30px;
	opacity: 0.8;
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.social-links {
	margin-bottom: 30px;
}

.linkedin-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 12px 24px;
	background: rgba(255, 255, 255, 0.2);
	color: white;
	text-decoration: none;
	border-radius: 30px;
	font-weight: 500;
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.3);
	transition: all 0.3s ease;
}

.linkedin-btn:hover {
	background: rgba(255, 255, 255, 0.3);
	transform: translateY(-2px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.skills {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
}

.skill-tag {
	padding: 8px 16px;
	background: rgba(255, 255, 255, 0.1);
	color: white;
	border-radius: 20px;
	font-size: 0.9rem;
	font-weight: 500;
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Particles */
.particles {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
	pointer-events: none;
}

.particle {
	position: absolute;
	width: 4px;
	height: 4px;
	background: rgba(255, 255, 255, 0.5);
	border-radius: 50%;
	animation: particle-float 15s linear infinite;
}

.particle:nth-child(1) {
	left: 20%;
	animation-delay: 0s;
}

.particle:nth-child(2) {
	left: 40%;
	animation-delay: -3s;
}

.particle:nth-child(3) {
	left: 60%;
	animation-delay: -6s;
}

.particle:nth-child(4) {
	left: 80%;
	animation-delay: -9s;
}

.particle:nth-child(5) {
	left: 10%;
	animation-delay: -12s;
}

.particle:nth-child(6) {
	left: 90%;
	animation-delay: -15s;
}

/* Animations */
@keyframes float {
	0%,
	100% {
		transform: translateY(0px) rotate(0deg);
	}
	50% {
		transform: translateY(-20px) rotate(5deg);
	}
}

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

/* Mobile Responsive Design */
@media (max-width: 768px) {
	.name {
		font-size: 2rem;
	}

	.title {
		font-size: 1rem;
	}

	.description {
		font-size: 0.9rem;
	}

	.phone-outline {
		width: 80px;
		height: 140px;
	}

	.phone-1 {
		top: 15%;
		left: 5%;
	}

	.phone-2 {
		top: 65%;
		right: 5%;
	}

	.phone-3 {
		display: none;
	}

	.floating-icon {
		width: 30px;
		height: 30px;
		font-size: 14px;
	}

	.code-snippet {
		width: 70px;
		height: 40px;
	}

	.avatar {
		width: 80px;
		height: 80px;
		margin-bottom: 20px;
	}

	.avatar i {
		font-size: 30px;
	}

	.skills {
		gap: 8px;
	}

	.skill-tag {
		padding: 6px 12px;
		font-size: 0.8rem;
	}
}

@media (max-width: 480px) {
	.content {
		padding: 0 15px;
	}

	.name {
		font-size: 1.8rem;
	}

	.linkedin-btn {
		padding: 10px 20px;
		font-size: 0.9rem;
	}

	.phone-outline {
		width: 60px;
		height: 100px;
	}

	.snippet-2 {
		display: none;
	}

	.icon-3,
	.icon-4 {
		display: none;
	}
}

@media (max-height: 600px) {
	.avatar {
		width: 60px;
		height: 60px;
		margin-bottom: 15px;
	}

	.avatar i {
		font-size: 24px;
	}

	.name {
		font-size: 1.8rem;
		margin-bottom: 8px;
	}

	.title {
		font-size: 1rem;
		margin-bottom: 15px;
	}

	.description {
		font-size: 0.9rem;
		margin-bottom: 20px;
	}

	.social-links {
		margin-bottom: 20px;
	}
}
