* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: Arial, sans-serif;
	background: #0d0d0d;
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	text-align: center;
	color: white;
	padding: 20px;
	overflow: hidden;
}

.content {
	opacity: 0;
	transform: translateY(100px);
	animation: fadeInUp 3.5s ease-out forwards;
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(100px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.navbar {
	position: fixed;
	top: 20px;
	right: 20px;
	background: rgba(255, 255, 255, 0.1);
	padding: 10px 20px;
	border-radius: 10px;
	backdrop-filter: blur(5px);
}

.navbar ul {
	list-style: none;
	display: flex;
	gap: 20px;
}

.navbar ul li {
	display: inline;
}

.navbar ul li a {
	text-decoration: none;
	color: white;
	font-weight: bold;
	cursor: pointer;
}

.hero img {
	width: 200px;
	border-radius: 100px;
	box-shadow: 0 0 40px rgba(255, 255, 255, 0.2);
}

.hero h1 {
	font-size: 2.5em;
	margin: 10px 0;
}

.hero p {
	font-size: 1.2em;
}

.modal {
	display: none;
	position: fixed;
	top: -100%;
	left: 50%;
	transform: translate(-50%, 0);
	background: #191b22;
	padding: 30px;
	border-radius: 10px;
	width: 90%;
	max-width: 400px;
	box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
	text-align: left;
}

@keyframes dropDown {
	0% {
		top: -100%;
		transform: translate(-50%, 0);
	}
	70% {
		top: 50%;
		transform: translate(-50%, -50%) scale(1.1);
	}
	100% {
		top: 50%;
		transform: translate(-50%, -50%) scale(1);
	}
}

@keyframes shake {
	0%, 100% { transform: translate(0, 0); }
	10%, 30%, 50%, 70%, 90% { transform: translate(-5px, 0); }
	20%, 40%, 60%, 80% { transform: translate(5px, 0); }
}

.modal h2 {
	text-align: center;
	color: white;
}

.modal input {
	width: 100%;
	padding: 10px;
	margin: 10px 0;
	border: none;
	border-radius: 30px;
	background: #252836;
	color: white;
}

.modal button {
	width: 100%;
	padding: 10px;
	border: none;
	border-radius: 30px;
	background: #6a5acd;
	color: white;
	font-weight: bold;
	cursor: pointer;
	margin-top: 10px;
}

.modal button:hover {
	background: #7b68ee;
}

.close-btn {
	position: absolute;
	top: 10px;
	right: 15px;
	font-size: 20px;
	cursor: pointer;
	color: white;
}

.buttons {
	margin-top: 20px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.buttons a {
	display: inline-block;
	background: rgba(255, 255, 255, 0.2);
	color: white;
	padding: 12px 40px;
	margin: 10px;
	font-size: 1.2em;
	text-decoration: none;
	border-radius: 10px;
	transition: background 0.3s ease, transform 0.2s ease;
}

.buttons a:hover {
	background: rgba(255, 255, 255, 0.4);
	transform: scale(1.05);
}

@media (max-width: 768px) {
	.hero img {
		width: 100px;
	}

	.hero h1 {
		font-size: 2em;
	}

	.hero p {
		font-size: 1em;
	}

	.buttons {
		flex-direction: column;
		gap: 10px;
	}

	.buttons a {
		width: 100%;
		text-align: center;
	}
}