/* Prepni Progress — profilové shortcody a karta "Pokrok". */

.prepni-guest-message {
	font-family: 'Outfit', sans-serif;
	color: #8a8a8a;
	font-size: 14px;
}

.prepni-stat {
	font-family: 'Outfit', sans-serif;
	font-weight: 700;
	color: #04da12;
}

.prepni-level-card {
	font-family: 'Outfit', sans-serif;
	background: #1c1c1c;
	border: 1px solid rgba(4, 218, 18, 0.25);
	border-radius: 16px;
	padding: 18px 22px;
	max-width: 360px;
}

.prepni-level-number {
	font-size: 20px;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 10px;
}

.prepni-level-next {
	margin-top: 8px;
	font-size: 13px;
	color: #8a8a8a;
}

.prepni-progress-track {
	background: #2b2b2b;
	border-radius: 999px;
	height: 8px;
	overflow: hidden;
}

.prepni-progress-fill {
	background: linear-gradient(90deg, #04da12, #09b700);
	height: 100%;
	border-radius: 999px;
	transition: width 0.4s ease;
}

.prepni-progress-row {
	font-family: 'Outfit', sans-serif;
	margin-bottom: 16px;
}

.prepni-progress-row:last-child {
	margin-bottom: 0;
}

.prepni-progress-label {
	display: flex;
	justify-content: space-between;
	font-size: 13px;
	color: #d8d8d8;
	margin-bottom: 6px;
}

.prepni-progress-label span:last-child {
	color: #8a8a8a;
}

.prepni-last-activity {
	font-family: 'Outfit', sans-serif;
	font-size: 13px;
	color: #8a8a8a;
	margin: 0;
}

.prepni-last-activity strong {
	color: #ffffff;
}

.prepni-last-activity--empty {
	font-style: italic;
}

.prepni-profile-card {
	font-family: 'Outfit', sans-serif;
	background: #161616;
	border: 1px solid rgba(4, 218, 18, 0.2);
	border-radius: 20px;
	padding: 24px;
	max-width: 420px;
	color: #ffffff;
}

.prepni-profile-header {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	margin-bottom: 20px;
}

.prepni-profile-xp {
	font-size: 26px;
	font-weight: 700;
	color: #04da12;
}

.prepni-profile-level {
	font-size: 14px;
	font-weight: 600;
	color: #d8d8d8;
	background: #1c1c1c;
	border-radius: 999px;
	padding: 6px 14px;
}

.prepni-profile-subjects {
	margin-top: 20px;
	padding-top: 16px;
	border-top: 1px solid #2b2b2b;
}

.prepni-profile-footer {
	margin-top: 16px;
	padding-top: 16px;
	border-top: 1px solid #2b2b2b;
}

.prepni-achievements-empty {
	font-family: 'Outfit', sans-serif;
	color: #8a8a8a;
	font-size: 14px;
	font-style: italic;
}

.prepni-achievements-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
	gap: 12px;
}

.prepni-achievement-badge {
	font-family: 'Outfit', sans-serif;
	background: #1c1c1c;
	border: 1px solid rgba(4, 218, 18, 0.2);
	border-radius: 16px;
	padding: 18px 12px 14px;
	text-align: center;
	transition: transform 0.15s ease, border-color 0.15s ease;
}

.prepni-achievement-badge:hover {
	transform: translateY(-3px);
	border-color: rgba(4, 218, 18, 0.5);
}

.prepni-achievement-icon {
	width: 56px;
	height: 56px;
	margin: 0 auto 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 26px;
	border-radius: 50%;
	border: 2px solid transparent;
	background-clip: padding-box, border-box;
	background-origin: padding-box, border-box;
	background-image:
		radial-gradient(circle at 30% 25%, #0f3d10, #161616 70%),
		linear-gradient(135deg, #04da12, #09b700 60%, #036600);
	box-shadow: 0 0 0 1px rgba(4, 218, 18, 0.15), 0 4px 14px rgba(4, 218, 18, 0.15);
}

.prepni-achievement-title {
	font-size: 12px;
	font-weight: 700;
	color: #ffffff;
	letter-spacing: 0.2px;
}

.prepni-achievement-desc {
	font-size: 11px;
	color: #8a8a8a;
	margin-top: 4px;
	line-height: 1.4;
}

.prepni-profile-achievements {
	margin-top: 20px;
	padding-top: 16px;
	border-top: 1px solid #2b2b2b;
}

.prepni-continue-empty {
	font-family: 'Outfit', sans-serif;
	color: #8a8a8a;
	font-size: 14px;
}

.prepni-continue-list {
	display: flex;
	flex-direction: column;
	gap: 10px;
	max-width: 420px;
}

.prepni-continue-heading {
	font-family: 'Outfit', sans-serif;
	font-weight: 700;
	font-size: 15px;
	color: #ffffff;
	margin-bottom: 4px;
}

.prepni-continue-item {
	display: block;
	font-family: 'Outfit', sans-serif;
	background: #1c1c1c;
	border: 1px solid rgba(4, 218, 18, 0.2);
	border-radius: 12px;
	padding: 12px 16px;
	text-decoration: none;
	transition: border-color 0.15s ease, transform 0.15s ease;
}

.prepni-continue-item:hover {
	border-color: rgba(4, 218, 18, 0.5);
	transform: translateX(2px);
}

.prepni-continue-item-title {
	color: #ffffff;
	font-weight: 600;
	font-size: 14px;
}

.prepni-continue-item-meta {
	color: #8a8a8a;
	font-size: 12px;
	margin-top: 3px;
}
