/* ================================
   Luxury Portfolio Design
   ================================ */

/* Reset & Base */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	/* Hacker/Cyberpunk Color Palette */
	--primary: #00ff41;
	--primary-dark: #00cc33;
	--primary-light: #39ff70;
	--accent: #00ffff;
	--accent-secondary: #ff00ff;
	--accent-gold: #ffff00;
	--success: #00ff41;

	--bg-primary: #000000;
	--bg-secondary: #0a0a0a;
	--bg-tertiary: #0f0f0f;
	--bg-card: rgba(0, 0, 0, 0.85);

	--text-primary: #00ff41;
	--text-secondary: #00ff88;
	--text-muted: #00cc66;
	--text-dim: #006633;

	/* Typography */
	--font-display: 'Courier New', 'Courier', monospace;
	--font-main: 'Consolas', 'Monaco', 'Courier New', monospace;

	/* Spacing */
	--spacing-xs: 0.5rem;
	--spacing-sm: 1rem;
	--spacing-md: 1.5rem;
	--spacing-lg: 2rem;
	--spacing-xl: 3rem;
	--spacing-2xl: 4rem;
	--spacing-3xl: 6rem;

	/* Border Radius */
	--radius-sm: 0.5rem;
	--radius-md: 1rem;
	--radius-lg: 1.5rem;
	--radius-xl: 2rem;
	--radius-full: 9999px;

	/* Shadows */
	--shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.15);
	--shadow-md: 0 4px 16px rgba(0, 0, 0, 0.2);
	--shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.25);
	--shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.35);
	--shadow-glow: 0 0 60px rgba(102, 126, 234, 0.5);
	--shadow-glow-accent: 0 0 40px rgba(0, 212, 255, 0.4);
	--shadow-glow-gold: 0 0 30px rgba(255, 215, 0, 0.3);
}

html {
	scroll-behavior: smooth;
	font-size: 16px;
}

body {
	font-family: var(--font-main);
	background: var(--bg-primary);
	color: var(--text-primary);
	line-height: 1.6;
	overflow-x: hidden;
	position: relative;
}

body::before {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background:
		radial-gradient(ellipse at top left, rgba(0, 255, 65, 0.05) 0%, transparent 50%),
		radial-gradient(ellipse at top right, rgba(0, 255, 255, 0.05) 0%, transparent 50%),
		radial-gradient(ellipse at bottom, rgba(255, 0, 255, 0.05) 0%, transparent 50%);
	pointer-events: none;
	z-index: 0;
}

/* Particle Canvas */
#particles {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
	pointer-events: none;
	opacity: 0.6;
}

/* Animated Background */
.bg-animation {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	z-index: 0;
	pointer-events: none;
}

.shape {
	position: absolute;
	border-radius: 50%;
	filter: blur(100px);
	opacity: 0.2;
	animation: float 25s infinite ease-in-out;
	will-change: transform;
}

.shape-1 {
	width: 800px;
	height: 800px;
	background: radial-gradient(circle, #00ff41, transparent);
	top: -300px;
	left: -300px;
	animation-delay: 0s;
	filter: blur(150px);
	opacity: 0.15;
}

.shape-2 {
	width: 1000px;
	height: 1000px;
	background: radial-gradient(circle, #00ffff, transparent);
	bottom: -400px;
	right: -400px;
	animation-delay: 7s;
	filter: blur(150px);
	opacity: 0.15;
}

.shape-3 {
	width: 700px;
	height: 700px;
	background: radial-gradient(circle, #ff00ff, transparent);
	top: 50%;
	left: 60%;
	animation-delay: 14s;
	filter: blur(150px);
	opacity: 0.1;
}

.shape-4 {
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, #ffff00, transparent);
	bottom: 20%;
	left: 10%;
	animation-delay: 21s;
	filter: blur(150px);
	opacity: 0.08;
}

@keyframes float {
	0%, 100% {
		transform: translate(0, 0) scale(1) rotate(0deg);
	}
	25% {
		transform: translate(100px, -100px) scale(1.1) rotate(90deg);
	}
	50% {
		transform: translate(-50px, 100px) scale(0.9) rotate(180deg);
	}
	75% {
		transform: translate(150px, 50px) scale(1.05) rotate(270deg);
	}
}

/* Grid Overlay - Cyberpunk Grid */
.grid-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image:
		linear-gradient(rgba(0, 255, 65, 0.1) 1px, transparent 1px),
		linear-gradient(90deg, rgba(0, 255, 65, 0.1) 1px, transparent 1px);
	background-size: 40px 40px;
	z-index: 0;
	pointer-events: none;
	animation: gridMove 30s linear infinite;
}

/* Scanline Effect */
.grid-overlay::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: repeating-linear-gradient(
		0deg,
		rgba(0, 255, 65, 0.03) 0px,
		transparent 1px,
		transparent 2px,
		rgba(0, 255, 65, 0.03) 3px
	);
	animation: scanline 10s linear infinite;
	pointer-events: none;
}

@keyframes scanline {
	0% {
		transform: translateY(0);
	}
	100% {
		transform: translateY(100px);
	}
}

@keyframes gridMove {
	0% {
		transform: translate(0, 0);
	}
	100% {
		transform: translate(50px, 50px);
	}
}

/* Container */
.container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 var(--spacing-lg);
	position: relative;
	z-index: 1;
}

