* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	background: linear-gradient(135deg, #0a0a0a 0%, #1a1a3e 50%, #0a0a0a 100%);
	color: #ffffff;
	min-height: 100vh;
	overflow-x: hidden;
}

.stars {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 1;
}

.star {
	position: absolute;
	width: 2px;
	height: 2px;
	background: white;
	border-radius: 50%;
	animation: twinkle 3s infinite;
}

@keyframes twinkle {

	0%,
	100% {
		opacity: 0.3;
	}

	50% {
		opacity: 1;
	}
}

.container {
	position: relative;
	z-index: 2;
	max-width: 600px;
	margin: 0 auto;
	padding: 40px 20px;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.main-card {
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(20px);
	border-radius: 25px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	padding: 50px 40px;
	width: 100%;
	max-width: 550px;
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.profile-section {
	text-align: center;
	margin-bottom: 40px;
	animation: fadeInUp 1s ease-out;
}

.logo-container {
	width: 450px;
	height: auto;
	margin: 0 auto;
	overflow: hidden;
	transition: all 0.3s ease;
}

.logo-container:hover {
	transform: scale(1.05);
}

.logo-container img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.profile-name {
	font-size: 2rem;
	font-weight: bold;
	margin-bottom: 10px;
	background: linear-gradient(45deg, #00d4ff, #ffffff, #9d4edd);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
	from {
		text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
	}

	to {
		text-shadow: 0 0 30px rgba(157, 78, 221, 0.8);
	}
}

.profile-bio {
	color: rgba(255, 255, 255, 0.8);
	font-size: 1rem;
	line-height: 1.5;
	max-width: 350px;
	margin: 0 auto;
}

.links-container {
	width: 100%;
	max-width: 480px;
}

.link-item {
	display: block;
	width: 100%;
	padding: 18px 30px;
	margin-bottom: 16px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(0, 212, 255, 0.2);
	border-radius: 15px;
	color: #ffffff;
	text-decoration: none;
	font-weight: 500;
	font-size: 1.1rem;
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
	text-align: center;
	position: relative;
	overflow: hidden;
	animation: slideInUp 0.6s ease-out forwards;
	opacity: 0;
	transform: translateY(30px);
}

.link-item:nth-child(1) {
	animation-delay: 0.1s;
}

.link-item:nth-child(2) {
	animation-delay: 0.2s;
}

.link-item:nth-child(3) {
	animation-delay: 0.3s;
}

.link-item:nth-child(4) {
	animation-delay: 0.4s;
}

.link-item:nth-child(5) {
	animation-delay: 0.5s;
}

.link-item:nth-child(6) {
	animation-delay: 0.6s;
}

.link-item:nth-child(7) {
	animation-delay: 0.7s;
}

.link-item:nth-child(8) {
	animation-delay: 0.8s;
}

@keyframes slideInUp {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.link-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.1), transparent);
	transition: left 0.5s ease;
}

.link-item:hover::before {
	left: 100%;
}

.link-item:hover {
	transform: translateY(-3px);
	border-color: #9d4edd;
	box-shadow: 0 10px 25px rgba(157, 78, 221, 0.3);
	background: rgba(255, 255, 255, 0.08);
}

.link-text {
	vertical-align: middle;
}

.link-icon {
	display: inline-block;
	width: 24px;
	text-align: center;
	margin-right: 3px;
	vertical-align: middle;
}

.link-icon i {
	font-size: 1.1rem;
}


.footer-text {
	margin-top: 40px;
	text-align: center;
	color: rgba(255, 255, 255, 0.5);
	font-size: 0.9rem;
	text-transform: uppercase;
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes float {

	0%,
	100% {
		transform: translateY(0px);
	}

	50% {
		transform: translateY(-10px);
	}
}

.floating {
	animation: float 6s ease-in-out infinite;
}

@keyframes ripple {
	to {
		transform: scale(4);
		opacity: 0;
	}
}

@media (max-width: 480px) {
	.container {
		padding: 20px 15px;
	}

	.profile-name {
		font-size: 1.8rem;
	}

	.profile-image {
		width: 100px;
		height: 100px;
	}

	.link-item {
		padding: 14px 20px;
		font-size: 0.95rem;
	}

	.social-link {
		width: 45px;
		height: 45px;
		font-size: 1.1rem;
	}
}