/*
Theme Name:     BuddyBoss Child
Theme URI:      https://labgenz.com
Description:    Buddyboss-theme child theme.
Author:         Labgenz
Author URI:     https://labgenz.com
Template:       buddyboss-theme
Version:        0.1.0
*/

/* Header XP / Rank display styles */
.header-xp-display {
	display: flex;
	align-items: center;
	gap: 12px;
}
.header-xp-content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}
.header-xp-info {
	display: flex;
	align-items: center;
	gap: 10px;
}
.header-rank-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: linear-gradient(90deg, #f59e0b, #ef4444);
	color: white;
	padding: 6px 10px;
	border-radius: 20px;
	font-size: 13px;
	font-weight: 700;
}
.header-rank-badge .bb-icon-l { font-size: 16px; }
.header-xp-points { color: var(--bb-alternate-text-color); font-size: 13px; }

.header-xp-progress { width: 220px; margin-top: 8px; }
.xp-progress-bar {
	background: var(--bb-content-alternate-background-color);
	border-radius: 999px;
	height: 10px;
	overflow: hidden;
	position: relative;
}
.xp-progress-fill {
	height: 100%;
	width: 0%;
	background: linear-gradient(90deg, #7c3aed 0%, #4f46e5 100%);
	transition: width 900ms cubic-bezier(.2,.9,.2,1);
	position: relative;
}
.xp-progress-fill.active { box-shadow: 0 6px 18px rgba(79,70,229,0.25); }
.xp-progress-glow {
	position: absolute;
	right: 8px;
	top: -6px;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: rgba(255,255,255,0.45);
	filter: blur(6px);
	opacity: 0.9;
}
.xp-progress-label { margin-top: 6px; font-size: 12px; color: var(--bb-alternate-text-color); }

@media (max-width: 720px) {
	.header-xp-display { display: none; }
}