/* Hero Section */
.hero {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: var(--spacing-3xl) 0;
	position: relative;
}

.hero-content {
	text-align: center;
	max-width: 900px;
	margin: 0 auto;
	animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.profile-section {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: var(--spacing-md);
	margin-bottom: var(--spacing-xl);
}

.profile-image-wrapper {
	position: relative;
	width: 240px;
	height: 240px;
	filter: drop-shadow(0 20px 40px rgba(102, 126, 234, 0.4));
}

.profile-ring,
.profile-ring-2 {
	position: absolute;
	inset: -25px;
	border-radius: 50%;
	background: conic-gradient(
		from 0deg,
		#00ff41,
		#00ffff,
		#ff00ff,
		#ffff00,
		#00ff41
	);
	animation: rotate 10s linear infinite;
	filter: blur(2px);
	box-shadow: 0 0 30px rgba(0, 255, 65, 0.5);
}

.profile-ring-2 {
	inset: -35px;
	opacity: 0.6;
	animation-direction: reverse;
	animation-duration: 15s;
	filter: blur(4px);
	box-shadow: 0 0 50px rgba(0, 255, 255, 0.3);
}

.profile-ring::before,
.profile-ring-2::before {
	content: '';
	position: absolute;
	inset: 4px;
	background: var(--bg-primary);
	border-radius: 50%;
	z-index: -1;
}

.profile-image {
	position: relative;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	object-fit: cover;
	border: 8px solid var(--bg-primary);
	box-shadow: var(--shadow-xl), inset 0 0 20px rgba(0, 0, 0, 0.3);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	z-index: 2;
}

.profile-image:hover {
	transform: scale(1.05);
	box-shadow: var(--shadow-xl), var(--shadow-glow), inset 0 0 20px rgba(0, 0, 0, 0.3);
}

.status-badge {
	display: inline-flex;
	align-items: center;
	gap: var(--spacing-xs);
	padding: var(--spacing-xs) var(--spacing-md);
	background: rgba(0, 0, 0, 0.8);
	border: 1px solid var(--primary);
	border-radius: var(--radius-full);
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--primary);
	backdrop-filter: blur(20px);
	box-shadow: 0 0 20px rgba(0, 255, 65, 0.3), inset 0 0 10px rgba(0, 255, 65, 0.1);
	animation: float-badge 3s ease-in-out infinite;
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

@keyframes float-badge {
	0%, 100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-5px);
	}
}

.status-dot {
	width: 10px;
	height: 10px;
	background: var(--success);
	border-radius: 50%;
	animation: pulse 2s ease-in-out infinite;
	box-shadow: 0 0 10px var(--success);
}

.name {
	font-family: var(--font-display);
	font-size: clamp(2.5rem, 8vw, 5.5rem);
	font-weight: 900;
	line-height: 1.1;
	margin-bottom: var(--spacing-md);
	color: var(--primary);
	letter-spacing: 0.05em;
	text-shadow:
		0 0 10px rgba(0, 255, 65, 0.8),
		0 0 20px rgba(0, 255, 65, 0.6),
		0 0 30px rgba(0, 255, 65, 0.4),
		0 0 40px rgba(0, 255, 65, 0.2);
	animation: glitch 5s infinite, textFlicker 0.15s infinite alternate;
}

