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

body {
	font-family: 'Arial', sans-serif;
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: black;
	background-size: cover;
	color: white;
}

::selection {
	background-color: white;
	color: black;
}

.background {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	overflow: hidden;
	z-index: -1;
}

.bio-container {
	text-align: center;
	animation: fadeInUp 0.5s ease;
	perspective: 1000px;
}

.profile-card {
	background: #0e0e0ea8;
	backdrop-filter: blur(10px);
	padding: 30px;
	max-width: 650px;
	border-radius: 25px;
	display: inline-block;
	position: relative;
	overflow: hidden;
}

.profile-card .banner {
	width: 100%;
	height: 200px;
	background: url('/assets/gifs/tuff.gif') no-repeat center center;
	background-size: cover;
	border-radius: 25px 25px 0 0;
	z-index: -1;
	position: absolute;
	top: 0;
	left: 0;
}

.profile-img {
	width: 130px;
	height: 130px;
	border-radius: 50%;
	margin-top: 80px;
	z-index: 2;
}

.name {
	font-size: 2.5rem;
	margin-bottom: 15px;
	color: #fff;
	text-shadow: 0 0 5px #ffffffb3, 0 0 10px #ffffff80, 0 0 15px #ffffff4d;
}

.quote {
	font-size: 1.2rem;
	font-style: italic;
	margin-bottom: 15px;
}

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

.social-icons-container {
	display: inline-block;
}

.social-icons {
	display: flex;
	gap: 10px;
}

.social-icon {
	font-size: 1.5rem;
	color: #fff;
	text-decoration: none;
	transition: all 0.3s ease;
	position: relative;
	text-shadow: 0 0 5px #ffffffb3, 0 0 10px #ffffff80, 0 0 15px #ffffff4d;
}

.social-icon:hover {
	transform: scale(1.2);
}

.social-icon:hover .tooltip {
	visibility: visible;
	animation: tooltip-pop 0.2s ease-out forwards;
}

.social-icon:not(:hover) .tooltip {
	animation: tooltip-hide 0.2s ease-in forwards;
	visibility: hidden;
}

.tooltip {
	visibility: hidden;
	width: 80px;
	background-color: #000000;
	color: #fff;
	text-align: center;
	border-radius: 25px;
	border: none;
	padding: 4px;
	position: absolute;
	z-index: 1;
	font-size: 12px;
	bottom: 125%;
	left: 50%;
	margin-left: -40px;
	opacity: 0;
	transition: visibility 0.2s, opacity 0.2s ease-in-out;
}

.project-link h2 {
	font-size: 1.3rem;
	color: #fff;
	margin-bottom: 15px;
	font-weight: 600;
}

.project-link-btn {
	font-size: 1.3rem;
	color: #fff;
	text-decoration: none;
	display: inline-block;
	font-weight: 700;
	transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease, text-shadow 0.3s ease;
	margin-bottom: 15px;
	position: relative;
	text-shadow: 0 0 5px #ffffffb3, 0 0 10px #ffffff80, 0 0 15px #ffffff4d;
}

.project-link-btn:hover {
	transform: scale(1.2);
}

.project-link-btn .tooltip {
	visibility: hidden;
	width: 100px;
	background-color: #000000;
	color: #fff;
	text-align: center;
	border-radius: 25px;
	padding: 4px;
	position: absolute;
	z-index: 1;
	font-size: 12px;
	bottom: 125%;
	left: 50%;
	margin-left: -50px;
	opacity: 0;
	transition: visibility 0.2s, opacity 0.2s ease-in-out;
}

.project-link-btn:hover .tooltip {
	visibility: visible;
	animation: tooltip-pop 0.2s ease-out forwards;
}

.project-link-btn:not(:hover) .tooltip {
	animation: tooltip-hide 0.2s ease-in forwards;
	visibility: hidden;
}

#enter-screen {
	position: fixed;
	width: 100%;
	height: 100vh;
	background: rgba(0, 0, 0, 0.9);
	backdrop-filter: blur(10px);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 9999;
	opacity: 1;
	transition: opacity 0.5s ease-out;
}

#enter-text {
	font-size: 1.5rem;
	padding: 15px 30px;
	background: transparent;
	border: none;
	color: white;
	text-shadow: 0 0 5px #ffffffb3, 0 0 10px #ffffff80, 0 0 15px #ffffff4d;
	border-radius: 25px;
	cursor: pointer;
	transition: all 0.3s ease;
	font-weight: bold;
}

@keyframes tooltip-pop {
	0% {
		opacity: 0;
		transform: translateY(10px);
	}

	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes tooltip-hide {
	0% {
		opacity: 1;
		transform: translateY(0);
	}

	100% {
		opacity: 0;
		transform: translateY(10px);
	}
}

@keyframes fadeInUp {
	0% {
		opacity: 0;
		transform: translateY(30px);
	}

	100% {
		opacity: 1;
		transform: translateY(0);
	}
}
