.unr-comment-rating {
	display: inline-flex;
	align-items: center;
	height: 1.125rem;
	padding: 0 .375rem;
	border-radius: .375rem;
	font-size: .625rem;
	font-weight: 700;
	line-height: 1;
	white-space: nowrap;
	border: 1px solid rgba(115, 115, 115, .24);
	background: rgba(245, 245, 245, .88);
	color: #404040;
}

.dark .unr-comment-rating {
	border-color: rgba(255, 255, 255, .12);
	background: rgba(38, 38, 38, .9);
	color: #e5e5e5;
}

.unr-rating-high {
	color: #15803d;
	background: rgba(34, 197, 94, .14);
	border-color: rgba(34, 197, 94, .24);
}

.unr-rating-mid {
	color: #a16207;
	background: rgba(234, 179, 8, .15);
	border-color: rgba(234, 179, 8, .25);
}

.unr-rating-low {
	color: #b91c1c;
	background: rgba(239, 68, 68, .13);
	border-color: rgba(239, 68, 68, .24);
}

.dark .unr-rating-high {
	color: #86efac;
	background: rgba(34, 197, 94, .18);
}

.dark .unr-rating-mid {
	color: #fde68a;
	background: rgba(234, 179, 8, .17);
}

.dark .unr-rating-low {
	color: #fca5a5;
	background: rgba(239, 68, 68, .18);
}

.unr-profile-section {
	grid-column: 1 / -1;
	margin: 1.5rem 0;
	display: flex;
	flex-direction: column;
	gap: .625rem;
}

.unr-profile-head {
	display: flex;
	align-items: center;
	gap: .5rem;
	padding: 0 1rem;
}

.unr-profile-head h2 {
	margin: 0;
	font-size: .875rem;
	font-weight: 900;
	line-height: 1.2;
}

.unr-profile-head span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 1.375rem;
	height: 1.375rem;
	padding: 0 .375rem;
	border-radius: 999px;
	font-size: .6875rem;
	font-weight: 800;
	background: #f5f5f5;
	color: #737373;
}

.dark .unr-profile-head span {
	background: #171717;
	color: #a3a3a3;
}

.unr-profile-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: .75rem;
	padding: 0 1rem;
}

.unr-profile-card {
	position: relative;
	display: flex;
	min-width: 0;
	flex-direction: column;
	gap: .4375rem;
	color: inherit;
	text-decoration: none;
	-webkit-tap-highlight-color: transparent;
}

.unr-profile-poster {
	position: relative;
	display: block;
	aspect-ratio: 2 / 3;
	overflow: hidden;
	border-radius: .625rem;
	background: #f5f5f5;
	box-shadow: 0 1px 0 rgba(0, 0, 0, .04);
}

.dark .unr-profile-poster {
	background: #171717;
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .05);
}

.unr-profile-poster img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.unr-profile-poster i {
	display: flex;
	width: 100%;
	height: 100%;
	align-items: center;
	justify-content: center;
	font-style: normal;
	font-size: 2rem;
	font-weight: 900;
	color: #a3a3a3;
}

.unr-rating-badge {
	position: absolute;
	left: .375rem;
	top: .375rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 1.625rem;
	height: 1.25rem;
	padding: 0 .3125rem;
	border-radius: .375rem;
	font-size: .6875rem;
	font-weight: 900;
	line-height: 1;
	border: 1px solid currentColor;
	backdrop-filter: blur(8px);
}

.unr-profile-info {
	display: flex;
	min-width: 0;
	flex-direction: column;
	gap: .125rem;
}

.unr-profile-info strong {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	font-size: .75rem;
	font-weight: 800;
	line-height: 1.2;
}

.unr-profile-info small {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	font-size: .6875rem;
	font-weight: 600;
	line-height: 1.2;
	color: #737373;
}

.dark .unr-profile-info small {
	color: #a3a3a3;
}