@keyframes glitch {
	0%, 90%, 100% {
		transform: translate(0);
	}
	92% {
		transform: translate(-2px, 2px);
	}
	94% {
		transform: translate(2px, -2px);
	}
	96% {
		transform: translate(-2px, -2px);
	}
	98% {
		transform: translate(2px, 2px);
	}
}

@keyframes textFlicker {
	0% {
		opacity: 0.98;
	}
	100% {
		opacity: 1;
	}
}

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

.title-wrapper {
	margin-bottom: var(--spacing-lg);
}

.tagline {
	font-size: clamp(1rem, 3vw, 1.5rem);
	color: var(--text-secondary);
	font-weight: 500;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: var(--spacing-sm);
}

.role {
	position: relative;
	padding: 0.25rem 0;
	transition: all 0.3s ease;
}

.role:hover {
	color: var(--primary-light);
	transform: translateY(-2px);
}

.separator {
	color: var(--primary);
	font-weight: 700;
	opacity: 0.5;
}

.bio {
	font-size: clamp(1rem, 2vw, 1.3rem);
	color: var(--text-muted);
	line-height: 1.9;
	max-width: 700px;
	margin: 0 auto var(--spacing-xl);
	font-weight: 300;
	letter-spacing: 0.01em;
}

.cta-buttons {
	display: flex;
	gap: var(--spacing-md);
	justify-content: center;
	flex-wrap: wrap;
	margin-top: var(--spacing-xl);
}

.btn {
	display: inline-flex;
	align-items: center;
	gap: var(--spacing-sm);
	padding: 1.125rem 2.5rem;
	border-radius: var(--radius-full);
	font-weight: 600;
	font-size: 1rem;
	text-decoration: none;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	cursor: pointer;
	position: relative;
	overflow: hidden;
	transform-style: preserve-3d;
}

.btn::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.2);
	transform: translate(-50%, -50%);
	transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
	width: 400px;
	height: 400px;
}

.btn-primary {
	background: #000000;
	background-size: 200% 200%;
	color: var(--primary);
	border: 2px solid var(--primary);
	box-shadow:
		0 0 10px rgba(0, 255, 65, 0.5),
		0 0 20px rgba(0, 255, 65, 0.3),
		inset 0 0 10px rgba(0, 255, 65, 0.1);
	animation: borderPulse 2s ease infinite;
}

@keyframes borderPulse {
	0%, 100% {
		border-color: var(--primary);
		box-shadow:
			0 0 10px rgba(0, 255, 65, 0.5),
			0 0 20px rgba(0, 255, 65, 0.3),
			inset 0 0 10px rgba(0, 255, 65, 0.1);
	}
	50% {
		border-color: var(--accent);
		box-shadow:
			0 0 20px rgba(0, 255, 255, 0.7),
			0 0 40px rgba(0, 255, 255, 0.5),
			inset 0 0 15px rgba(0, 255, 255, 0.2);
	}
}

.btn-primary:hover {
	background: rgba(0, 255, 65, 0.1);
	box-shadow:
		0 0 20px rgba(0, 255, 65, 0.8),
		0 0 40px rgba(0, 255, 65, 0.6),
		inset 0 0 20px rgba(0, 255, 65, 0.2);
	transform: translateY(-3px) scale(1.02);
}

.btn-secondary {
	background: #000000;
	color: var(--accent);
	border: 2px solid var(--accent);
	backdrop-filter: blur(20px);
	box-shadow:
		0 0 10px rgba(0, 255, 255, 0.4),
		inset 0 0 10px rgba(0, 255, 255, 0.1);
}

.btn-secondary:hover {
	border-color: var(--accent);
	background: rgba(0, 255, 255, 0.1);
	transform: translateY(-3px) scale(1.02);
	box-shadow:
		0 0 20px rgba(0, 255, 255, 0.6),
		0 0 40px rgba(0, 255, 255, 0.4),
		inset 0 0 15px rgba(0, 255, 255, 0.2);
}

.btn i {
	transition: transform 0.3s ease;
	position: relative;
	z-index: 1;
}

.btn:hover i {
	transform: translateX(6px);
}

.btn span {
	position: relative;
	z-index: 1;
}

/* Section Styles */
section {
	padding: var(--spacing-3xl) 0;
	position: relative;
}

.section-header {
	text-align: center;
	margin-bottom: var(--spacing-2xl);
}

