.about-main {
	flex: 1;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	width: 100%;
	padding: 2rem 0;
}

.about-card {
	background: var(--card-bg);
	border-radius: 1.5rem;
	padding: 2rem;
	max-width: 800px;
	width: 100%;
	box-shadow: 0 0 15px rgba(15, 240, 252, 0.2), 0 0 30px rgba(255, 44, 237, 0.1);
	backdrop-filter: blur(10px);
	border: 1px solid var(--glass-border);
	position: relative;
	overflow: hidden;
}

.about-card::before {
	content: "";
	position: absolute;
	top: -2px;
	left: -2px;
	right: -2px;
	bottom: -2px;
	border-radius: 1.5rem;
	background: linear-gradient(45deg, var(--neon-blue), var(--neon-pink));
	z-index: -1;
	opacity: 0.7;
	animation: neonPulse 6s ease infinite;
}

.about-header {
	text-align: center;
	margin-bottom: 3rem;
	padding-bottom: 2rem;
	border-bottom: 1px solid var(--glass-border);
}

.about-header h1 {
	font-family: "Orbitron", sans-serif;
	font-size: 2.5rem;
	color: var(--neon-blue);
	margin-bottom: 0.5rem;
	text-shadow: 0 0 10px rgba(15, 240, 252, 0.5);
}

.about-subtitle {
	font-size: 1.2rem;
	color: var(--text-secondary);
	font-style: italic;
}

.about-section {
	margin-bottom: 3rem;
	scroll-margin-top: 2rem;
}

.about-section:last-child {
	margin-bottom: 0;
}

.about-section h2 {
	font-family: "Orbitron", sans-serif;
	font-size: 1.5rem;
	color: var(--neon-blue);
	margin-bottom: 1rem;
	border-left: 3px solid var(--neon-pink);
	padding-left: 1rem;
}

.section-content {
	color: var(--text-secondary);
	line-height: 1.7;
}

.section-content p {
	margin-bottom: 1rem;
}

.section-content ul {
	margin: 1rem 0;
	padding-left: 1.5rem;
}

.section-content li {
	margin-bottom: 0.5rem;
	position: relative;
}

.section-content li::before {
	content: "▹";
	color: var(--neon-blue);
	position: absolute;
	left: -1.5rem;
}

.section-content blockquote {
	border-left: 3px solid var(--neon-pink);
	padding-left: 1.5rem;
	margin: 1.5rem 0;
	font-style: italic;
	color: var(--text-primary);
	background: rgba(255, 44, 237, 0.05);
	padding: 1.5rem;
	border-radius: 0 0.5rem 0.5rem 0;
}

/* Focus styles for accessibility */
.about-section:focus {
	outline: 2px solid var(--neon-blue);
	outline-offset: 0.5rem;
	border-radius: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
	.about-card {
		padding: 1.5rem;
		margin: 1rem;
	}

	.about-header h1 {
		font-size: 2rem;
	}

	.about-section h2 {
		font-size: 1.3rem;
	}
}

@media (max-width: 480px) {
	.about-card {
		padding: 1rem;
	}

	.about-header h1 {
		font-size: 1.5rem;
	}

	.about-section {
		margin-bottom: 2rem;
	}

	.section-content blockquote {
		padding: 1rem;
		margin: 1rem 0;
	}
}

/* Animation for section entrance */
@keyframes slideIn {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.about-section {
	animation: slideIn 0.6s ease-out;
}

.about-section:nth-child(2) {
	animation-delay: 0.1s;
}
.about-section:nth-child(3) {
	animation-delay: 0.2s;
}
.about-section:nth-child(4) {
	animation-delay: 0.3s;
}
.about-section:nth-child(5) {
	animation-delay: 0.4s;
}
.about-section:nth-child(6) {
	animation-delay: 0.5s;
}
