body {
	/* Add a subtle gradient overlay with theme colors */
	background: radial-gradient(ellipse at top, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
		radial-gradient(ellipse at bottom, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
		var(--background-dark);
	position: relative;
	overflow-x: hidden;
}

/* Enhanced animated background with more visible particles */
body::before {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image:
		radial-gradient(circle at 20% 30%, rgba(99, 102, 241, 0.2) 0%, transparent 40%),
		radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.2) 0%, transparent 40%),
		radial-gradient(circle at 40% 80%, rgba(6, 182, 212, 0.15) 0%, transparent 40%),
		radial-gradient(circle at 60% 20%, rgba(99, 102, 241, 0.15) 0%, transparent 35%),
		radial-gradient(circle at 90% 40%, rgba(139, 92, 246, 0.12) 0%, transparent 35%);
	animation: particleFloat 20s ease-in-out infinite;
	pointer-events: none;
	z-index: 0;
}

body::after {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image:
		radial-gradient(circle at 70% 50%, rgba(99, 102, 241, 0.08) 0%, transparent 30%),
		radial-gradient(circle at 30% 60%, rgba(6, 182, 212, 0.08) 0%, transparent 30%);
	animation: particleFloat 15s ease-in-out infinite reverse;
	pointer-events: none;
	z-index: 0;
}

@keyframes particleFloat {

	0%,
	100% {
		transform: translate(0, 0) scale(1.3);
		opacity: 1;
	}

	33% {
		transform: translate(30px, -30px) scale(1.4);
		opacity: 0.8;
	}

	66% {
		transform: translate(-20px, 20px) scale(1.2);
		opacity: 0.9;
	}
}

.home-content {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 4rem 2rem;
	margin-top: 0;
	text-align: center;
	position: relative;
	z-index: 1;
}

.home-content h2 {
	font-size: 3rem;
	font-weight: 700;
	margin: 0 0 1rem 0;
	background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--accent-color));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	animation: fadeInUp 0.6s ease-out;
}

.home-content h3 {
	font-size: 1.25rem;
	font-weight: 400;
	color: var(--text-secondary);
	margin: 0 0 3rem 0;
	animation: fadeInUp 0.6s ease-out 0.1s backwards;
}

.home-content h3 a {
	color: var(--primary-color);
	text-decoration: none;
	font-weight: 600;
	transition: color 0.3s ease;
	position: relative;
}

.home-content h3 a::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 100%;
	height: 2px;
	background: var(--primary-color);
	transform: scaleX(0);
	transition: transform 0.3s ease;
}

.home-content h3 a:hover {
	color: var(--primary-hover);
}

.home-content h3 a:hover::after {
	transform: scaleX(1);
}

.home-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	max-width: 800px;
	width: 100%;
	margin-top: 0;
	justify-content: center;
}

.button {
	box-sizing: border-box;
	width: calc(33.333% - 0.75rem);
	min-width: 200px;
	height: auto;
	min-height: 120px;
	margin: 0;
	padding: 1.5rem 1rem;
	text-align: center;
	line-height: 1.5;
	background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(168, 85, 247, 0.1));
	backdrop-filter: blur(10px);
	border: 1px solid rgba(99, 102, 241, 0.3);
	border-radius: 12px;
	color: var(--text-primary);
	text-decoration: none;
	font-size: 1rem;
	font-weight: 600;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
	animation: fadeInUp 0.6s ease-out backwards;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
	box-shadow: 0 4px 6px -1px rgba(99, 102, 241, 0.1), 0 2px 4px -1px rgba(99, 102, 241, 0.06);
}

/* Remove grid positioning */
.button:nth-child(4),
.button:nth-child(5) {
	grid-column: auto;
}

.button svg {
	width: 48px;
	height: 48px;
	transition: transform 0.3s ease;
}

.button:nth-child(1) {
	animation-delay: 0.2s;
}

.button:nth-child(2) {
	animation-delay: 0.25s;
}

.button:nth-child(3) {
	animation-delay: 0.3s;
}

.button:nth-child(4) {
	animation-delay: 0.35s;
}

.button:nth-child(5) {
	animation-delay: 0.4s;
}

.button::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: var(--gradient-primary);
	transform: scaleX(0);
	transition: transform 0.3s ease;
}

.button:hover {
	transform: translateY(-4px) scale(1.02);
	box-shadow: 0 20px 25px -5px rgba(99, 102, 241, 0.3), 0 10px 10px -5px rgba(99, 102, 241, 0.2);
	border-color: var(--primary-color);
	background: var(--background-hover);
}

.button:hover::before {
	transform: scaleX(1);
}

.button:active {
	transform: translateY(-2px) scale(1.01);
}

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

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

@media (max-width: 768px) {
	.home-content h2 {
		font-size: 2rem;
	}

	.home-content h3 {
		font-size: 1rem;
	}

	.button {
		width: calc(50% - 0.5rem);
		min-width: 150px;
	}
}

@media (max-width: 480px) {
	.button {
		width: 100%;
		max-width: 400px;
	}
}