.training-chart-section {
	padding: 0px 0px;
}

.neon-chart-card {
	background: radial-gradient(circle at top left, #151b23 0%, #080b10 55%, #040608 100%);
	border-radius: 20px;
	padding: 32px 38px 24px;
	box-shadow:
		0 0 0 1px rgba(0, 140, 255, 0.45),
		0 0 35px rgba(0, 140, 255, 0.55),
		0 0 75px rgba(0, 45, 130, 0.6),
		inset 0 0 35px rgba(255, 255, 255, 0.03);
	position: relative;
	overflow: hidden;
}

.neon-chart-card::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(
		135deg,
		rgba(255,255,255,0.08) 0%,
		rgba(255,255,255,0.015) 28%,
		rgba(255,255,255,0) 60%
	);
	pointer-events: none;
}

.chart-title {
	position: relative;
	z-index: 2;
	margin-bottom: 35px;
	font-size: 1.2rem;
	font-weight: 300;
	letter-spacing: 0.20em;
	text-transform: uppercase;
	color: #dce7ff;
	text-shadow: 0 0 10px rgba(220, 231, 255, 0.2);
}

.chart-wrapper {
	position: relative;
	z-index: 2;
	height: 180px;
}

.chart-footer-note {
	margin-top: 34px;
	text-align: center;
	color: #ffffff;
	font-size: 1.05rem;
	font-weight: 300;
	text-shadow: 0 0 8px rgba(255, 255, 255, 0.35);
}

@media (max-width: 768px) {
	.neon-chart-card {
		padding: 28px 20px 24px;
		border-radius: 24px;
	}

	.chart-title {
		font-size: 0.95rem;
		letter-spacing: 0.22em;
		line-height: 1.7;
	}

	.chart-wrapper {
		height: 320px;
	}
}
