* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Inter', system-ui, sans-serif;
	scroll-behavior: smooth;
}

body {
	background: #303030;
	color: #eaeaea;
}

::-webkit-scrollbar {
	width: 8px;
}

::-webkit-scrollbar-track {
    background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
    background: #34a8eb;
    border-radius: 4px;
	transition: all 300ms ease-in-out;
}

::-webkit-scrollbar-thumb:hover {
    background: #a62828;
}

nav {
	position: fixed;
	top: 0;
	width: 100%;
	padding: 1.5rem 2rem;
	background: rgba(10, 10, 10, 0.5);
	backdrop-filter: blur(10px);
	z-index: 1000;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.nav-logo {
	font-size: 1.5rem;
	color: #34a8eb;
	text-decoration: none;
	font-weight: bold;
}

.nav-links {
	display: flex;
	gap: 2rem;
}

.nav-links a {
	color: #eaeaea;
	text-decoration: none;
	transition: color 0.3s ease;
}

.nav-links a::after {
	display: flex !important;
	content: "";
	width: 0%;
	height: 5px;
	border-radius: 2px;
	background-color: #34a8eb;
	transition: width 0.3s ease;
}

.nav-links a:hover::after {
	width: 100%;
}

.nav-links a:hover {
	color: #34a8eb;
}

.header {
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	background: rgb(48,48,48);
	background: linear-gradient(0deg, rgba(48,48,48,1) 0%, rgba(10,10,10,1) 10%, rgba(10,10,10,1) 100%);
	position: relative;
	overflow: hidden;
	padding-top: 60px;
}

.header-content {
	text-align: center;
	max-width: 800px;
	padding: 0 2rem;
}

.header p {
	font-size: 1.5rem;
	color: #888;
	margin-bottom: 2rem;
	opacity: 0;
	animation: fadeIn 1s 0.5s forwards;
    animation-delay: 1s;
}

.fancy {
	font-size: 5rem;
	margin-bottom: 1rem;
	color: #34a8eb;
    opacity: 0;
	animation: fadeIn 1s 0.5s forwards;
	transition: all 500ms ease-in-out;
}

.social-links {
	display: flex;
	gap: 1.5rem;
	margin-top: 2rem;
}

.social-links a {
	color: #888;
	font-size: 1.5rem;
	transition: color 0.3s ease;
}

.social-links a:hover {
	color: #34a8eb;
}

.skills-container {
	padding: 6rem 2rem;
	max-width: 1400px;
	margin: 0 auto;
}

.skills-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 2rem;
	margin-top: 2rem;
}

.skill-card {
	background: #151515;
	border-radius: 12px;
	padding: 1.5rem;
	text-align: center;
	transition: all 0.4s ease;
	border: 1px solid #252525;
	opacity: 0;
	filter: blur(50px);
	cursor: default;
	transform: translateY(100px);
}

.skill-card.visible {
	opacity: 1;
	filter: blur(0px);
	transform: translateY(0);
}

.skill-card:hover {
	transform: translateY(-5px);
	border-color: #34a8eb;
	background: #1a1a1a;
}

.skill-icon {
	font-size: 2.5rem;
	margin-bottom: 1rem;
	color: #34a8eb;
}

.skill-name {
	color: #fff;
	font-size: 1.1rem;
	margin-bottom: 0.5rem;
}

.skill-level {
	width: 100%;
	height: 4px;
	background: #252525;
	border-radius: 2px;
	margin-top: 1rem;
	position: relative;
	overflow: hidden;
}

.skill-progress {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	background: linear-gradient(90deg, #34a8eb, #eaeaea);
	border-radius: 2px;
	transition: width 1s ease;
}

.experience {
	color: #888;
	font-size: 0.9rem;
	margin-top: 0.5rem;
}

.projects-container {
	padding: 4rem 2rem;
	max-width: 1400px;
	margin: 0 auto;
}

.section-title {
	font-size: 2.5rem;
	margin-bottom: 3rem;
	color: #34a8eb;
	text-align: center;
	transition: all 0.3s ease;
	opacity: 0;
	transform: translateY(100px);
}

.section-title.visible {
	opacity: 1;
	transform: translateY(0);
}

.projects-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 2rem;
	margin-top: 2rem;
}

.project-card {
	background: #151515;
	border-radius: 12px;
	padding: 2rem;
	transition: all 0.4s ease;
	opacity: 0;
	filter: blur(50px);
	transform: translateY(100px);
	border: 1px solid #252525;
}

.project-card.visible {
	opacity: 1;
	filter: blur(0px);
	transform: translateY(0);
}

.project-card:hover {
	transform: translateY(-5px);
	border-color: #34a8eb;
}

.project-title {
	color: #34a8eb;
	margin-bottom: 1rem;
	font-size: 1.5rem;
}

.project-description {
	color: #888;
	margin-bottom: 1.5rem;
	line-height: 1.6;
}

.tech-stack-container {
    background: rgba(255, 107, 107, 0.1);
    border: 1px solid rgba(255, 107, 107, 0.2);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    text-align: center;
    align-content: center;
    margin-bottom: 50px;
}

.tech-stack {
	display: flex;
	gap: 0.8rem;
	flex-wrap: wrap;
	margin-bottom: 1.5rem;
}

.tech-tag {
	background: rgba(255, 107, 107, 0.1);
	color: #34a8eb;
	padding: 0.4rem 1rem;
	border-radius: 20px;
	font-size: 0.9rem;
	border: 1px solid rgba(255, 107, 107, 0.2);
}

.project-links {
	display: flex;
	gap: 1.5rem;
    position: absolute;
    bottom: 20px;
}

.project-link {
	color: #888;
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	transition: color 0.3s ease;
	font-size: 0.9rem;
    background: rgba(255, 107, 107, 0.1);
    border: 1px solid rgba(255, 107, 107, 0.2);
    border-radius: 20px;
    padding: 0.4rem 1rem;
}

.project-link:hover {
	color: #34a8eb;
}

.scroll-up-btn {
	position: fixed;
	right: 50px;
	bottom: 50px;
	width: 20px;
	height: 20px;
	background-color: #34a8eb;
	border: none;
	border-radius: 5px;
	opacity: 0;
	transition: all 300ms ease-in-out;
}

.scroll-up-btn.visible {
	opacity: 1;
}

footer {
	text-align: center;
	padding: 4rem 2rem;
	background: rgb(48,48,48);
	background: #0a0a0a;
	margin-top: 4rem;
}

footer p {
	color: #888;
}

@keyframes fadeIn {
	to {
		opacity: 1;
	}
}

@media (max-width: 768px) {
	.header h1 {
		font-size: 3rem;
	}

	.header p {
		font-size: 1.2rem;
	}

	.skills-grid {
		grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
	}

	.projects-container {
		padding: 2rem 1rem;
	}

	nav {
		padding: 1rem;
	}

	.nav-links {
		gap: 1rem;
	}
}
