body {
	background: #2f2f2f;
	color: #ffffff;
	font-family: 'Raleway', sans-serif;
}
.top-nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	background: rgba(47, 47, 47, 0.95);
	padding: 15px 0;
	z-index: 1000;
	border-bottom: 2px solid #ff6b6b;
	backdrop-filter: blur(10px);
}
.nav-links {
	text-align: center;
}
.nav-links a {
	color: white;
	text-decoration: none;
	margin: 0 20px;
	padding: 10px 20px;
	border-radius: 25px;
	transition: all 0.3s ease;
	display: inline-block;
}
.nav-links a:hover, .nav-links a.active {
	background: #ff6b6b;
	color: white;
	text-decoration: none;
	transform: translateY(-2px) scale(1.05);
	box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
}
.project-header {
	padding: 120px 0 60px 0;
	text-align: center;
}
.project-content {
	padding: 60px 0;
}
.back-btn {
	position: fixed;
	bottom: 30px;
	right: 30px;
	z-index: 1000;
	background: #ff6b6b;
	color: white;
	padding: 15px 25px;
	border-radius: 50px;
	text-decoration: none;
	font-weight: bold;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
	animation: float 3s ease-in-out infinite;
}
.back-btn:hover {
	background: #ff5252;
	color: white;
	text-decoration: none;
	transform: translateY(-2px) scale(1.05);
	box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
	animation: none;
}

/* 🎨 ENHANCED BLOG ANIMATIONS & EFFECTS 🎨 */

/* Scroll-triggered animations */
.scroll-reveal {
	opacity: 0;
	transform: translateY(60px);
	transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.scroll-reveal.revealed {
	opacity: 1;
	transform: translateY(0);
}

.scroll-reveal-left {
	opacity: 0;
	transform: translateX(-60px);
	transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.scroll-reveal-left.revealed {
	opacity: 1;
	transform: translateX(0);
}

.scroll-reveal-right {
	opacity: 0;
	transform: translateX(60px);
	transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.scroll-reveal-right.revealed {
	opacity: 1;
	transform: translateX(0);
}

/* Enhanced blog post cards with modern animations */
.blog-post {
	background: #3a3a3a;
	padding: 30px;
	border-radius: 15px;
	margin: 30px 0;
	transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	position: relative;
	overflow: hidden;
	border: 1px solid rgba(255, 107, 107, 0.1);
	cursor: pointer;
	opacity: 0;
	transform: translateY(30px) scale(0.95);
}
.blog-post.animate {
	opacity: 1;
	transform: translateY(0) scale(1);
}
.blog-post::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(255, 107, 107, 0.05), transparent);
	opacity: 0;
	transition: opacity 0.4s ease;
	z-index: 1;
}
.blog-post:hover {
	transform: translateY(-10px) scale(1.02);
	box-shadow: 0 20px 40px rgba(255, 107, 107, 0.2);
	border-color: rgba(255, 107, 107, 0.3);
}
.blog-post:hover::before {
	opacity: 1;
}
.blog-post * {
	position: relative;
	z-index: 2;
}

/* Enhanced blog date with typing effect */
.blog-date {
	color: #ff6b6b;
	font-size: 14px;
	margin-bottom: 10px;
	font-weight: 500;
	opacity: 0;
	transform: translateX(-20px);
	transition: all 0.5s ease;
}
.blog-date.animate {
	opacity: 1;
	transform: translateX(0);
}
.blog-date i {
	margin-right: 8px;
	transition: all 0.3s ease;
}
.blog-post:hover .blog-date i {
	transform: scale(1.2) rotate(10deg);
	color: #ff5252;
}

/* Enhanced blog title with gradient effect */
.blog-title {
	color: #ffffff;
	margin-bottom: 15px;
	font-size: 24px;
	transition: all 0.3s ease;
	background: linear-gradient(120deg, #ffffff 0%, #ff6b6b 100%);
	background-size: 200% 100%;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	opacity: 0;
	transform: translateY(20px);
}
.blog-title.animate {
	opacity: 1;
	transform: translateY(0);
}
.blog-post:hover .blog-title {
	background-position: 100% 0;
}

/* Enhanced blog excerpt with reading experience */
.blog-excerpt {
	color: #cccccc;
	line-height: 1.6;
	margin-bottom: 20px;
	opacity: 0;
	transform: translateY(15px);
	transition: all 0.6s ease;
}
.blog-excerpt.animate {
	opacity: 1;
	transform: translateY(0);
}
.blog-post:hover .blog-excerpt {
	color: #e0e0e0;
}

/* Enhanced read more button */
.read-more {
	color: #ff6b6b;
	text-decoration: none;
	font-weight: bold;
	transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	position: relative;
	display: inline-block;
	padding: 8px 16px;
	border-radius: 20px;
	border: 2px solid transparent;
	background: linear-gradient(135deg, transparent, transparent);
	opacity: 0;
	transform: translateY(10px);
}
.read-more.animate {
	opacity: 1;
	transform: translateY(0);
}
.read-more::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(255, 107, 107, 0.1), rgba(255, 82, 82, 0.1));
	border-radius: 20px;
	opacity: 0;
	transition: opacity 0.3s ease;
	z-index: -1;
}
.read-more:hover {
	color: #ff5252;
	text-decoration: none;
	transform: translateX(5px);
	border-color: rgba(255, 107, 107, 0.3);
}
.read-more:hover::before {
	opacity: 1;
}
.read-more i {
	transition: transform 0.3s ease;
}
.read-more:hover i {
	transform: translateX(5px);
}

