/* Stats Section - Modern Design */
.stats-athletic {
	background: linear-gradient(135deg, var(--light-gray) 0%, #e8f4f8 100%);
	position: relative;
	overflow: hidden;
}

.stats-athletic::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23ffffff" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
	pointer-events: none;
}

/* Modern Stat Card */
.stat-card-athletic {
	background: var(--white);
	border-radius: 20px;
	padding: 2.5rem 2rem;
	text-align: center;
	position: relative;
	overflow: hidden;
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	border: 1px solid rgba(255, 255, 255, 0.2);
	box-shadow:
			0 10px 40px rgba(0, 0, 0, 0.08),
			0 5px 15px rgba(0, 0, 0, 0.05);
	backdrop-filter: blur(10px);
	height: 100%;
	min-height: 280px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.stat-card-athletic::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg,
	transparent,
	rgba(0, 102, 204, 0.03),
	rgba(255, 107, 53, 0.03),
	transparent
	);
	transition: left 0.6s ease;
	z-index: 1;
}

.stat-card-athletic:hover::before {
	left: 100%;
}

.stat-card-athletic:hover {
	transform: translateY(-8px) scale(1.02);
	box-shadow:
			0 25px 60px rgba(0, 102, 204, 0.15),
			0 15px 30px rgba(0, 0, 0, 0.1);
	border-color: rgba(0, 102, 204, 0.2);
}

/* Stat Card Inner Content */
.stat-card-inner {
	position: relative;
	z-index: 2;
	width: 100%;
}

/* Icon Container with Pulse Effect */
.stat-icon-container {
	position: relative;
	margin-bottom: 1.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
}

.stat-pulse {
	position: absolute;
	width: 120px;
	height: 120px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(0, 102, 204, 0.1) 0%, transparent 70%);
	animation: pulse 3s ease-in-out infinite;
	z-index: 1;
}

@keyframes pulse {
	0%, 100% {
		transform: scale(0.9);
		opacity: 0.7;
	}
	50% {
		transform: scale(1.1);
		opacity: 0.3;
	}
}

/* Modern Stat Number */
.stat-number-athletic {
	font-family: 'Bebas Neue', cursive;
	font-size: 4.5rem;
	background: linear-gradient(135deg, var(--woodley-blue) 0%, var(--basketball-orange) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	line-height: 1;
	position: relative;
	z-index: 2;
	font-weight: 400;
	letter-spacing: -2px;
	text-shadow: 0 0 30px rgba(0, 102, 204, 0.3);
}

/* Stat Title */
.stat-title {
	color: var(--charcoal);
	font-size: 1.1rem;
	margin-bottom: 0.8rem;
	letter-spacing: 1px;
	font-weight: 600;
}

/* Stat Description */
.stat-description {
	color: #666;
	font-size: 0.9rem;
	line-height: 1.5;
	margin-bottom: 1.5rem;
	font-weight: 400;
}

/* Gradient Line Accent */
.stat-gradient-line {
	width: 60px;
	height: 3px;
	background: var(--gradient-energy);
	margin: 0 auto;
	border-radius: 2px;
	position: relative;
	overflow: hidden;
}

.stat-gradient-line::after {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
	animation: shimmer 2s ease-in-out infinite;
}

@keyframes shimmer {
	0% { left: -100%; }
	100% { left: 100%; }
}

/* Animation Classes */
.stat-card-athletic.animate-in {
	animation: statCardIn 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes statCardIn {
	0% {
		opacity: 0;
		transform: translateY(50px) scale(0.8);
	}
	100% {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

/* Responsive Design */
@media (max-width: 1200px) {
	.stat-number-athletic {
		font-size: 4rem;
	}

	.stat-card-athletic {
		min-height: 260px;
		padding: 2rem 1.5rem;
	}
}

@media (max-width: 992px) {
	.stat-number-athletic {
		font-size: 3.5rem;
	}

	.stat-card-athletic {
		min-height: 240px;
		padding: 1.8rem 1.5rem;
	}

	.stat-pulse {
		width: 100px;
		height: 100px;
	}
}

@media (max-width: 768px) {
	.stat-card-athletic {
		border-radius: 15px;
		min-height: 220px;
		padding: 1.5rem 1rem;
		margin-bottom: 1.5rem;
	}

	.stat-number-athletic {
		font-size: 3rem;
		letter-spacing: -1px;
	}

	.stat-title {
		font-size: 1rem;
	}

	.stat-description {
		font-size: 0.85rem;
	}

	.stat-pulse {
		width: 80px;
		height: 80px;
	}
}

@media (max-width: 576px) {
	.stat-card-athletic {
		min-height: 200px;
		padding: 1.2rem 0.8rem;
	}

	.stat-number-athletic {
		font-size: 2.5rem;
	}

	.stat-title {
		font-size: 0.95rem;
		margin-bottom: 0.6rem;
	}

	.stat-description {
		font-size: 0.8rem;
		margin-bottom: 1rem;
	}

	.stat-gradient-line {
		width: 40px;
		height: 2px;
	}
}

/* High contrast mode support */
@media (prefers-contrast: high) {
	.stat-card-athletic {
		border: 2px solid var(--charcoal);
		box-shadow: none;
	}

	.stat-number-athletic {
		-webkit-text-fill-color: var(--charcoal);
		background: none;
	}
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
	.stat-card-athletic,
	.stat-pulse,
	.stat-gradient-line::after {
		animation: none;
		transition: none;
	}

	.stat-card-athletic:hover {
		transform: none;
	}
}