.unr-profile-empty {
	grid-column: 1 / -1;
	margin: 1.5rem 1rem;
	padding: 1rem;
	border-radius: 1rem;
	background: #f5f5f5;
	color: #737373;
	font-size: .75rem;
	font-weight: 700;
	text-align: center;
}

.dark .unr-profile-empty {
	background: #171717;
	color: #a3a3a3;
}

@media (min-width: 640px) {
	.unr-profile-grid {
		grid-template-columns: repeat(5, minmax(0, 1fr));
	}
}

@media (min-width: 960px) {
	.unr-profile-grid {
		grid-template-columns: repeat(7, minmax(0, 1fr));
	}
}

.unr-page {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	padding-top: .25rem;
}

.unr-page-tabs {
	display: flex;
	gap: .375rem;
	overflow-x: auto;
	padding: .375rem;
	border-radius: 1rem;
	background: #f5f5f5;
	scrollbar-width: none;
}

.unr-page-tabs::-webkit-scrollbar {
	display: none;
}

.dark .unr-page-tabs {
	background: #171717;
}

.unr-page-tabs a,
.unr-page-tabs button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 2.125rem;
	padding: 0 .875rem;
	border-radius: .8rem;
	font-size: .75rem;
	font-weight: 800;
	line-height: 1;
	white-space: nowrap;
	color: #737373;
	text-decoration: none;
	border: 0;
	background: transparent;
	cursor: pointer;
	transition: background-color .18s ease, color .18s ease;
}

.dark .unr-page-tabs a,
.dark .unr-page-tabs button {
	color: #a3a3a3;
}

.unr-page-tabs a.active,
.unr-page-tabs button.active {
	background: #050505;
	color: #fff;
	box-shadow: none;
}

.dark .unr-page-tabs a.active,
.dark .unr-page-tabs button.active {
	background: #f5f5f5;
	color: #050505;
}

.unr-page-panel {
	display: none;
}

.unr-page-panel.active {
	display: block;
}

.unr-page-list {
	display: flex;
	flex-direction: column;
	gap: .875rem;
}

.unr-page-item {
	display: grid;
	grid-template-columns: 5.75rem minmax(0, 1fr);
	gap: .75rem;
	min-height: 8.05rem;
	color: inherit;
	text-decoration: none;
	-webkit-tap-highlight-color: transparent;
}

.unr-page-poster {
	position: relative;
	display: block;
	width: 100%;
	aspect-ratio: 5 / 7;
	overflow: hidden;
	border-radius: .625rem;
	background: #f5f5f5;
	box-shadow: 0 1px 0 rgba(0, 0, 0, .04);
}

.dark .unr-page-poster {
	background: #171717;
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .06);
}

.unr-page-poster img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.unr-page-poster i {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	font-style: normal;
	font-size: 2.25rem;
	font-weight: 900;
	color: #a3a3a3;
}

.unr-page-info {
	display: flex;
	min-width: 0;
	flex-direction: column;
	align-items: flex-start;
	padding-top: .125rem;
}

.unr-page-info strong {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	max-width: 100%;
	font-size: .8125rem;
	font-weight: 800;
	line-height: 1.2;
}

.unr-page-info small {
	display: block;
	max-width: 100%;
	margin-top: .1875rem;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	font-size: .75rem;
	font-weight: 600;
	line-height: 1.2;
	color: #858585;
}

.dark .unr-page-info small {
	color: #a3a3a3;
}

.unr-page-kp-rating,
.unr-page-rating {
	position: absolute;
	left: .375rem;
	top: .375rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 2rem;
	height: 1.5rem;
	padding: 0 .4375rem;
	border-radius: .625rem;
	font-size: .75rem;
	font-weight: 900;
	line-height: 1;
	border: 1px solid transparent;
	backdrop-filter: blur(8px);
}

.unr-page-kp-rating {
	width: 2rem;
	min-width: 2rem;
	height: 1.25rem;
	padding: .25rem 0;
	border-radius: 3px;
	font-size: 11px;
	font-weight: 500;
	box-shadow: 0 1px 2px rgba(0, 0, 0, .08);
}