/* Enhanced category tags with interactive effects */
.category-tag {
	display: inline-block;
	background: linear-gradient(135deg, #ff6b6b, #ff5252);
	color: white;
	padding: 6px 14px;
	margin: 5px 5px 5px 0;
	border-radius: 20px;
	font-size: 12px;
	font-weight: 500;
	transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	cursor: pointer;
	position: relative;
	overflow: hidden;
	opacity: 0;
	transform: scale(0.8) rotate(-5deg);
}
.category-tag.animate {
	opacity: 1;
	transform: scale(1) rotate(0deg);
}
.category-tag::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
	transition: left 0.6s;
}
.category-tag:hover {
	transform: translateY(-3px) scale(1.05) rotate(2deg);
	box-shadow: 0 8px 20px rgba(255, 107, 107, 0.4);
	background: linear-gradient(135deg, #ff5252, #ff3030);
}
.category-tag:hover::before {
	left: 100%;
}

/* Enhanced coming soon section */
.coming-soon {
	text-align: center;
	padding: 60px;
	background: linear-gradient(135deg, #3a3a3a, #2f2f2f);
	border-radius: 20px;
	margin: 50px 0;
	position: relative;
	overflow: hidden;
	border: 2px solid rgba(255, 107, 107, 0.2);
	opacity: 0;
	transform: scale(0.9);
	transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.coming-soon.animate {
	opacity: 1;
	transform: scale(1);
}
.coming-soon::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(circle at center, rgba(255, 107, 107, 0.1), transparent);
	opacity: 0;
	transition: opacity 0.5s ease;
}
.coming-soon:hover::before {
	opacity: 1;
}
.coming-soon h3 {
	margin-bottom: 20px;
	color: #ff6b6b;
	font-size: 28px;
	opacity: 0;
	transform: translateY(20px);
	animation: slideInFromBottom 0.8s ease forwards;
	animation-delay: 0.3s;
}
.coming-soon p {
	opacity: 0;
	transform: translateY(15px);
	animation: slideInFromBottom 0.8s ease forwards;
	animation-delay: 0.5s;
}

/* Sidebar enhancements */
.sidebar-section {
	background: #3a3a3a;
	padding: 25px;
	border-radius: 15px;
	margin: 30px 0;
	transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	position: relative;
	overflow: hidden;
	border: 1px solid rgba(255, 107, 107, 0.1);
	opacity: 0;
	transform: translateX(30px);
}
.sidebar-section.animate {
	opacity: 1;
	transform: translateX(0);
}
.sidebar-section:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 30px rgba(255, 107, 107, 0.15);
	border-color: rgba(255, 107, 107, 0.3);
}

/* Enhanced social media icons */
.social-links a {
	display: inline-block;
	margin-right: 15px;
	transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	opacity: 0;
	transform: translateY(20px) scale(0.8);
}
.social-links a.animate {
	opacity: 1;
	transform: translateY(0) scale(1);
}
.social-links a:hover {
	transform: translateY(-5px) scale(1.2) rotate(10deg);
	filter: brightness(1.2);
}

/* Header animations */
.project-header h1 {
	opacity: 0;
	transform: translateY(30px);
	animation: slideInFromTop 0.8s ease forwards;
	animation-delay: 0.2s;
}
.project-header h3 {
	opacity: 0;
	transform: translateY(30px);
	animation: slideInFromTop 0.8s ease forwards;
	animation-delay: 0.4s;
}
.project-header .lead {
	opacity: 0;
	transform: translateY(30px);
	animation: slideInFromTop 0.8s ease forwards;
	animation-delay: 0.6s;
}

@keyframes slideInFromTop {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes slideInFromBottom {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Floating animation for back button */
@keyframes float {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-5px); }
}

/* Blog content stagger animation */
.blog-content-stagger {
	opacity: 0;
	transform: translateY(40px);
	transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.blog-content-stagger.animate {
	opacity: 1;
	transform: translateY(0);
}

/* Reading progress indicator */
.reading-indicator {
	position: fixed;
	top: 0;
	left: 0;
	width: 0%;
	height: 3px;
	background: linear-gradient(90deg, #ff6b6b, #ff5252);
	z-index: 9999;
	transition: width 0.2s ease;
	box-shadow: 0 0 10px rgba(255, 107, 107, 0.5);
}

/* Category hover effects in sidebar */
.category-list .category-tag {
	margin: 3px;
	font-size: 11px;
	padding: 4px 10px;
}

/* Enhanced text effects */
.highlight-text {
	background: linear-gradient(120deg, transparent 0%, transparent 50%, #ff6b6b 50%);
	background-size: 240% 100%;
	background-repeat: no-repeat;
	transition: background-position 0.6s ease;
	cursor: pointer;
}
.highlight-text:hover {
	background-position: 100% 0;
	color: white;
}

/* Blog post loading skeleton effect */
.blog-post.loading {
	background: linear-gradient(90deg, #3a3a3a 25%, #4a4a4a 50%, #3a3a3a 75%);
	background-size: 200% 100%;
	animation: loading 1.5s infinite;
}

@keyframes loading {
	0% { background-position: 200% 0; }
	100% { background-position: -200% 0; }
}

/* Responsive enhancements */
@media (max-width: 768px) {
	.blog-post {
		padding: 20px;
		margin: 20px 0;
	}
	.coming-soon {
		padding: 40px 20px;
	}
	.sidebar-section {
		margin: 20px 0;
		padding: 20px;
	}
}