.section-label {
	display: inline-block;
	padding: 0.625rem 1.75rem;
	background: rgba(0, 0, 0, 0.9);
	border: 1px solid var(--accent);
	border-radius: var(--radius-full);
	font-size: 0.8125rem;
	font-weight: 700;
	color: var(--accent);
	text-transform: uppercase;
	letter-spacing: 0.2em;
	margin-bottom: var(--spacing-md);
	backdrop-filter: blur(20px);
	box-shadow: 0 0 15px rgba(0, 255, 255, 0.4), inset 0 0 10px rgba(0, 255, 255, 0.1);
	animation: float-label 4s ease-in-out infinite;
}

@keyframes float-label {
	0%, 100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-3px);
	}
}

.section-title {
	font-family: var(--font-display);
	font-size: clamp(2rem, 5vw, 3.75rem);
	font-weight: 900;
	line-height: 1.2;
	color: var(--primary);
	letter-spacing: 0.05em;
	text-shadow: 0 0 20px rgba(0, 255, 65, 0.6), 0 0 30px rgba(0, 255, 65, 0.4);
}

/* Expertise Section */
.expertise-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: var(--spacing-lg);
	max-width: 1200px;
	margin: 0 auto;
}

.expertise-card {
	background: rgba(0, 0, 0, 0.9);
	border: 1px solid var(--primary);
	border-radius: var(--radius-xl);
	padding: var(--spacing-xl);
	text-align: center;
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	backdrop-filter: blur(20px);
	opacity: 0;
	transform: translateY(40px);
	position: relative;
	overflow: hidden;
	box-shadow: 0 0 15px rgba(0, 255, 65, 0.2), inset 0 0 20px rgba(0, 255, 65, 0.05);
}

.expertise-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: linear-gradient(90deg, #00ff41, #00ffff, #ff00ff, #ffff00, #00ff41);
	transform: translateX(-100%);
	transition: transform 0.6s ease;
	box-shadow: 0 0 10px currentColor;
}

.expertise-card:hover::before {
	transform: translateX(0);
}

.expertise-card.animate-in {
	opacity: 1;
	transform: translateY(0);
}

.expertise-card:hover {
	border-color: var(--accent);
	box-shadow: 0 0 30px rgba(0, 255, 255, 0.5), inset 0 0 30px rgba(0, 255, 255, 0.1);
	transform: translateY(-12px) scale(1.02);
}

.expertise-icon {
	width: 90px;
	height: 90px;
	margin: 0 auto var(--spacing-lg);
	display: flex;
	align-items: center;
	justify-content: center;
	background: #000000;
	border: 2px solid var(--primary);
	border-radius: var(--radius-lg);
	font-size: 2.25rem;
	color: var(--primary);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 0 20px rgba(0, 255, 65, 0.4), inset 0 0 15px rgba(0, 255, 65, 0.1);
	position: relative;
}

.expertise-icon::after {
	content: '';
	position: absolute;
	inset: -5px;
	background: linear-gradient(135deg, #00ff41, #00ffff, #ff00ff);
	border-radius: var(--radius-lg);
	opacity: 0;
	z-index: -1;
	transition: opacity 0.3s ease;
	filter: blur(15px);
}

.expertise-card:hover .expertise-icon {
	transform: scale(1.15) rotate(8deg);
	color: var(--accent);
	border-color: var(--accent);
	box-shadow: 0 0 30px rgba(0, 255, 255, 0.6), inset 0 0 20px rgba(0, 255, 255, 0.2);
}

.expertise-card:hover .expertise-icon::after {
	opacity: 1;
}

.expertise-card h3 {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: var(--spacing-sm);
	color: var(--text-primary);
	letter-spacing: -0.01em;
}

.expertise-card p {
	color: var(--text-muted);
	line-height: 1.8;
	font-weight: 300;
}

/* Social & Work Grids */
.social-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: var(--spacing-md);
	max-width: 1200px;
	margin: 0 auto;
}

.work-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: var(--spacing-lg);
	max-width: 1200px;
	margin: 0 auto;
}

/* Card Styles */
.social-card {
	display: flex;
	align-items: center;
	gap: var(--spacing-md);
	padding: var(--spacing-lg);
	background: rgba(0, 0, 0, 0.9);
	border: 1px solid var(--primary);
	border-radius: var(--radius-lg);
	text-decoration: none;
	color: var(--primary);
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
	backdrop-filter: blur(20px);
	opacity: 0;
	transform: translateY(20px);
	box-shadow: 0 0 15px rgba(0, 255, 65, 0.2), inset 0 0 15px rgba(0, 255, 65, 0.05);
}

