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

:root {
	--bg-dark: #0a0a0f;
	--bg-card: #14141f;
	--text-primary: #ffffff;
	--text-secondary: #a0a0b8;
	--accent-cyan: #22d3ee;
	--accent-orange: #fb923c;
	--accent-lime: #84cc16;
	--accent-blue: #3b82f6;
}

body {
	font-family: 'Inter', -apple-system, sans-serif;
	background: var(--bg-dark);
	color: var(--text-primary);
	overflow-x: hidden;
}

/* Animated Background */
#particles-canvas {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
}

.content {
	position: relative;
	z-index: 1;
}

/* Logo */
.logo-container {
	position: fixed;
	top: 2rem;
	left: 2rem;
	z-index: 100;
}

.logo {
	font-family: 'Caveat', cursive;
	font-size: 2.5rem;
	font-weight: 700;
	background: linear-gradient(135deg, var(--accent-cyan), var(--accent-orange));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	cursor: pointer;
	transition: transform 0.3s ease;
}

.logo:hover {
	transform: scale(1.05) rotate(-2deg);
}

/* Hero Section */
.hero {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 4rem 2rem;
	text-align: center;
}

.hero-content {
	max-width: 900px;
}

.hero-greeting {
	font-size: 1.5rem;
	color: var(--text-secondary);
	margin-bottom: 1rem;
	opacity: 0;
	animation: fadeInUp 0.8s ease forwards;
}

.hero-title {
	font-size: clamp(3rem, 10vw, 6rem);
	font-weight: 700;
	line-height: 1.1;
	margin-bottom: 1.5rem;
	opacity: 0;
	animation: fadeInUp 0.8s ease 0.2s forwards;
}

.gradient-text {
	background: linear-gradient(135deg, var(--accent-cyan), var(--accent-orange), var(--accent-lime));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	background-size: 200% 200%;
	animation: gradient 5s ease infinite;
}

@keyframes gradient {
	0%, 100% { background-position: 0% 50%; }
	50% { background-position: 100% 50%; }
}

.hero-subtitle {
	font-size: 1.5rem;
	color: var(--text-secondary);
	margin-bottom: 3rem;
	opacity: 0;
	animation: fadeInUp 0.8s ease 0.4s forwards;
}

.cta-buttons {
	display: flex;
	gap: 1.5rem;
	justify-content: center;
	flex-wrap: wrap;
	opacity: 0;
	animation: fadeInUp 0.8s ease 0.6s forwards;
}

.btn {
	padding: 1rem 2.5rem;
	border-radius: 50px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
	cursor: pointer;
	border: none;
	font-size: 1rem;
}

.btn-primary {
	background: linear-gradient(135deg, var(--accent-cyan), var(--accent-orange));
	color: white;
}

.btn-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 30px rgba(34, 211, 238, 0.5);
}

.btn-secondary {
	background: transparent;
	border: 2px solid var(--accent-cyan);
	color: var(--accent-cyan);
}

.btn-secondary:hover {
	background: var(--accent-cyan);
	color: white;
	transform: translateY(-3px);
}

/* Section Styles */
.section {
	padding: 6rem 2rem;
	max-width: 1200px;
	margin: 0 auto;
}

.section-title {
	font-size: clamp(2.5rem, 6vw, 4rem);
	margin-bottom: 1rem;
	text-align: center;
}

.section-subtitle {
	text-align: center;
	color: var(--text-secondary);
	font-size: 1.125rem;
	margin-bottom: 4rem;
}

/* About Section */
.about-grid {
	max-width: 800px;
	margin: 0 auto;
}

.about-text {
	font-size: 1.125rem;
	line-height: 1.8;
	color: var(--text-secondary);
}

.about-text p {
	margin-bottom: 1.5rem;
}

.about-highlight {
	color: var(--text-primary);
	font-weight: 600;
}

/* Skills Section */
.skills-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.skill-card {
	background: var(--bg-card);
	padding: 2rem;
	border-radius: 20px;
	border: 1px solid rgba(255, 255, 255, 0.05);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
	transition: all 0.3s ease;
	cursor: pointer;
}

.skill-card:hover {
	transform: translateY(-10px) scale(1.05);
	border-color: var(--accent-cyan);
	box-shadow: 0 15px 50px rgba(34, 211, 238, 0.4);
}

.skill-icon {
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 12px;
	background: linear-gradient(135deg, rgba(34, 211, 238, 0.1), rgba(251, 146, 60, 0.1));
}

.skill-icon img {
	width: 40px;
	height: 40px;
	object-fit: contain;
}

.skill-name {
	font-weight: 600;
	font-size: 1rem;
	text-align: center;
}

/* Contact Section */
.contact-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.contact-card {
	background: var(--bg-card);
	padding: 2.5rem 2rem;
	border-radius: 20px;
	border: 1px solid rgba(255, 255, 255, 0.05);
	text-align: center;
	text-decoration: none;
	color: inherit;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.contact-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, var(--accent-cyan), var(--accent-orange));
	opacity: 0;
	transition: opacity 0.3s ease;
}

.contact-card:hover::before {
	opacity: 1;
}

.contact-card:hover {
	transform: translateY(-10px);
	border-color: transparent;
}

.contact-icon {
	font-size: 3rem;
	margin-bottom: 1rem;
	position: relative;
	z-index: 1;
}

.contact-label {
	font-weight: 600;
	font-size: 1.125rem;
	position: relative;
	z-index: 1;
}

.contact-value {
	color: var(--text-secondary);
	font-size: 0.875rem;
	margin-top: 0.5rem;
	position: relative;
	z-index: 1;
}

.contact-card:hover .contact-value {
	color: white;
}

/* Footer */
footer {
	padding: 3rem 2rem;
	text-align: center;
	border-top: 1px solid rgba(255, 255, 255, 0.05);
	color: var(--text-secondary);
}

/* Animations */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.fade-in {
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.8s ease;
}

.fade-in.visible {
	opacity: 1;
	transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
	.logo-container {
		top: 1.5rem;
		left: 1.5rem;
	}

	.about-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

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