.about-container {
	position: relative;
	z-index: 2;
	max-width: 1200px;
	margin: 0 auto;
	padding: 2rem
}

.section-title {
	color: #2C3E38;
	font-size: 1.8rem;
	margin: 2.5rem 0 1.5rem;
	padding-bottom: 0.8rem;
	border-bottom: 1px solid rgba(125, 207, 182, 0.3);
	display: flex;
	align-items: center;
	gap: 10px
}

.section-title::before {
	content: "";
	width: 8px;
	height: 24px;
	background-color: #7DCFB6;
	border-radius: 4px
}

.section-content {
	background-color: rgba(255, 255, 255, 0.8);
	border-radius: 12px;
	border: 1px solid rgba(125, 207, 182, 0.3);
	padding: 1.5rem;
	margin-bottom: 1rem;
	line-height: 1.8;
	text-indent: 2rem
}

.tech-stack {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin-top: 1rem
}

.tech-item {
	background-color: rgba(125, 207, 182, 0.1);
	border-radius: 8px;
	padding: 0.5rem 1rem;
	font-size: 0.9rem;
	display: flex;
	align-items: center;
	gap: 6px
}

.tech-item::before {
	content: "•";
	color: #7DCFB6
}

.changelog-item {
	padding: 1rem 0;
	border-bottom: 1px dashed rgba(125, 207, 182, 0.2)
}

.changelog-item:last-child {
	border-bottom: none
}

.changelog-date {
	color: #7DCFB6;
	font-size: 0.9rem;
	margin-bottom: 0.5rem
}

.changelog-content {
	padding-left: 1.5rem
}

.changelog-content li {
	margin-bottom: 0.5rem
}

.changelog-content li:last-child {
	margin-bottom: 0
}

.stats-filters {
	display: flex;
	flex-wrap: wrap;
	gap: 0.8rem;
	margin: 1rem 0
}

.stats-filter {
	padding: 0.5rem 1rem;
	border-radius: 6px;
	border: 1px solid rgba(125, 207, 182, 0.5);
	background-color: transparent;
	color: #2C3E38;
	cursor: pointer;
	font-size: 0.9rem
}

.stats-filter.active {
	background-color: #7DCFB6;
	color: white;
	border-color: #7DCFB6
}

.charts-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.5rem;
	margin-top: 1.5rem
}

.chart-wrapper {
	height: 300px;
	position: relative
}

.operation-stats {
	display: flex;
	align-items: center;
	justify-content: space-around;
	gap: 1.5rem;
	margin-top: 1rem
}

.stat-card {
	min-width: 200px;
	background-color: rgba(255, 255, 255, 0.9);
	border-radius: 12px;
	padding: 1.2rem;
	box-shadow: 0 4px 12px rgba(125, 207, 182, 0.1);
	text-align: center !important;
}

.stat-value {
	font-size: 2rem;
	font-weight: bold;
	color: #7DCFB6;
	margin: 0.5rem 0
}

.stat-label {
	color: #666;
	font-size: 0.9rem
}

@media (max-width:768px) {
	.charts-container {
		grid-template-columns: 1fr
	}

	.section-title {
		font-size: 1.5rem
	}

	.stat-card {
		min-width: 100%
	}
	
	.operation-stats {
		display: grid;
		grid-template-columns: repeat(1fr);
	}
}

.info-container {
	position: relative;
	z-index: 2;
	max-width: 800px;
	margin: 40px auto;
	padding: 30px;
	background-color: rgba(255, 255, 255, 0.8);
	border-radius: 18px;
	border: 1px solid rgba(125, 207, 182, 0.3);
	opacity: 0;
	transform: translateY(10px);
	animation: fadeIn 1.5s ease 0.5s forwards
}