.social-card.animate-in {
	opacity: 1;
	transform: translateY(0);
}

.social-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(circle at center, rgba(0, 255, 65, 0.1), transparent);
	opacity: 0;
	transition: opacity 0.4s ease;
}

.social-card:hover {
	border-color: var(--accent);
	box-shadow: 0 0 25px rgba(0, 255, 255, 0.5), inset 0 0 25px rgba(0, 255, 255, 0.1);
}

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

.card-icon {
	flex-shrink: 0;
	width: 64px;
	height: 64px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #000000;
	border: 2px solid var(--primary);
	border-radius: var(--radius-md);
	font-size: 1.875rem;
	color: var(--primary);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	z-index: 1;
	box-shadow: 0 0 15px rgba(0, 255, 65, 0.4), inset 0 0 10px rgba(0, 255, 65, 0.1);
}

.social-card:hover .card-icon {
	transform: scale(1.15) rotate(-5deg);
	border-color: var(--accent);
	color: var(--accent);
	box-shadow: 0 0 25px rgba(0, 255, 255, 0.6), inset 0 0 15px rgba(0, 255, 255, 0.2);
}

.card-content {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
	position: relative;
	z-index: 1;
}

.social-name {
	font-size: 1.125rem;
	font-weight: 700;
	color: var(--text-primary);
	letter-spacing: -0.01em;
}

.social-desc {
	font-size: 0.875rem;
	color: var(--text-muted);
	font-weight: 300;
}

.card-arrow {
	flex-shrink: 0;
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(102, 126, 234, 0.15);
	border-radius: 50%;
	color: var(--primary-light);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	z-index: 1;
}

.social-card:hover .card-arrow {
	background: var(--primary);
	color: var(--text-primary);
	transform: translateX(6px) scale(1.1);
}

