/* ==========================================================================
   ChopSkills Profile Styles
   ========================================================================== */

.cs-profile-wrapper {
	background: var(--cs-bg-card);
	border: 1px solid var(--cs-border-subtle);
	border-radius: var(--cs-radius);
	padding: 40px;
	color: var(--cs-text-primary);
	font-family: var(--cs-font);
	max-width: 800px;
	margin: 0 auto;
	box-shadow: var(--cs-shadow-card);
}

.cs-profile-header {
	display: flex;
	align-items: center;
	gap: 30px;
	margin-bottom: 40px;
}

.cs-profile-avatar img {
	border-radius: 50%;
	border: 3px solid var(--cs-bg-primary);
	display: block;
}

.cs-profile-avatar.is-pro img {
	border-color: var(--cs-gold);
	box-shadow: 0 0 20px var(--cs-gold-glow);
}

.cs-profile-info h1 {
	margin: 0 0 5px 0;
	font-size: 2rem;
	display: flex;
	align-items: center;
	gap: 10px;
	color: #fff;
	font-weight: 800;
}

.cs-pro-badge {
	background: linear-gradient(135deg, var(--cs-gold), #f59e0b);
	color: #000;
	font-size: 0.75rem;
	padding: 3px 8px;
	border-radius: 20px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.cs-profile-info-handle {
	color: var(--cs-text-muted);
	margin: 0;
}

.cs-profile-stats {
	display: flex;
	gap: 20px;
}

.cs-stat-box {
	background: rgba(255, 255, 255, 0.03);
	padding: 15px 25px;
	border-radius: var(--cs-radius-sm);
	text-align: center;
	flex: 1;
	border: 1px solid var(--cs-border-subtle);
}

.cs-stat-value {
	font-size: 1.8rem;
	font-weight: 800;
	color: var(--cs-accent);
	line-height: 1.2;
}

.cs-stat-value.is-gold {
	color: var(--cs-gold);
}

.cs-stat-label {
	font-size: 0.8rem;
	color: var(--cs-text-muted);
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-top: 5px;
}

.cs-badges-section {
	margin-top: 40px;
}

.cs-badges-section h3 {
	font-size: 1.2rem;
	font-weight: 700;
	margin-bottom: 15px;
	border-bottom: 1px solid var(--cs-border-subtle);
	padding-bottom: 10px;
	color: var(--cs-text-primary);
}

.cs-badges-grid {
	display: flex;
	gap: 15px;
	flex-wrap: wrap;
}

.cs-badge {
	background: rgba(0, 0, 0, 0.4);
	border: 1px solid var(--cs-border-subtle);
	border-radius: var(--cs-radius);
	padding: 15px;
	text-align: center;
	width: 120px;
	transition: var(--cs-transition);
}

.cs-badge:hover {
	border-color: var(--cs-accent);
	transform: translateY(-2px);
}

.cs-badge-icon {
	font-size: 2rem;
	margin-bottom: 10px;
	display: block;
}

.cs-badge-name {
	font-size: 0.8rem;
	font-weight: 600;
	color: #ccc;
}

.cs-badges-empty {
	color: var(--cs-text-muted);
	font-style: italic;
}