.unr-page-user-rating {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 1.375rem;
	margin-top: .5625rem;
	padding: 0 .5rem;
	border: 1px solid rgba(115, 115, 115, .22);
	border-radius: .5rem;
	font-size: .6875rem;
	font-weight: 800;
	line-height: 1;
	white-space: nowrap;
}

.dark .unr-page-user-rating {
	border-color: rgba(255, 255, 255, .12);
}

.unr-page-empty {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 12rem;
	padding: 1rem;
	border-radius: 1rem;
	background: #f5f5f5;
	color: #737373;
	font-size: .8125rem;
	font-weight: 800;
	text-align: center;
}

.dark .unr-page-empty {
	background: #171717;
	color: #a3a3a3;
}

@media (max-width: 374px) {
	.unr-page-item {
		grid-template-columns: 5.25rem minmax(0, 1fr);
		min-height: 7.35rem;
	}

	.unr-page-tabs a,
	.unr-page-tabs button {
		padding: 0 .6875rem;
		font-size: .75rem;
	}
}

@media (min-width: 768px) {
	.unr-page {
		max-width: 54rem;
	}

	.unr-page-list {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 1.25rem;
	}
}

.unr-watch-list {
	display: flex;
	flex-direction: column;
	gap: .75rem;
}

.unr-watch-item {
	display: grid;
	grid-template-columns: 9.75rem minmax(0, 1fr);
	gap: .75rem;
	align-items: center;
	color: inherit;
	text-decoration: none;
	-webkit-tap-highlight-color: transparent;
}

.unr-watch-media {
	position: relative;
	display: block;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	border-radius: .625rem;
	background: #f5f5f5;
}

.unr-watch-media.is-poster {
	aspect-ratio: 5 / 7;
	max-height: 8.75rem;
}

.dark .unr-watch-media {
	background: #171717;
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .06);
}

.unr-watch-media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.unr-watch-play {
	position: absolute;
	left: 50%;
	top: 50%;
	display: flex;
	width: 2rem;
	height: 2rem;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	background: rgba(0, 0, 0, .46);
	color: #fff;
	transform: translate(-50%, -50%);
	backdrop-filter: blur(8px);
}

.unr-watch-play svg {
	width: 1rem;
	height: 1rem;
	fill: currentColor;
	transform: translateX(.0625rem);
}

.unr-watch-time {
	position: absolute;
	right: .375rem;
	bottom: .5rem;
	z-index: 2;
	padding: .1875rem .375rem;
	border-radius: .375rem;
	background: rgba(0, 0, 0, .6);
	color: #fff;
	font-size: .625rem;
	font-weight: 800;
	line-height: 1;
}

.unr-watch-progress {
	position: absolute;
	left: .375rem;
	right: .375rem;
	bottom: .25rem;
	height: .1875rem;
	overflow: hidden;
	border-radius: 999px;
	background: rgba(255, 255, 255, .35);
}

.unr-watch-progress span {
	display: block;
	height: 100%;
	border-radius: inherit;
	background: #ff6400;
}

.unr-watch-info {
	display: flex;
	min-width: 0;
	flex-direction: column;
	gap: .25rem;
}

.unr-watch-info strong {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	font-size: .8125rem;
	font-weight: 800;
	line-height: 1.2;
}

.unr-watch-info small {
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	font-size: .75rem;
	font-weight: 600;
	line-height: 1.2;
	color: #858585;
}

.dark .unr-watch-info small {
	color: #a3a3a3;
}

@media (max-width: 374px) {
	.unr-watch-item {
		grid-template-columns: 8.25rem minmax(0, 1fr);
	}
}

@media (min-width: 768px) {
	.unr-watch-list {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 1.25rem;
	}

	.unr-watch-item {
		grid-template-columns: 10.75rem minmax(0, 1fr);
	}
}

@media (min-width: 1024px) {
	.unr-page {
		max-width: 68rem;
	}

	.unr-page-list {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.unr-watch-item {
		grid-template-columns: 11.75rem minmax(0, 1fr);
	}
}