/* Platform-specific hover effects - Hacker Style */
.linkedin:hover { border-color: #00ff41; box-shadow: 0 0 30px rgba(0, 255, 65, 0.5); }
.linkedin:hover .card-icon { background: rgba(0, 255, 65, 0.1); border-color: #00ff41; color: #00ff41; }

.twitter:hover { border-color: #00ffff; box-shadow: 0 0 30px rgba(0, 255, 255, 0.5); }
.twitter:hover .card-icon { background: rgba(0, 255, 255, 0.1); border-color: #00ffff; color: #00ffff; }

.facebook:hover { border-color: #ff00ff; box-shadow: 0 0 30px rgba(255, 0, 255, 0.5); }
.facebook:hover .card-icon { background: rgba(255, 0, 255, 0.1); border-color: #ff00ff; color: #ff00ff; }

.youtube:hover { border-color: #ff0000; box-shadow: 0 0 30px rgba(255, 0, 0, 0.5); }
.youtube:hover .card-icon { background: rgba(255, 0, 0, 0.1); border-color: #ff0000; color: #ff0000; }

.flickr:hover { border-color: #ffff00; box-shadow: 0 0 30px rgba(255, 255, 0, 0.5); }
.flickr:hover .card-icon { background: rgba(255, 255, 0, 0.1); border-color: #ffff00; color: #ffff00; }

.weheartit:hover { border-color: #ff00ff; box-shadow: 0 0 30px rgba(255, 0, 255, 0.5); }
.weheartit:hover .card-icon { background: rgba(255, 0, 255, 0.1); border-color: #ff00ff; color: #ff00ff; }

/* Work Cards */
.work-card {
	background: rgba(0, 0, 0, 0.9);
	border: 1px solid var(--primary);
	border-radius: var(--radius-xl);
	padding: var(--spacing-xl);
	text-decoration: none;
	color: var(--primary);
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
	backdrop-filter: blur(20px);
	opacity: 0;
	transform: translateY(40px);
	box-shadow: 0 0 20px rgba(0, 255, 65, 0.2), inset 0 0 20px rgba(0, 255, 65, 0.05);
}

.work-card.animate-in {
	opacity: 1;
	transform: translateY(0);
}

.work-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(circle at center, rgba(0, 255, 65, 0.1), transparent);
	opacity: 0;
	transition: opacity 0.4s ease;
}

.work-card:hover {
	border-color: var(--accent);
	box-shadow: 0 0 30px rgba(0, 255, 255, 0.5), inset 0 0 30px rgba(0, 255, 255, 0.1);
}

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

.work-card-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: var(--spacing-lg);
	position: relative;
	z-index: 1;
}

.work-icon {
	width: 75px;
	height: 75px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #000000;
	border: 2px solid var(--primary);
	border-radius: var(--radius-lg);
	font-size: 2.125rem;
	color: var(--primary);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 0 20px rgba(0, 255, 65, 0.4), inset 0 0 15px rgba(0, 255, 65, 0.1);
}

.work-card:hover .work-icon {
	transform: scale(1.15) rotate(-8deg);
	border-color: var(--accent);
	color: var(--accent);
	box-shadow: 0 0 30px rgba(0, 255, 255, 0.6), inset 0 0 20px rgba(0, 255, 255, 0.2);
}

.work-badge {
	padding: 0.5rem 1.125rem;
	background: #000000;
	border: 1px solid #ff00ff;
	border-radius: var(--radius-full);
	font-size: 0.75rem;
	font-weight: 800;
	color: #ff00ff;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	box-shadow: 0 0 15px rgba(255, 0, 255, 0.5), inset 0 0 10px rgba(255, 0, 255, 0.1);
	animation: pulse-badge 3s ease-in-out infinite;
}

@keyframes pulse-badge {
	0%, 100% {
		box-shadow: 0 0 15px rgba(255, 0, 255, 0.5), inset 0 0 10px rgba(255, 0, 255, 0.1);
	}
	50% {
		box-shadow: 0 0 25px rgba(255, 0, 255, 0.8), inset 0 0 15px rgba(255, 0, 255, 0.2);
	}
}

.work-card h3 {
	font-size: 1.875rem;
	font-weight: 700;
	margin-bottom: var(--spacing-sm);
	color: var(--text-primary);
	position: relative;
	z-index: 1;
	letter-spacing: -0.02em;
}

.work-desc {
	color: var(--text-muted);
	line-height: 1.8;
	margin-bottom: var(--spacing-lg);
	position: relative;
	z-index: 1;
	font-weight: 300;
}

.work-stats {
	display: flex;
	gap: var(--spacing-lg);
	margin-top: var(--spacing-lg);
	position: relative;
	z-index: 1;
}

.stat {
	display: flex;
	align-items: center;
	gap: var(--spacing-xs);
	color: var(--text-secondary);
	font-size: 0.875rem;
	font-weight: 700;
	padding: 0.5rem 1rem;
	background: rgba(102, 126, 234, 0.1);
	border-radius: var(--radius-full);
	border: 1px solid rgba(102, 126, 234, 0.2);
}

.stat i {
	color: var(--success);
}

.work-link {
	display: inline-flex;
	align-items: center;
	gap: var(--spacing-xs);
	margin-top: var(--spacing-lg);
	color: var(--primary-light);
	font-weight: 700;
	position: relative;
	z-index: 1;
	transition: all 0.3s ease;
}

.work-card:hover .work-link {
	gap: var(--spacing-sm);
	color: var(--accent);
}

.work-card.featured {
	grid-column: span 1;
	border: 2px solid #ffff00;
}

.work-card.featured:hover {
	box-shadow: 0 0 40px rgba(255, 255, 0, 0.6), inset 0 0 30px rgba(255, 255, 0, 0.1);
}

.android:hover { border-color: #00ff41; box-shadow: 0 0 30px rgba(0, 255, 65, 0.6); }
.android:hover .work-icon { background: rgba(0, 255, 65, 0.1); border-color: #00ff41; color: #00ff41; }

.upwork:hover { border-color: #00ffff; box-shadow: 0 0 30px rgba(0, 255, 255, 0.6); }
.upwork:hover .work-icon { background: rgba(0, 255, 255, 0.1); border-color: #00ffff; color: #00ffff; }

.email:hover { border-color: #ff00ff; box-shadow: 0 0 30px rgba(255, 0, 255, 0.6); }
.email:hover .work-icon { background: rgba(255, 0, 255, 0.1); border-color: #ff00ff; color: #ff00ff; }

/* Footer */
.footer {
	padding: var(--spacing-2xl) 0;
	border-top: 1px solid var(--primary);
	margin-top: var(--spacing-3xl);
	position: relative;
}

.footer::before {
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 50%;
	height: 2px;
	background: linear-gradient(90deg, transparent, #00ff41, #00ffff, #00ff41, transparent);
	box-shadow: 0 0 10px rgba(0, 255, 65, 0.5);
}

.footer-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: var(--spacing-lg);
	margin-bottom: var(--spacing-lg);
}

.footer-brand h3 {
	font-family: var(--font-display);
	font-size: 1.625rem;
	font-weight: 700;
	margin-bottom: var(--spacing-xs);
	color: var(--primary);
	letter-spacing: 0.05em;
	text-shadow: 0 0 15px rgba(0, 255, 65, 0.5);
}

.footer-brand p {
	color: var(--text-muted);
	font-size: 0.95rem;
	font-weight: 300;
}

.footer-links a {
	color: var(--accent);
	text-decoration: none;
	transition: all 0.3s ease;
	font-weight: 500;
	border: 1px solid var(--accent);
	padding: 0.5rem 1rem;
	border-radius: var(--radius-full);
	box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.footer-links a:hover {
	color: var(--primary);
	border-color: var(--primary);
	background: rgba(0, 255, 65, 0.1);
	text-shadow: 0 0 15px rgba(0, 255, 65, 0.6);
	box-shadow: 0 0 20px rgba(0, 255, 65, 0.5);
}

.footer-bottom {
	text-align: center;
	padding-top: var(--spacing-lg);
	border-top: 1px solid rgba(0, 255, 65, 0.2);
	color: var(--text-dim);
	font-size: 0.875rem;
	font-weight: 300;
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

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

@keyframes pulse {
	0%, 100% {
		opacity: 1;
		transform: scale(1);
	}
	50% {
		opacity: 0.6;
		transform: scale(1.3);
	}
}

@keyframes rotate {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
	:root {
		--spacing-3xl: 4rem;
	}

	.expertise-grid,
	.work-grid {
		grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	}
}

@media screen and (max-width: 768px) {
	:root {
		--spacing-xl: 2rem;
		--spacing-2xl: 3rem;
		--spacing-3xl: 3rem;
	}

	.hero {
		min-height: auto;
		padding: var(--spacing-2xl) 0;
	}

	.profile-image-wrapper {
		width: 200px;
		height: 200px;
	}

	.cta-buttons {
		flex-direction: column;
		width: 100%;
	}

	.btn {
		width: 100%;
		justify-content: center;
	}

	.expertise-grid {
		grid-template-columns: 1fr;
		gap: var(--spacing-md);
	}

	.social-grid {
		grid-template-columns: 1fr;
	}

	.work-grid {
		grid-template-columns: 1fr;
		gap: var(--spacing-md);
	}

	.footer-content {
		flex-direction: column;
		text-align: center;
	}

	.shape {
		filter: blur(60px);
	}
}

@media screen and (max-width: 480px) {
	.container {
		padding: 0 var(--spacing-md);
	}

	.profile-image-wrapper {
		width: 170px;
		height: 170px;
	}

	.tagline {
		flex-direction: column;
		gap: var(--spacing-xs);
	}

	.separator {
		display: none;
	}

	.social-card {
		flex-direction: column;
		text-align: center;
		padding: var(--spacing-md);
	}

	.card-arrow {
		display: none;
	}

	.work-card {
		padding: var(--spacing-lg);
	}

	#particles {
		opacity: 0.3;
	}
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
}

/* Scroll Animations */
@media screen and (min-width: 769px) {
	.expertise-card:nth-child(1) { transition-delay: 0.1s; }
	.expertise-card:nth-child(2) { transition-delay: 0.2s; }
	.expertise-card:nth-child(3) { transition-delay: 0.3s; }
	.expertise-card:nth-child(4) { transition-delay: 0.4s; }

	.social-card:nth-child(1) { transition-delay: 0.05s; }
	.social-card:nth-child(2) { transition-delay: 0.1s; }
	.social-card:nth-child(3) { transition-delay: 0.15s; }
	.social-card:nth-child(4) { transition-delay: 0.2s; }
	.social-card:nth-child(5) { transition-delay: 0.25s; }
	.social-card:nth-child(6) { transition-delay: 0.3s; }

	.work-card:nth-child(1) { transition-delay: 0.1s; }
	.work-card:nth-child(2) { transition-delay: 0.2s; }
	.work-card:nth-child(3) { transition-delay: 0.3s; }
}

/* Print Styles */
@media print {
	.bg-animation,
	.grid-overlay,
	#particles {
		display: none;
	}

	body {
		background: white;
		color: black;
	}
}
