.vr-lead {
	max-width: 68ch;
	margin: -6px 0 26px;
	color: var(--color-muted-foreground);
	font-size: var(--font-size-sm);
	line-height: var(--line-height-relaxed);
}
.vr-page {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 32px 24px;
}
.vr-page__empty {
	color: var(--color-muted-foreground);
	font-size: var(--font-size-sm);
}
.vr-block {
	--vr-thumb: clamp(64px, calc(var(--vr-title-lines, 2) * 22px + 48px), 220px);
	display: flex;
	flex-direction: column;
	min-width: 0;
	padding: 20px;
	border-radius: var(--radius-xl);
	background-color: var(--color-card);
}
.vr-block.is-loading .vr-block__body {
	opacity: 0.45;
	transition: opacity 0.15s ease;
}
.vr-block__head {
	display: flex;
	flex-direction: column;
	gap: 4px;
	min-width: 0;
}
.vr-block__title {
	display: flex;
	align-items: center;
	gap: 7px;
	min-width: 0;
	font-size: var(--font-size-xl);
	font-weight: var(--font-weight-extrabold);
	line-height: var(--line-height-heading);
	letter-spacing: var(--letter-spacing-heading);
	color: var(--color-foreground);
}
.vr-block__icon {
	flex: none;
	display: inline-flex;
	line-height: 0;
	color: var(--color-foreground);
}
.vr-block__label {
	min-width: 0;
}
.vr-block__subtitle {
	font-size: var(--font-size-xs);
	line-height: var(--line-height-tight);
	color: var(--color-muted-foreground);
}
.vr-block__controls {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 10px;
	margin: 14px 0 4px;
	padding-bottom: 12px;
	border-bottom: 1px solid var(--color-border-soft);
}
.vr-block__pager {
	margin-left: auto;
}
.vr-block__empty {
	padding: 24px 0;
	color: var(--color-muted-foreground);
	font-size: var(--font-size-sm);
}
.vr-tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 4px;
	padding: 3px;
	border-radius: var(--radius-full);
	background-color: var(--color-surface-2);
}
.vr-tabs__btn {
	padding: 5px 12px;
	border-radius: var(--radius-full);
	color: var(--color-muted-foreground);
	font-size: var(--font-size-2xs);
	font-weight: var(--font-weight-semibold);
	line-height: 1.5;
	white-space: nowrap;
	transition: background-color 0.15s ease, color 0.15s ease;
}
.vr-tabs__btn:hover {
	color: var(--color-foreground);
}
.vr-tabs__btn.is-current {
	background-color: var(--color-primary);
	color: var(--color-primary-foreground);
}
.vr-select {
	position: relative;
	display: inline-flex;
	align-items: center;
}
.vr-select__field {
	appearance: none;
	max-width: 200px;
	padding: 5px 26px 5px 12px;
	border: 1px solid var(--color-border-soft);
	border-radius: var(--radius-full);
	background-color: var(--color-surface-2);
	color: var(--color-foreground);
	font-family: inherit;
	font-size: var(--font-size-2xs);
	font-weight: var(--font-weight-semibold);
	line-height: 1.5;
	cursor: pointer;
	transition: border-color 0.15s ease, color 0.15s ease;
}
.vr-select__field:hover {
	border-color: var(--color-border);
}
.vr-select--beginner .vr-select__field {
	border-color: rgba(190, 253, 6, 0.32);
	color: var(--color-primary);
}
.vr-select--intermediate .vr-select__field {
	border-color: var(--color-sub-tint-45);
	color: var(--color-sub);
}
.vr-select--advanced .vr-select__field {
	border-color: rgba(248, 113, 113, 0.4);
	color: var(--color-destructive);
}
.vr-select--beginner svg {
	color: var(--color-primary);
}
.vr-select--intermediate svg {
	color: var(--color-sub);
}
.vr-select--advanced svg {
	color: var(--color-destructive);
}
.vr-select svg {
	position: absolute;
	right: 9px;
	pointer-events: none;
	color: var(--color-muted-foreground);
}
.vr-pager.is-hidden {
	display: none;
}
.vr-pager {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}
.vr-pager__range {
	font-size: var(--font-size-2xs);
	font-weight: var(--font-weight-bold);
	font-variant-numeric: tabular-nums;
	line-height: 1.5;
	white-space: nowrap;
	color: var(--color-foreground);
}
.vr-pager__total {
	font-size: var(--font-size-2xs);
	font-variant-numeric: tabular-nums;
	line-height: 1.5;
	white-space: nowrap;
	color: var(--color-muted-foreground);
}
.vr-pager__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border: 1px solid var(--color-border-soft);
	border-radius: var(--radius-full);
	color: var(--color-muted-foreground);
	transition: border-color 0.15s ease, color 0.15s ease, background-color 0.15s ease;
}
.vr-pager__btn:hover:not(:disabled) {
	border-color: var(--color-border);
	background-color: var(--color-surface-2);
	color: var(--color-primary);
}
.vr-pager__btn:disabled {
	opacity: 0.3;
	cursor: default;
}
.vr-rows {
	display: flex;
	flex-direction: column;
}
.vr-podium {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 12px;
	margin-bottom: 8px;
}
.vr-item {
	--vr-accent: var(--color-sub);
	display: flex;
	align-items: center;
	gap: 11px;
	min-width: 0;
	padding: 12px 0;
	break-inside: avoid;
}
.vr-anim .vr-item {
	opacity: 0;
	transform: translateY(10px);
	transition: opacity 0.45s ease, transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.vr-anim .vr-item.is-visible {
	opacity: 1;
	transform: none;
}
.vr-item--r1 {
	--vr-accent: #FFE300;
}
.vr-item--r2 {
	--vr-accent: #4CE2EB;
}
.vr-item--r3 {
	--vr-accent: #FF93F3;
}
.vr-rows .vr-item {

}
.vr-rows .vr-item:last-child {

}
.vr-item__rank {
	flex: none;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 1px;
	min-width: 30px;
	padding-top: 2px;
	color: #fff;
}
.vr-item--top .vr-item__rank {
	color: var(--vr-accent);
}
.vr-item__crown {
	display: block;
	line-height: 0;
	transform: translateY(1px);
}
.vr-item__num {
	font-family: var(--font-family-mono);
	font-size: 1.25rem;
	font-weight: var(--font-weight-extrabold);
	font-style: italic;
	font-variant-numeric: tabular-nums;
	letter-spacing: -0.02em;
	line-height: 1;
}
.vr-item__thumb {
	position: relative;
	flex: none;
	display: block;
	width: var(--vr-thumb);
	height: var(--vr-thumb);
	overflow: hidden;
	border: 1px solid var(--color-border-soft);
	border-radius: var(--radius-md);
	background-color: var(--color-surface-3);
}
.vr-item__thumb img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.35s ease;
}
.vr-item:hover .vr-item__thumb img {
	transform: scale(1.06);
}
.vr-item__body {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-width: 0;
}
.vr-item__title {
	-webkit-line-clamp: var(--vr-title-lines, 2);
	font-size: var(--font-size-md);
	font-weight: var(--font-weight-bold);
	line-height: var(--line-height-tight);
	letter-spacing: var(--letter-spacing-heading);
	color: var(--color-foreground);
	overflow-wrap: anywhere;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.vr-item__title a {
	transition: color 0.15s ease;
}
.vr-item__title a:hover {
	color: var(--color-link-hover);
}
.vr-item__ind {
	display: flex;
	align-items: center;
	gap: 4px;
	margin-top: 4px;
	min-width: 0;
	color: var(--color-sub);
	font-size: var(--font-size-2xs);
	line-height: 1.5;
}
.vr-item__ind svg {
	flex: none;
}
.vr-item__ind-text {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.vr-item__meta {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 6px;
	margin-top: 7px;
}
.vr-item__bar {
	display: block;
	width: 100%;
	height: 3px;
	margin-top: 9px;
	overflow: hidden;
	border-radius: var(--radius-full);
	background-color: var(--color-surface-3);
}
.vr-item__bar-fill {
	display: block;
	height: 100%;
	border-radius: var(--radius-full);
	background-color: var(--color-sub);
	opacity: 0.5;
	transform-origin: left center;
}
.vr-item--top .vr-item__bar-fill {
	background-color: var(--vr-accent);
}
.vr-anim .vr-item__bar-fill {
	transform: scaleX(0);
	transition: transform 0.65s cubic-bezier(0.22, 0.61, 0.36, 1) 0.12s;
}
.vr-anim .vr-item.is-visible .vr-item__bar-fill {
	transform: none;
}
.vr-item--podium {
	flex-direction: column;
	align-items: stretch;
	gap: 10px;
	padding: 12px;
	border: 1px solid var(--color-border-soft);
	border-radius: var(--radius-lg);
	background-color: var(--color-surface-2);
}
.vr-item--podium .vr-item__thumb {
	order: -1;
	width: 100%;
	height: auto;
	aspect-ratio: 1 / 1;
}
.vr-item--podium .vr-item__rank {
	flex-direction: row;
	align-items: center;
	justify-content: flex-start;
	gap: 5px;
	padding-top: 0;
}
.vr-item--podium .vr-item__num {
	font-size: 1.5rem;
}
.vr-item--compact .vr-item__rank {
	min-width: 24px;
}
.vr-item--compact .vr-item__num {
	font-size: 1.0625rem;
}
.vr-stars {
	display: inline-flex;
	align-items: center;
	flex: none;
	gap: 5px;
	padding: 2px 8px 2px 7px;
	border-radius: var(--radius-full);
	background-color: var(--color-surface-3);
}
.vr-stars__track {
	--vr-star-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256' fill='%23000'%3E%3Cpath d='M234.29,114.85l-45,38.83L203,211.75a16.4,16.4,0,0,1-24.5,17.82L128,198.49,77.47,229.57A16.4,16.4,0,0,1,53,211.75l13.76-58.07-45-38.83A16.46,16.46,0,0,1,31.08,86l59-4.76,22.76-55.08a16.36,16.36,0,0,1,30.27,0l22.75,55.08,59,4.76a16.46,16.46,0,0,1,9.37,28.86Z'/%3E%3C/svg%3E");
	--vr-star-size: 12px;
	position: relative;
	display: inline-block;
	width: calc(var(--vr-star-size) * 5);
	height: var(--vr-star-size);
}
.vr-stars__track::before {
	content: "";
	position: absolute;
	inset: 0;
	background-color: #505664;
	-webkit-mask-image: var(--vr-star-icon);
	mask-image: var(--vr-star-icon);
	-webkit-mask-repeat: repeat-x;
	mask-repeat: repeat-x;
	-webkit-mask-size: var(--vr-star-size) var(--vr-star-size);
	mask-size: var(--vr-star-size) var(--vr-star-size);
}
.vr-stars__fill {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	overflow: hidden;
}
.vr-stars__fill::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: calc(var(--vr-star-size) * 5);
	height: var(--vr-star-size);
	background-color: #FFE300;
	-webkit-mask-image: var(--vr-star-icon);
	mask-image: var(--vr-star-icon);
	-webkit-mask-repeat: repeat-x;
	mask-repeat: repeat-x;
	-webkit-mask-size: var(--vr-star-size) var(--vr-star-size);
	mask-size: var(--vr-star-size) var(--vr-star-size);
}
.vr-stars__value {
	font-family: var(--font-family-mono);
	font-size: var(--font-size-2xs);
	font-weight: var(--font-weight-bold);
	line-height: 1.5;
	color: var(--color-foreground);
}
.vr-level {
	display: inline-flex;
	align-items: center;
	flex: none;
	gap: 4px;
	padding: 2px 9px;
	border: 1px solid var(--color-border-soft);
	border-radius: var(--radius-full);
	background-color: var(--color-surface-2);
	color: var(--color-muted-foreground);
	font-size: var(--font-size-2xs);
	line-height: 1.5;
	white-space: nowrap;
}
.vr-level__value {
	font-weight: var(--font-weight-bold);
}
.vr-level--beginner {
	border-color: rgba(190, 253, 6, 0.32);
	color: var(--color-primary);
}
.vr-level--intermediate {
	border-color: var(--color-sub-tint-45);
	color: var(--color-sub);
}
.vr-level--advanced {
	border-color: rgba(248, 113, 113, 0.4);
	color: var(--color-destructive);
}
.vr-trend {
	display: inline-flex;
	align-items: center;
	flex: none;
	gap: 2px;
	padding: 2px 8px;
	border-radius: var(--radius-full);
	font-size: var(--font-size-2xs);
	font-weight: var(--font-weight-bold);
	line-height: 1.5;
	white-space: nowrap;
}
.vr-trend--up {
	background-color: rgba(190, 253, 6, 0.14);
	color: var(--color-primary);
}
.vr-trend--new {
	background-color: rgba(255, 227, 0, 0.16);
	color: #FFE300;
	letter-spacing: var(--letter-spacing-label);
}
.vr-trend__value {
	font-family: var(--font-family-mono);
	font-variant-numeric: tabular-nums;
}
@media (min-width: 640px) {
	.vr-podium {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}
@media (min-width: 768px) {
	.vr-block--w-full .vr-rows {
		display: block;
		column-count: 2;
		column-gap: 28px;
	}
}
@media (min-width: 1024px) {
	.vr-page {
		grid-template-columns: repeat(6, minmax(0, 1fr));
	}
	.vr-block--w-full {
		grid-column: span 6;
	}
	.vr-block--w-half {
		grid-column: span 3;
	}
	.vr-block--w-third {
		grid-column: span 2;
	}
	.vr-block--w-half .vr-podium,
	.vr-block--w-third .vr-podium {
		grid-template-columns: minmax(0, 1fr);
	}
}
@media (prefers-reduced-motion: reduce) {
	.vr-block.is-loading .vr-block__body,
	.vr-tabs__btn,
	.vr-pager__btn,
	.vr-item__title a,
	.vr-item__thumb img {
		transition: none;
	}
	.vr-anim .vr-item,
	.vr-anim .vr-item__bar-fill {
		opacity: 1;
		transform: none;
		transition: none;
	}
	.vr-anim .vr-item__bar-fill {
		opacity: 0.5;
	}
	.vr-item:hover .vr-item__thumb img {
		transform: none;
	}
}
.vr-picks {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 12px;
	padding-top: 4px;
}
.vr-pick {
	display: flex;
	flex-direction: column;
	gap: 6px;
	min-width: 0;
	padding: 14px;
	border: 1px solid var(--color-border-soft);
	border-radius: var(--radius-lg);
	background-color: var(--color-surface-2);
}
.vr-anim .vr-pick {
	opacity: 0;
	transform: translateY(10px);
	transition: opacity 0.45s ease, transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.vr-anim .vr-pick.is-visible {
	opacity: 1;
	transform: none;
}
.vr-pick__bubble {
	position: relative;
	margin-top: 8px;
	padding: 11px 13px;
	border-radius: var(--radius-md);
	background-color: var(--color-sub-tint-10);
	background-color: color-mix(in srgb, var(--color-sub) 10%, var(--color-surface-2));
}
.vr-pick__bubble::before {
	content: "";
	position: absolute;
	top: -8px;
	left: 24px;
	width: 15px;
	height: 8px;
	background-color: inherit;
	clip-path: polygon(50% 0, 100% 100%, 0 100%);
}
.vr-pick__label {
	display: block;
	margin-bottom: 4px;
	color: var(--color-sub);
	font-size: var(--font-size-2xs);
	font-weight: var(--font-weight-bold);
	letter-spacing: var(--letter-spacing-label);
	line-height: 1.4;
}
.vr-pick__text {
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	color: var(--color-foreground);
	font-size: var(--font-size-sm);
	line-height: var(--line-height-tight);
	overflow-wrap: anywhere;
}
.vr-pick__foot {
	display: flex;
	align-items: center;
	gap: 12px;
	min-width: 0;
}
.vr-pick__thumb {
	position: relative;
	flex: none;
	display: block;
	width: var(--vr-thumb);
	height: var(--vr-thumb);
	overflow: hidden;
	border: 1px solid var(--color-border-soft);
	border-radius: var(--radius-md);
	background-color: var(--color-surface-3);
}
.vr-pick__thumb img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.vr-pick__body {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-width: 0;
}
.vr-pick__title {
	display: -webkit-box;
	-webkit-line-clamp: var(--vr-title-lines, 2);
	-webkit-box-orient: vertical;
	overflow: hidden;
	font-size: var(--font-size-md);
	font-weight: var(--font-weight-bold);
	line-height: var(--line-height-tight);
	letter-spacing: var(--letter-spacing-heading);
	color: var(--color-foreground);
	overflow-wrap: anywhere;
}
.vr-pick__title a {
	transition: color 0.15s ease;
}
.vr-pick__title a:hover {
	color: var(--color-link-hover);
}
.vr-pick__ind {
	display: flex;
	align-items: center;
	gap: 4px;
	margin-top: 4px;
	min-width: 0;
	color: var(--color-sub);
	font-size: var(--font-size-2xs);
	line-height: 1.5;
}
.vr-pick__ind svg {
	flex: none;
}
.vr-pick__ind-text {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
@media (min-width: 640px) {
	.vr-picks {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}
@media (min-width: 1024px) {
	.vr-block--w-full .vr-picks {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.vr-block--w-third .vr-picks {
		grid-template-columns: minmax(0, 1fr);
	}
}
@media (prefers-reduced-motion: reduce) {
	.vr-pick__title a {
		transition: none;
	}
	.vr-anim .vr-pick {
		opacity: 1;
		transform: none;
		transition: none;
	}
}
