/* ============================================================
 * PC Game Home - 主题样式
 * 深色游戏风 / 参考首页 1:1 还原
 * ============================================================ */

@font-face {
	font-family:'OPPO Sans';
	font-style:normal;
	font-weight:100 900;
	font-display:swap;
	src:url('https://dsfs.oppo.com/store/public/font/OPPOSans-Medium.woff2') format('woff2');
}

:root {
	--pcgh-bg: #0f1419;
	--pcgh-surface: #161c23;
	--pcgh-surface-2: #1d242c;
	--pcgh-border: #232b35;
	--pcgh-text: #e6e8eb;
	--pcgh-text-2: #a4adb8;
	--pcgh-text-3: #6b7785;
	--pcgh-primary: #3b82f6;
	--pcgh-primary-rgb: 59,130,246;
	--pcgh-primary-2: #2563eb;
	--pcgh-radius: 10px;
	--pcgh-radius-lg: 14px;
	--pcgh-shadow: 0 6px 18px rgba(0,0,0,.35);
	/* 布局尺寸（可被主题后台覆盖，详见 inc/csf-options.php → 常规 → 页面布局） */
	--pcgh-container-w: 1280px;
	--pcgh-sidebar-w: 320px;
	--pcgh-uc-menu-w: 220px;
}

html[data-pcgh-theme-resolved="light"] {
	color-scheme: light;
	--pcgh-bg: #f5f7fb;
	--pcgh-surface: #ffffff;
	--pcgh-surface-2: #eef2f7;
	--pcgh-border: #dbe3ee;
	--pcgh-text: #111827;
	--pcgh-text-2: #4b5563;
	--pcgh-text-3: #7b8794;
	--pcgh-shadow: 0 8px 24px rgb(255 255 255 / 0%);
}

html[data-pcgh-theme-resolved="dark"] {
	color-scheme: dark
}

@media (min-width:769px) {
	.pcgh-desktop-hidden {
		display: none !important
	}
}

*,*::before,*::after {
	box-sizing: border-box
}

html,body {
	margin: 0;
	padding: 0
}

body.pcgh-body {
	font-family: 'OPPO Sans',-apple-system,BlinkMacSystemFont,"Segoe UI","PingFang SC","Microsoft YaHei",sans-serif;
	background: var(--pcgh-bg);
	color: var(--pcgh-text);
	font-size: 14px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	/* sticky footer：内容不足时也让 footer 贴底（main 用 flex:1 推 footer 到底） */
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

.pcgh-main {
	flex: 1 0 auto;
	width: 100%;
	min-width: 0
}

.pcgh-footer {
	flex-shrink: 0
}

a {
	color: inherit;
	text-decoration: none
}

a:hover {
	color: #ffffff;
}

html[data-pcgh-theme-resolved="light"] a:hover {
	color: var(--pcgh-primary);
}


img {
	max-width: 100%;
	display: block
}

button {
	font: inherit;
	cursor: pointer;
	background: none;
	border: 0;
	color: inherit
}

ul {
	margin: 0;
	padding: 0;
	list-style: none
}

h1,h2,h3,h4 {
	margin: 0;
	font-weight: 600
}

i[data-lucide],svg[data-lucide],.lucide {
	stroke-width: 2;
	display: inline-block;
	vertical-align: -.125em
}

i.ti {
	font-size: 1em;
	line-height: 1;
	vertical-align: -.08em
}

.pcgh-container {
	max-width: var(--pcgh-container-w);
	margin: 0 auto;
	padding: 0 16px
}

/* ===== Header ===== */
.pcgh-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: #0f1419;
	backdrop-filter: blur(8px);
	border-bottom: 1px solid var(--pcgh-border)
}

@media (min-width:769px) and (hover:hover) and (pointer:fine) {
	body.home .pcgh-header.is-home-search-transparent,
	body.front-page .pcgh-header.is-home-search-transparent {
		position: absolute;
		left: 0;
		right: 0;
		width: 100%;
		background: transparent;
		border-bottom-color: transparent;
		backdrop-filter: none
	}

	body.home .pcgh-header.is-home-search-transparent + .pcgh-main > .pcgh-home-ai-search-section:first-child,
	body.front-page .pcgh-header.is-home-search-transparent + .pcgh-main > .pcgh-home-ai-search-section:first-child {
		margin-top: -60px;
		padding-top: 60px
	}

	body:not(.home):not(.front-page) .pcgh-header.is-home-search-transparent {
		position: sticky;
		background: #0f1419;
		backdrop-filter: blur(8px);
		border-bottom: 1px solid var(--pcgh-border)
	}
}

.pcgh-header__inner {
	display: flex;
	align-items: center;
	gap: 24px;
	height: 60px
}

.pcgh-logo {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-shrink: 0;
	color: var(--pcgh-text)
}

.pcgh-logo__icon {
	width: 34px;
	height: 34px;
	border-radius: 8px;
	background: linear-gradient(135deg,var(--pcgh-primary),#8b5cf6);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #fff
}

.pcgh-logo__icon i[data-lucide] {
	width: 20px;
	height: 20px
}

.pcgh-logo__text {
	display: flex;
	flex-direction: column;
	line-height: 1.1
}

.pcgh-logo__text strong {
	font-size: 16px;
	font-weight: 700
}

.pcgh-logo__text small {
	font-size: 10px;
	color: var(--pcgh-text-3);
	letter-spacing: 1px
}

.pcgh-nav__list {
	display: flex;
	gap: 4px
}

.pcgh-nav__list,
.pcgh-nav__list .sub-menu {
	list-style: none;
	margin: 0;
	padding: 0
}

.pcgh-nav__list li a {
	display: block;
	padding: 8px 14px;
	border-radius: 6px;
	color: var(--pcgh-text-2);
	font-size: 14px;
	transition: all .2s
}

.pcgh-nav__list li a:hover {
	color: var(--pcgh-text);
	background: var(--pcgh-surface)
}

.pcgh-nav__list > li.current-menu-item > a,
.pcgh-nav__list > li.current_page_item > a {
	background: var(--pcgh-primary);
	color: #fff
}

.pcgh-nav__list > li.menu-item-has-children > a::after {
	content: "";
	width: 6px;
	height: 6px;
	margin-left: 2px;
	border-right: 1.5px solid currentColor;
	border-bottom: 1.5px solid currentColor;
	transform: rotate(45deg) translateY(-1px);
	opacity: .72
}

.pcgh-nav__list > li > .sub-menu {
	position: absolute;
	top: 100%;
	left: 50%;
	z-index: 120;
	width: min(1180px,calc(100vw - 32px));
	display: grid;
	grid-template-columns: repeat(5,minmax(0,1fr));
	gap: 14px;
	padding: 32px;
	background: rgba(255,255,255,.98);
	border: 1px solid rgba(226,232,240,.92);
	border-radius: 0 0 8px 8px;
	box-shadow: 0 22px 60px rgba(15,23,42,.2);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateX(-50%) translateY(10px);
	transition: opacity .18s ease,visibility .18s ease,transform .18s ease
}

.pcgh-nav__list > li > .sub-menu::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: -18px;
	height: 18px
}

.pcgh-nav__list > li:hover > .sub-menu,
.pcgh-nav__list > li:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateX(-50%) translateY(0)
}

.pcgh-nav__list > li > .sub-menu > li > a {
	min-height: 100px;
	padding: 18px 14px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 8px;
	border-radius: 6px;
	background: #f7f8fa;
	color: #111827;
	text-align: center
}

.pcgh-nav__list > li > .sub-menu > li > a:hover,
.pcgh-nav__list > li > .sub-menu > li.current-menu-item > a,
.pcgh-nav__list > li > .sub-menu > li.current_page_item > a {
	background: var(--pcgh-primary);
	color: #fff
}

.pcgh-nav__list > li > .sub-menu .pcgh-nav__icon {
	width: 30px;
	height: 30px;
	min-width: 30px;
	min-height: 30px;
	color: var(--pcgh-primary);
	stroke-width: 2.35
}

.pcgh-nav__list > li > .sub-menu > li > a:hover .pcgh-nav__icon,
.pcgh-nav__list > li > .sub-menu > li.current-menu-item > a .pcgh-nav__icon,
.pcgh-nav__list > li > .sub-menu > li.current_page_item > a .pcgh-nav__icon {
	color: #fff
}

.pcgh-nav__list > li > .sub-menu .pcgh-nav__text {
	display: flex;
	flex-direction: column;
	align-items: center;
	line-height: 1.2
}

.pcgh-nav__list > li > .sub-menu .pcgh-nav__label {
	font-size: 14px;
	font-weight: 700
}

html:not([data-pcgh-theme-resolved="light"]) .pcgh-nav__list > li > .sub-menu {
	background: rgba(15,23,42,.98);
	border-color: rgba(148,163,184,.18);
	box-shadow: 0 22px 60px rgba(0,0,0,.35)
}

html:not([data-pcgh-theme-resolved="light"]) .pcgh-nav__list > li > .sub-menu > li > a {
	background: rgba(255,255,255,.06);
	color: rgba(248,250,252,.94)
}

html:not([data-pcgh-theme-resolved="light"]) .pcgh-nav__list > li > .sub-menu > li > a:hover,
html:not([data-pcgh-theme-resolved="light"]) .pcgh-nav__list > li > .sub-menu > li.current-menu-item > a,
html:not([data-pcgh-theme-resolved="light"]) .pcgh-nav__list > li > .sub-menu > li.current_page_item > a {
	background: var(--pcgh-primary);
	color: #fff
}

@media (max-width: 1180px) {
	.pcgh-nav__list > li > .sub-menu {
		grid-template-columns: repeat(4,minmax(0,1fr));
		padding: 22px
	}
}

@media (max-width: 768px) {
	.pcgh-nav__list > li > .sub-menu {
		left: 8px;
		right: 8px;
		width: auto;
		grid-template-columns: repeat(2,minmax(0,1fr));
		gap: 10px;
		padding: 12px;
		transform: translateY(8px)
	}

	.pcgh-nav__list > li:hover > .sub-menu,
	.pcgh-nav__list > li:focus-within > .sub-menu {
		transform: translateY(0)
	}

	.pcgh-nav__list > li > .sub-menu > li > a {
		min-height: 84px;
		padding: 12px 8px
	}
}

.pcgh-search {
	flex: 1;
	max-width: 340px;
	margin-left: auto;
	position: relative
}

.pcgh-search__icon {
	position: absolute;
	left: 12px;
	top: 50%;
	transform: translateY(-50%);
	color: var(--pcgh-text-3);
	pointer-events: none
}

.pcgh-search input {
	width: 100%;
	height: 36px;
	padding: 0 12px 0 36px;
	border: 1px solid var(--pcgh-border);
	background: var(--pcgh-surface);
	color: var(--pcgh-text);
	border-radius: 8px;
	outline: none;
	transition: .2s
}

.pcgh-search input::placeholder {
	color: var(--pcgh-text-3)
}

.pcgh-search input:focus {
	border-color: var(--pcgh-primary)
}

.pcgh-header__actions {
	display: flex;
	align-items: center;
	gap: 8px
}

.pcgh-theme-switch {
	position: relative
}

.pcgh-theme-switch__menu {
	position: absolute;
	top: calc(100% + 8px);
	right: 0;
	z-index: 30;
	display: none;
	min-width: 140px;
	padding: 6px;
	border: 1px solid var(--pcgh-border);
	border-radius: 10px;
	background: var(--pcgh-surface);
	box-shadow: var(--pcgh-shadow)
}

.pcgh-theme-switch.is-open .pcgh-theme-switch__menu {
	display: grid;
	gap: 4px
}

.pcgh-theme-switch__menu button {
	display: flex;
	align-items: center;
	gap: 8px;
	width: 100%;
	padding: 8px 10px;
	border: 0;
	border-radius: 8px;
	background: transparent;
	color: var(--pcgh-text-2);
	font: inherit;
	font-size: 13px;
	white-space: nowrap;
	cursor: pointer;
	text-align: left
}

.pcgh-theme-switch__menu button:hover,
.pcgh-theme-switch__menu button.is-active {
	background: var(--pcgh-surface-2);
	color: var(--pcgh-text)
}

html[data-pcgh-theme-resolved="light"] .pcgh-theme-switch__menu {
	background: #fff;
	border-color: rgba(226,232,240,.95);
	box-shadow: 0 16px 38px rgba(15,23,42,.12)
}

html[data-pcgh-theme-resolved="light"] .pcgh-theme-switch__menu button {
	color: #475569
}

html[data-pcgh-theme-resolved="light"] .pcgh-theme-switch__menu button:hover,
html[data-pcgh-theme-resolved="light"] .pcgh-theme-switch__menu button.is-active {
	background: rgba(var(--pcgh-primary-rgb),.1);
	color: var(--pcgh-primary)
}

html:not([data-pcgh-theme-resolved="light"]) .pcgh-theme-switch__menu {
	background: rgba(15,23,42,.98);
	border-color: rgba(148,163,184,.22);
	box-shadow: 0 18px 44px rgba(0,0,0,.36)
}

html:not([data-pcgh-theme-resolved="light"]) .pcgh-theme-switch__menu button {
	color: rgba(226,232,240,.76)
}

html:not([data-pcgh-theme-resolved="light"]) .pcgh-theme-switch__menu button:hover,
html:not([data-pcgh-theme-resolved="light"]) .pcgh-theme-switch__menu button.is-active {
	background: rgba(var(--pcgh-primary-rgb),.18);
	color: #fff
}

.pcgh-theme-switch__menu button i[data-lucide] {
	width: 15px;
	height: 15px
}

.pcgh-mobile-search-btn {
	display: none!important
}

.pcgh-icon-btn {
	position: relative;
	width: 36px;
	height: 36px;
	border-radius: 8px;
	color: var(--pcgh-text-2);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: .2s
}

.pcgh-icon-btn:hover {
	background: var(--pcgh-surface);
	color: var(--pcgh-text)
}

.pcgh-icon-btn i[data-lucide] {
	width: 18px;
	height: 18px
}

.pcgh-notice-dot {
	position: absolute;
	top: 6px;
	right: 6px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #ef4444;
	box-shadow: 0 0 0 2px var(--pcgh-bg),0 0 12px rgba(239,68,68,.9);
	animation: pcgh-notice-pulse 1.2s ease-in-out infinite
}

@keyframes pcgh-notice-pulse {
	0%,100% {
		transform: scale(1);
		opacity: 1
	}

	50% {
		transform: scale(1.45);
		opacity: .55
	}
}

.pcgh-avatar {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: linear-gradient(135deg,#8b5cf6,#ec4899);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #fff
}

/* 顶部「登录 / 注册」按钮：紧凑实心渐变胶囊 */
.pcgh-header__login-btn {
	height: 36px;
	padding: 0 18px;
	border-radius: 8px;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 13px;
	font-weight: 600;
	line-height: 1;
	cursor: pointer;
	background: var(--pcgh-primary);
	color: #fff;
	border: 1px solid var(--pcgh-primary);
	white-space: nowrap;
	box-shadow: none;
	transition: .18s ease
}

.pcgh-header__login-btn:hover {
	background: color-mix(in srgb,var(--pcgh-primary) 88%,#fff 12%);
	border-color: color-mix(in srgb,var(--pcgh-primary) 88%,#fff 12%);
	filter: none;
	transform: translateY(-1px);
	color: #fff
}

.pcgh-header__login-btn:active {
	transform: translateY(0);
	filter: none
}

.pcgh-header__login-btn i[data-lucide],
.pcgh-header__login-btn svg {
	width: 16px;
	height: 16px;
	display: none;
	flex-shrink: 0
}

html:not([data-pcgh-theme-resolved="light"]) .pcgh-header__login-btn {
	background: var(--pcgh-primary);
	border-color: var(--pcgh-primary);
	color: #fff
}

html:not([data-pcgh-theme-resolved="light"]) .pcgh-header__login-btn:hover {
	background: color-mix(in srgb,var(--pcgh-primary) 88%,#fff 12%);
	border-color: color-mix(in srgb,var(--pcgh-primary) 88%,#fff 12%);
	color: #fff
}

/* ===== Hero ===== */

.pcgh-section {
	margin-bottom: 20px
}

/* ===== Banner ===== */
.pcgh-banner-section {
	padding-top: 0
}

.pcgh-banner {
	position: relative;
	height: 420px;
	border-radius: var(--pcgh-radius-lg);
	overflow: hidden;
	box-shadow: var(--pcgh-shadow)
}

.pcgh-banner__slides {
	position: relative;
	width: 100%;
	height: 100%
}

.pcgh-banner__slide {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	opacity: 0;
	transition: opacity .6s ease;
	display: flex;
	align-items: center
}

.pcgh-banner__slide.is-active {
	opacity: 1
}

.pcgh-banner__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg,rgba(15,20,25,.92) 0%,rgba(15,20,25,.55) 50%,rgba(15,20,25,.2) 100%)
}

.pcgh-banner__content {
	position: relative;
	padding: 48px;
	max-width: 560px
}

.pcgh-banner__title {
	font-size: 42px;
	font-weight: 800;
	margin-bottom: 6px
}

.pcgh-banner__subtitle {
	color: var(--pcgh-text-2);
	font-size: 16px;
	margin: 0 0 16px
}

.pcgh-banner__tags {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	margin-bottom: 14px
}

.pcgh-tag {
	display: inline-flex;
	align-items: center;
	padding: 4px 10px;
	border-radius: 14px;
	font-size: 12px;
	background: rgba(59,130,246,.15);
	border: 1px solid rgba(59,130,246,.3);
	color: #93c5fd
}

.pcgh-banner__desc {
	color: var(--pcgh-text-2);
	margin: 0 0 20px;
	font-size: 14px;
	line-height: 1.7;
	max-width: 480px
}

.pcgh-banner__btns {
	display: flex;
	gap: 10px
}

.pcgh-banner__nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: rgba(0,0,0,.5);
	color: #fff;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: .2s
}

.pcgh-banner__nav:hover {
	background: var(--pcgh-primary)
}

.pcgh-banner__nav--prev {
	left: 16px
}

.pcgh-banner__nav--next {
	right: 16px
}

.pcgh-banner__nav i[data-lucide] {
	width: 20px;
	height: 20px
}

.pcgh-banner__dots {
	position: absolute;
	left: 50%;
	bottom: 14px;
	transform: translateX(-50%);
	display: flex;
	gap: 6px;
	z-index: 2
}

.pcgh-banner__dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: rgba(255,255,255,.4);
	transition: .2s
}

.pcgh-banner__dot.is-active {
	background: #fff;
	width: 22px;
	border-radius: 4px
}

/* ===== Buttons ===== */
.pcgh-btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 10px 20px;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 500;
	transition: .2s;
	border: 1px solid transparent
}

.pcgh-btn i[data-lucide] {
	width: 16px;
	height: 16px
}

.pcgh-btn--primary {
	background: var(--pcgh-primary);
	color: #fff
}

.pcgh-btn--primary:hover {
	background: var(--pcgh-primary-2);
	color: #fff
}

.pcgh-btn--ghost {
	background: rgba(255,255,255,.08);
	color: var(--pcgh-text);
	border-color: rgba(255,255,255,.12)
}

.pcgh-btn--ghost:hover {
	background: rgba(255,255,255,.14);
	color: var(--pcgh-text)
}

.pcgh-btn.is-disabled[data-pcgh-signed] {
	opacity: .6;
	cursor: default;
	transform: none;
	box-shadow: none
}

.pcgh-btn.is-disabled[data-pcgh-signed]:hover,
.pcgh-btn.is-disabled[data-pcgh-signed]:focus-visible {
	background: rgba(255,255,255,.08);
	color: var(--pcgh-text);
	border-color: rgba(255,255,255,.12);
	transform: none;
	filter: none;
	box-shadow: none
}

.pcgh-btn--full {
	width: 100%;
	justify-content: center
}

/* ===== 6 Entries ===== */
.pcgh-entries {
	display: grid;
	grid-template-columns: repeat(6,1fr);
	gap: 12px;
	background: var(--pcgh-surface);
	border: 1px solid var(--pcgh-border);
	border-radius: var(--pcgh-radius);
	padding: 16px
}

.pcgh-entry {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 8px;
	border-radius: 8px;
	transition: .2s
}

.pcgh-entry:hover {
	background: var(--pcgh-surface-2);
	color: var(--pcgh-text)
}

.pcgh-entry__icon {
	width: 42px;
	height: 42px;
	border-radius: 10px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0
}

.pcgh-entry__icon i[data-lucide] {
	width: 22px;
	height: 22px
}

.pcgh-entry__text {
	display: flex;
	flex-direction: column;
	line-height: 1.3;
	min-width: 0
}

.pcgh-entry__text strong {
	font-size: 14px;
	color: var(--pcgh-text)
}

.pcgh-entry__text small {
	font-size: 12px;
	color: var(--pcgh-text-3);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis
}

/* ===== Layout ===== */
.pcgh-layout {
	display: grid;
	grid-template-columns: minmax(0,1fr) var(--pcgh-sidebar-w);
	gap: 20px;
	align-items: flex-start
}

/* ===== Card section ===== */
.pcgh-card-section {
	background: var(--pcgh-surface);
	border: 1px solid var(--pcgh-border);
	border-radius: var(--pcgh-radius);
	padding: 18px;
	margin-bottom: 20px
}

.pcgh-card-section__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 16px
}

.pcgh-card-section__head h2 {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 16px
}

.pcgh-card-section__head--tabs {
	align-items: center
}

.pcgh-card-section__icon {
	display: inline-flex;
	width: 24px;
	height: 24px;
	align-items: center;
	justify-content: center
}

.pcgh-card-section__icon i[data-lucide] {
	width: 18px;
	height: 18px
}

.pcgh-more {
	display: inline-flex;
	align-items: center;
	gap: 2px;
	color: var(--pcgh-text-3);
	font-size: 12px
}

.pcgh-more:hover {
	color: var(--pcgh-primary)
}

.pcgh-more i[data-lucide] {
	width: 14px;
	height: 14px
}

/* ===== Game grid ===== */
.pcgh-game-grid {
	display: grid;
	grid-template-columns: repeat(6,1fr);
	gap: 12px
}

.pcgh-game-card {
	display: flex;
	flex-direction: column;
	background: var(--pcgh-surface-2);
	border-radius: 8px;
	overflow: hidden;
	transition: .2s;
	color: var(--pcgh-text)
}

.pcgh-game-card:hover {
	transform: translateY(-2px);
	box-shadow: var(--pcgh-shadow);
	color: var(--pcgh-text)
}

.pcgh-game-card__cover {
	position: relative;
	width: 100%;
	aspect-ratio: 4/2.5;
	background: #0f1419 center/cover no-repeat
}

.pcgh-game-card__cover,
.pcgh-new-card__cover,
.pcgh-libcard__cover,
.pcgh-home-new__cover,
.pcgh-special-game-card__cover,
.pcgh-special-tax-item__cover,
.pcgh-single-related__cover,
.pcgh-ghero__cover,
.pcgh-hero__cover,
.pcgh-game-hero__cover,
.pcgh-dl-block__cover,
.pcgh-dlc__cover,
.pcgh-rel-row__cover,
.pcgh-news-item__cover,
.pcgh-rank-row__cover,
.pcgh-uc-table__cover,
.pcgh-user-table__cover,
.pcgh-uc-paid-cover {
	background-size: cover !important;
	background-position: center center !important;
	background-repeat: no-repeat !important
}

.pcgh-game-card__cover img,
.pcgh-new-card__cover img,
.pcgh-libcard__cover img,
.pcgh-home-new__cover img,
.pcgh-special-game-card__cover img,
.pcgh-special-tax-item__cover img,
.pcgh-single-related__cover img,
.pcgh-ghero__cover img,
.pcgh-hero__cover img,
.pcgh-game-hero__cover img,
.pcgh-dl-block__cover img,
.pcgh-dlc__cover img,
.pcgh-rel-row__cover img,
.pcgh-news-item__cover img,
.pcgh-rank-row__cover img,
.pcgh-uc-table__cover img,
.pcgh-user-table__cover img,
.pcgh-uc-paid-cover img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover
}

.pcgh-game-card__body {
	padding: 8px 10px
}

.pcgh-game-card__title {
	font-size: 15px;
	font-weight: 600;
	line-height: 1.4;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	margin-bottom: 4px
}

.pcgh-game-card__meta {
	display: flex;
	justify-content: space-between;
	color: var(--pcgh-text-3);
	font-size: 13px
}

.pcgh-badge {
	position: absolute;
	top: 6px;
	left: 6px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 3px;
	min-height: 20px;
	padding: 3px 7px;
	border-radius: 5px;
	font-size: 11px;
	font-weight: 700;
	line-height: 1;
	color: #fff
}

.pcgh-badge--new {
	background: #10b981
}

.pcgh-badge--today {
	background: linear-gradient(135deg,#22c55e,#06b6d4);
	box-shadow: 0 4px 10px -2px rgba(34,197,94,.45)
}

.pcgh-badge--hot {
	background: linear-gradient(135deg,#ef4444 0%,#f97316 100%);
	box-shadow: 0 4px 10px -2px rgba(239,68,68,.5)
}

.pcgh-badge--hot i[data-lucide] {
	width: 12px;
	height: 12px;
	stroke-width: 2.4;
	fill: currentColor;
	flex-shrink: 0
}

.pcgh-badge--hot i.ti {
	font-size: 13px!important;
	line-height: 1;
	flex-shrink: 0
}

.pcgh-badge--rec {
	background: #f59e0b
}

.pcgh-score {
	position: absolute;
	bottom: 6px;
	right: 6px;
	padding: 1px 6px;
	border-radius: 4px;
	font-size: 12px;
	font-weight: 700;
	background: rgba(0,0,0,.7)
}

/* ===== Specials ===== */
.pcgh-special-grid {
	display: grid;
	grid-template-columns: repeat(var(--pcgh-special-cols,3),minmax(0,1fr));
	gap: 12px
}

.pcgh-special {
	position: relative;
	height: 160px;
	border-radius: 8px;
	overflow: hidden;
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: flex-end;
	color: #fff;
	transition: .2s
}

.pcgh-special:hover {
	transform: translateY(-2px);
	color: #fff
}

.pcgh-special__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg,rgba(0,0,0,0) 30%,rgba(0,0,0,.85) 100%)
}

.pcgh-special__content {
	position: relative;
	padding: 12px;
	width: 100%
}

.pcgh-special__content h3 {
	font-size: 15px;
	margin-bottom: 2px
}

.pcgh-special__content p {
	font-size: 12px;
	color: rgba(255,255,255,.8);
	margin: 0
}

.pcgh-special__content small {
	display: inline-block;
	margin-top: 4px;
	padding: 2px 6px;
	border-radius: 4px;
	background: rgba(255,255,255,.18);
	font-size: 10px
}

.pcgh-home-specials-section .pcgh-container {
	padding: 0 16px;
	background: transparent;
	border: 0;
	border-radius: 0;
	box-shadow: none
}

.pcgh-home-specials-section .pcgh-card-section__head {
	margin-bottom: 12px
}

.pcgh-home-specials-section .pcgh-card-section__head h2 {
	font-size: 25px;
	font-weight: 700;
	color: #f3f6fb
}

.pcgh-home-new-section .pcgh-card-section__head h2,
.pcgh-home-all-section .pcgh-card-section__head h2 {
	font-size: 25px
}

.pcgh-home-new-section .pcgh-card-section__head h2,
.pcgh-home-new-section .pcgh-card-section__icon {
	color: #ef4444!important
}

.pcgh-home-new-section .pcgh-card-section__icon,
.pcgh-home-all-section .pcgh-card-section__icon,
.pcgh-home-specials-section .pcgh-card-section__icon {
	width: 25px;
	height: 25px;
	font-size: 25px
}

.pcgh-home-new-section .pcgh-card-section__icon :where(i[data-lucide],svg[data-lucide],.lucide,.ti,[class^="ti-"],[class*=" ti-"]),
.pcgh-home-all-section .pcgh-card-section__icon :where(i[data-lucide],svg[data-lucide],.lucide,.ti,[class^="ti-"],[class*=" ti-"]),
.pcgh-home-specials-section .pcgh-card-section__icon :where(i[data-lucide],svg[data-lucide],.lucide,.ti,[class^="ti-"],[class*=" ti-"]) {
	width: 25px!important;
	height: 25px!important;
	font-size: 25px!important
}

.pcgh-home-specials-section .pcgh-more {
	color: #aeb9ca
}

.pcgh-home-specials-section .pcgh-more:hover {
	color: #fff
}

.pcgh-home-specials {
	gap: 10px
}

.pcgh-home-specials .pcgh-special {
	height: 132px;
	border-radius: 10px;
	box-shadow: inset 0 0 0 1px rgba(255,255,255,.03)
}

.pcgh-home-specials .pcgh-special__overlay {
	background: linear-gradient(180deg,rgba(12,18,28,.16) 0%,rgba(10,14,22,.72) 100%)
}

.pcgh-home-specials .pcgh-special__content {
	padding: 14px 12px 12px
}

.pcgh-home-specials .pcgh-special__content h3 {
	font-size: 15px;
	font-weight: 700;
	line-height: 1.35;
	margin: 0 0 4px;
	color: #fff;
	text-shadow: 0 2px 8px rgba(0,0,0,.35)
}

.pcgh-home-specials .pcgh-special__content p {
	font-size: 12px;
	line-height: 1.4;
	color: rgba(232,238,247,.78);
	margin: 0 0 8px;
	display: -webkit-box;
	line-clamp: 1;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	overflow: hidden
}

.pcgh-home-specials .pcgh-special__content small {
	margin-top: 0;
	padding: 3px 7px;
	border-radius: 5px;
	background: linear-gradient(180deg,#3b82f6 0%,#2563eb 100%);
	color: #fff;
	font-size: 10px;
	font-weight: 700;
	box-shadow: 0 4px 10px rgba(37,99,235,.28)
}

.pcgh-home-specials .pcgh-special:hover {
	transform: translateY(-3px);
	border-color: rgba(255,255,255,.16)
}

.pcgh-specials-page {
	position: relative;
	min-height: 0;
	padding: 36px 0 38px;
	background:
		radial-gradient(circle at 50% 0,rgba(37,99,235,.16),transparent 34%),
		linear-gradient(180deg,#08111d 0%,#07101b 48%,#050b12 100%);
	color: #fff;
	overflow: hidden
}
.pcgh-specials-page::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg,rgba(5,10,16,.5),rgba(5,10,16,.88)),url("../images/banner-default.jpg") center top/cover no-repeat;
	opacity: .36;
	pointer-events: none
}
.pcgh-specials-hero {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	height: 220px;
	background: linear-gradient(180deg,rgba(15,23,42,.08),rgba(5,10,16,.88));
	pointer-events: none
}
.pcgh-specials-page .pcgh-container {
	position: relative;
	z-index: 1
}
.pcgh-specials-head {
	margin-bottom: 18px
}
.pcgh-specials-head .pcgh-breadcrumb {
	margin-bottom: 18px
}
.pcgh-specials-head h1 {
	margin: 0 0 10px;
	font-size: 32px;
	line-height: 1.2;
	font-weight: 800;
	color: #fff
}
.pcgh-specials-head p {
	margin: 0;
	font-size: 15px;
	color: rgba(226,232,240,.78)
}
.pcgh-specials-grid {
	display: grid;
	grid-template-columns: repeat(4,minmax(0,1fr));
	gap: 16px
}
.pcgh-specials-card {
	position: relative;
	min-height: 220px;
	border-radius: 8px;
	overflow: hidden;
	background: #0f1724 center/cover no-repeat;
	box-shadow: 0 18px 42px rgba(0,0,0,.22),inset 0 1px 0 rgba(255,255,255,.04);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 18px;
	color: #fff;
	transition: transform .2s ease,border-color .2s ease,box-shadow .2s ease
}
.pcgh-specials-card::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg,rgba(3,7,18,.08) 0%,rgba(3,7,18,.42) 42%,rgba(3,7,18,.9) 100%),
		linear-gradient(90deg,rgba(3,7,18,.72),rgba(3,7,18,.2));
	z-index: 0
}
.pcgh-specials-card:hover {
	transform: translateY(-4px);
	border-color: rgba(59,130,246,.46);
	box-shadow: 0 22px 48px rgba(0,0,0,.34),0 0 0 1px rgba(59,130,246,.12);
	color: #fff
}
.pcgh-specials-card__glow {
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 14% 16%,rgba(59,130,246,.28),transparent 24%);
	z-index: 1;
	pointer-events: none
}
.pcgh-specials-card__body {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-bottom: 16px
}
.pcgh-specials-card__body strong {
	font-size: 20px;
	line-height: 1.25;
	font-weight: 800
}
.pcgh-specials-card__body em {
	font-style: normal;
	font-size: 14px;
	line-height: 1.5;
	color: rgba(226,232,240,.84)
}
.pcgh-specials-card__body small {
	font-size: 13px;
	color: #60a5fa;
	font-weight: 700
}
.pcgh-specials-card__btn {
	position: relative;
	z-index: 2;
	width: max-content;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	height: 34px;
	padding: 0 14px;
	border-radius: 999px;
	background: rgba(15,23,42,.72);
	color: rgba(255,255,255,.88);
	font-size: 13px;
	font-weight: 600;
	backdrop-filter: blur(10px);
	box-shadow: inset 0 0 0 1px rgba(255,255,255,.08)
}
.pcgh-specials-card__btn i[data-lucide] {
	width: 14px;
	height: 14px
}
.pcgh-specials-empty {
	grid-column: 1/-1;
	padding: 48px 20px;
	border-radius: 12px;
	background: rgba(15,23,42,.72);
	color: var(--pcgh-text-2);
	text-align: center
}
.pcgh-specials-contact {
	margin: 30px 0 0;
	text-align: center;
	color: rgba(148,163,184,.82);
	font-size: 14px
}
.pcgh-specials-contact a {
	color: #60a5fa;
	margin-left: 4px
}

.pcgh-special-detail-page {
	position: relative;
	min-height: 0;
	padding: 22px 0 38px;
	background: #050d17;
	color: #fff;
	overflow: hidden
}
.pcgh-special-detail-bg {
	position: absolute;
	inset: 0;
	background: center top/cover no-repeat;
	opacity: .16;
	filter: blur(1px);
	transform: scale(1.02);
	pointer-events: none
}
.pcgh-special-detail-page::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 50% 4%,rgba(37,99,235,.18),transparent 36%),
		linear-gradient(180deg,rgba(5,13,23,.86) 0%,rgba(5,13,23,.96) 44%,#050d17 100%);
	pointer-events: none
}
.pcgh-special-detail-page .pcgh-container {
	position: relative;
	z-index: 1;
	max-width: 1240px;
	background: rgba(7,17,29,.7);
	border: 1px solid rgba(148,163,184,.08);
	box-shadow: 0 24px 70px rgba(0,0,0,.22);
	padding: 18px 24px 24px
}
.pcgh-special-detail-head {
	text-align: center;
	margin-bottom: 26px
}
.pcgh-special-detail-head .pcgh-breadcrumb {
	text-align: left;
	margin: 0 0 20px
}
.pcgh-special-detail-head h1 {
	margin: 0 0 10px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	font-size: 30px;
	line-height: 1.2;
	font-weight: 800;
	color: #fff
}
.pcgh-special-detail-head h1 span {
	width: 28px;
	height: 28px;
	border-radius: 8px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg,#2563eb,#3b82f6);
	box-shadow: 0 10px 24px rgba(37,99,235,.28)
}
.pcgh-special-detail-head p {
	max-width: 720px;
	margin: 0 auto;
	font-size: 14px;
	line-height: 1.7;
	color: rgba(203,213,225,.82)
}
.pcgh-special-detail-grid {
	display: grid;
	grid-template-columns: repeat(5,minmax(0,1fr));
	gap: 16px
}
.pcgh-special-game-card {
	display: flex;
	flex-direction: column;
	min-width: 0;
	overflow: hidden;
	border-radius: 7px;
	background: rgba(12,24,39,.92);
	border: 1px solid rgba(148,163,184,.11);
	color: #fff;
	box-shadow: 0 16px 34px rgba(0,0,0,.18);
	transition: transform .18s ease,border-color .18s ease,box-shadow .18s ease
}
.pcgh-special-game-card:hover {
	transform: translateY(-3px);
	border-color: rgba(59,130,246,.4);
	box-shadow: 0 22px 46px rgba(0,0,0,.3);
	color: #fff
}
.pcgh-special-game-card__cover {
	display: block;
	width: 100%;
	aspect-ratio: 4/2.6;
	background: #111827 center/cover no-repeat
}
.pcgh-special-game-card__body {
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding: 12px 12px 13px;
	min-height: 132px
}
.pcgh-special-game-card__body strong {
	font-size: 15px;
	line-height: 1.35;
	font-weight: 800;
	color: #fff;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	line-clamp: 1;
	-webkit-box-orient: vertical;
	overflow: hidden
}
.pcgh-special-game-card__body em {
	font-style: normal;
	font-size: 12px;
	line-height: 1.55;
	color: rgba(203,213,225,.74);
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden
}
.pcgh-special-game-card__meta {
	margin-top: auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	min-height: 18px
}
.pcgh-special-game-card__body small {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	color: #93c5fd;
	font-size: 12px;
	font-weight: 700
}
.pcgh-special-game-card__body b {
	margin-left: auto;
	color: rgba(226,232,240,.78);
	font-size: 12px;
	line-height: 1;
	font-weight: 700;
	white-space: nowrap
}
.pcgh-special-game-card__body small i[data-lucide] {
	width: 14px;
	height: 14px;
	fill: currentColor
}
.pcgh-special-detail-pager {
	margin-top: 26px;
	display: flex;
	justify-content: center
}
.pcgh-special-detail-pager .page-numbers {
	min-width: 34px;
	height: 34px;
	padding: 0 10px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin: 0 4px;
	border-radius: 6px;
	background: rgba(15,23,42,.82);
	border: 1px solid rgba(148,163,184,.12);
	color: rgba(226,232,240,.86);
	font-size: 13px
}
.pcgh-special-detail-pager .page-numbers.current {
	background: #2563eb;
	border-color: #2563eb;
	color: #fff;
	box-shadow: 0 10px 24px rgba(37,99,235,.32)
}
.pcgh-special-detail-pager .page-numbers:hover {
	border-color: rgba(59,130,246,.6);
	color: #fff
}
.pcgh-special-detail-empty {
	padding: 60px 20px;
	text-align: center;
	border-radius: 10px;
	background: rgba(15,23,42,.72);
	color: rgba(203,213,225,.78)
}

.pcgh-special-tax-page {
	padding: 0 0 38px;
	background: transparent
}
.pcgh-special-tax-page .pcgh-container {
	max-width: 1240px;
	padding: 18px;
	border-radius: 0;
	background: transparent;
	border-color: transparent;
	box-shadow: none
}
.pcgh-special-tax-breadcrumb {
	margin-bottom: 14px;
	color: rgba(148,163,184,.9);
	font-size: 13px
}
.pcgh-special-tax-breadcrumb .pcgh-breadcrumb {
	margin: 0
}
.pcgh-special-tax-hero {
	position: relative;
	min-height: 250px;
	border-radius: 8px;
	overflow: hidden;
	background: #0f172a center/cover no-repeat;
}
.pcgh-special-tax-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg,rgba(6,16,28,.96) 0%,rgba(6,16,28,.76) 38%,rgba(6,16,28,.22) 100%)
}
.pcgh-special-tax-hero__content {
	position: relative;
	z-index: 1;
	max-width: 680px;
	padding: 42px 34px
}
.pcgh-special-tax-hero__content h1 {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 14px;
	margin: 0 0 16px;
	color: #fff;
	font-size: 32px;
	line-height: 1.2;
	font-weight: 900
}
.pcgh-special-tax-hero__content h1 span {
	display: inline-flex;
	align-items: center;
	height: 32px;
	padding: 0 12px;
	border-radius: 6px;
	background: rgb(72 169 255 / 16%);
	color: #1677ff;
	font-size: 13px;
	font-weight: 800
}
.pcgh-special-tax-hero__content p {
	max-width: 560px;
	margin: 0;
	color: rgba(226,232,240,.86);
	font-size: 14px;
	line-height: 1.8
}
.pcgh-special-tax-hero__stats {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 24px
}
.pcgh-special-tax-hero__stats span {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 8px 12px;
	border-radius: 6px;
	background: rgba(15,23,42,.72);
	color: rgba(203,213,225,.9);
	font-size: 12px;
	font-weight: 700
}
.pcgh-special-tax-hero__stats i[data-lucide] {
	width: 15px;
	height: 15px;
	color: #3b82f6
}
.pcgh-special-tax-hero__stats span:last-child i[data-lucide] {
	color: #fbbf24;
	fill: currentColor
}
.pcgh-special-tax-toolbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	margin-top: 14px;
	padding: 12px;
	border-radius: 8px;
	background: rgba(10,24,39,.92);
	border: 1px solid rgba(148,163,184,.08)
}
.pcgh-special-tax-filter {
	display: flex;
	flex-wrap: wrap;
	gap: 8px
}
.pcgh-special-tax-filter a,
.pcgh-special-tax-filter span {
	display: inline-flex;
	align-items: center;
	height: 32px;
	padding: 0 14px;
	border-radius: 5px;
	color: rgba(203,213,225,.82);
	font-size: 13px;
	text-decoration: none
}
.pcgh-special-tax-filter a:hover,
.pcgh-special-tax-filter .is-active {
	background: #1677ff;
	color: #fff
}
.pcgh-special-tax-sort {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 0 10px;
	height: 32px;
	border-radius: 5px;
	background: rgba(15,23,42,.7);
	color: rgba(203,213,225,.82);
	font-size: 12px;
	white-space: nowrap
}
.pcgh-special-tax-sort i[data-lucide] {
	width: 14px;
	height: 14px
}
.pcgh-special-tax-list {
	margin-top: 14px;
	border-radius: 8px;
	overflow: hidden;
	border: 1px solid rgba(148,163,184,.08);
	background: rgba(8,19,32,.72)
}
.pcgh-special-tax-item {
	display: grid;
	grid-template-columns: 176px minmax(0,1fr) 160px 132px;
	align-items: center;
	gap: 22px;
	padding: 13px 16px;
	border-bottom: 1px solid rgba(148,163,184,.08)
}
.pcgh-special-tax-item:last-child {
	border-bottom: 0
}
.pcgh-special-tax-item__cover {
	display: block;
	width: 100%;
	aspect-ratio: 16/7.8;
	border-radius: 6px;
	background: #111827 center/cover no-repeat
}
.pcgh-special-tax-item__main {
	min-width: 0
}
.pcgh-special-tax-item__main h2 {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 0 0 8px;
	font-size: 16px;
	line-height: 1.35
}
.pcgh-special-tax-item__main h2 a {
	color: #fff;
	text-decoration: none
}
.pcgh-special-tax-item__main h2 a:hover {
	color: #60a5fa
}
.pcgh-special-tax-item__main h2 span {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	color: #fbbf24;
	font-size: 12px;
	font-weight: 800
}
.pcgh-special-tax-item__main h2 i[data-lucide] {
	width: 13px;
	height: 13px;
	fill: currentColor
}
.pcgh-special-tax-item__main p {
	margin: 0;
	color: rgba(148,163,184,.88);
	font-size: 13px;
	line-height: 1.6;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis
}
.pcgh-special-tax-item__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-top: 8px
}
.pcgh-special-tax-item__tags span {
	padding: 3px 8px;
	border-radius: 3px;
	background: rgba(148,163,184,.09);
	color: rgba(203,213,225,.74);
	font-size: 11px
}
.pcgh-special-tax-item__meta {
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding-left: 18px;
	border-left: 1px solid rgba(148,163,184,.1);
	color: rgba(148,163,184,.86);
	font-size: 12px;
	line-height: 1.3
}
.pcgh-special-tax-item__action {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 8px
}
.pcgh-special-tax-item__action a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	height: 34px;
	border-radius: 5px;
	background: #1677ff;
	color: #fff;
	font-size: 13px;
	font-weight: 800;
	text-decoration: none;
	box-shadow: 0 10px 22px rgba(22,119,255,.28)
}
.pcgh-special-tax-item__action a:hover {
	background: #2b86ff;
	color: #fff
}
.pcgh-special-tax-item__action i[data-lucide] {
	width: 15px;
	height: 15px
}
.pcgh-special-tax-item__action small {
	color: rgba(148,163,184,.82);
	font-size: 11px;
	text-align: center
}
.pcgh-special-tax-item__score {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 4px;
	color: #fbbf24;
	font-size: 12px;
	font-weight: 800;
	text-align: center
}
.pcgh-special-tax-item__score i[data-lucide] {
	width: 13px;
	height: 13px;
	fill: currentColor
}

@media (max-width:1100px) {
	.pcgh-special-tax-item {
		grid-template-columns: 150px minmax(0,1fr) 128px;
		gap: 16px
	}

	.pcgh-special-tax-item__meta {
		display: none
	}
}

@media (max-width:720px) {
	.pcgh-special-tax-page .pcgh-container {
		padding: 12px;
		border-radius: 0
	}

	.pcgh-special-tax-hero {
		min-height: 220px
	}

	.pcgh-special-tax-hero::before {
		background: linear-gradient(180deg,rgba(6,16,28,.9) 0%,rgba(6,16,28,.72) 48%,rgba(6,16,28,.95) 100%)
	}

	.pcgh-special-tax-hero__content {
		padding: 28px 18px
	}

	.pcgh-special-tax-hero__content h1 {
		font-size: 25px;
		gap: 10px
	}

	.pcgh-special-tax-hero__content h1 span {
		height: 28px;
		font-size: 12px
	}

	.pcgh-special-tax-hero__stats {
		gap: 8px;
		margin-top: 18px
	}

	.pcgh-special-tax-hero__stats span {
		padding: 7px 9px
	}

	.pcgh-special-tax-toolbar {
		align-items: flex-start;
		flex-direction: column
	}

	.pcgh-special-tax-filter {
		width: 100%;
		flex-wrap: nowrap;
		overflow-x: auto;
		padding-bottom: 2px
	}

	.pcgh-special-tax-filter a,
	.pcgh-special-tax-filter span {
		flex: 0 0 auto
	}

	.pcgh-special-tax-sort {
		display: none
	}

	.pcgh-special-tax-list {
		display: grid;
		gap: 12px;
		border: 0;
		background: transparent;
		overflow: visible
	}

	.pcgh-special-tax-item {
		grid-template-columns: 1fr;
		gap: 12px;
		padding: 12px;
		border: 1px solid rgba(148,163,184,.08);
		border-radius: 10px;
		background: rgba(8,19,32,.78)
	}

	.pcgh-special-tax-item__cover {
		aspect-ratio: 16/8.2
	}

	.pcgh-special-tax-item__main h2 {
		align-items: flex-start;
		flex-direction: column;
		gap: 6px;
		font-size: 15px
	}

	.pcgh-special-tax-item__main p {
		white-space: normal;
		display: -webkit-box;
		-webkit-line-clamp: 2;
		line-clamp: 2;
		-webkit-box-orient: vertical
	}

	.pcgh-special-tax-item__action {
		align-items: stretch
	}

	.pcgh-special-tax-item__action a {
		height: 38px
	}
}

/* ===== Tabs ===== */
.pcgh-tabs {
	display: flex;
	gap: 4px
}

.pcgh-tabs__item {
	padding: 6px 14px;
	border-radius: 6px;
	color: var(--pcgh-text-2);
	font-size: 13px;
	transition: .2s
}

.pcgh-tabs__item.is-active {
	background: var(--pcgh-primary);
	color: #fff
}

.pcgh-tabs__item:not(.is-active):hover {
	background: var(--pcgh-surface-2);
	color: var(--pcgh-text)
}

/* ===== News grid ===== */
.pcgh-news-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px
}

.pcgh-news-panels {
	display: contents
}

.pcgh-news-panel {
	display: none
}

.pcgh-news-panel.is-active {
	display: flex
}

.pcgh-news-list,.pcgh-update-list {
	display: flex;
	flex-direction: column;
	gap: 8px
}

.pcgh-empty--inline {
	padding: 20px 12px;
	border: 1px dashed var(--pcgh-border);
	border-radius: 8px;
	color: var(--pcgh-text-3);
	text-align: center
}

.pcgh-empty--inline i[data-lucide] {
	width: 28px;
	height: 28px;
	margin-bottom: 6px;
	opacity: .5
}

.pcgh-empty--inline p {
	margin: 0;
	font-size: 12px
}

.pcgh-news-item {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 6px;
	border-radius: 6px;
	transition: .2s;
	color: var(--pcgh-text)
}

.pcgh-news-item:hover {
	background: var(--pcgh-surface-2);
	color: var(--pcgh-text)
}

.pcgh-news-item__cover {
	width: 60px;
	height: 40px;
	border-radius: 4px;
	background-size: cover;
	background-position: center;
	flex-shrink: 0
}

.pcgh-news-item__body {
	display: flex;
	flex-direction: column;
	min-width: 0;
	line-height: 1.3;
	gap: 4px
}

.pcgh-news-item__body strong {
	font-size: 13px;
	font-weight: 500;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis
}

.pcgh-news-item__body small {
	color: var(--pcgh-text-3);
	font-size: 11px
}

.pcgh-update-list__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 6px
}

.pcgh-update-list__head h3 {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 14px
}

.pcgh-update-list__head a {
	color: var(--pcgh-text-3);
	font-size: 12px;
	display: inline-flex;
	align-items: center
}

.pcgh-update-list__head a i[data-lucide] {
	width: 12px;
	height: 12px
}

.pcgh-update-item {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 8px;
	background: var(--pcgh-surface-2);
	border-radius: 6px;
	transition: .2s;
	color: var(--pcgh-text)
}

.pcgh-update-item:hover {
	color: var(--pcgh-text);
	background: #252d36
}

.pcgh-update-item__icon {
	width: 32px;
	height: 32px;
	border-radius: 6px;
	background: rgba(16,185,129,.15);
	color: #10b981;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0
}

.pcgh-update-item__body {
	display: flex;
	flex-direction: column;
	min-width: 0;
	gap: 2px
}

.pcgh-update-item__body strong {
	font-size: 13px;
	font-weight: 500;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis
}

.pcgh-update-item__body small {
	color: var(--pcgh-text-3);
	font-size: 11px
}

/* ===== Side cards ===== */
.pcgh-side-card {
	background: var(--pcgh-surface);
	border: 1px solid var(--pcgh-border);
	border-radius: var(--pcgh-radius);
	padding: 16px;
	margin-bottom: 16px
}

.pcgh-side-card__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 12px
}

.pcgh-side-card__head h3 {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 14px
}

.pcgh-side-card__head a {
	color: var(--pcgh-text-3);
	font-size: 12px;
	display: inline-flex;
	align-items: center;
	gap: 2px
}

.pcgh-side-card__head a i[data-lucide] {
	width: 12px;
	height: 12px
}

/* Rank */
.pcgh-rank {
	display: flex;
	flex-direction: column
}

.pcgh-rank-row {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 6px 0;
	color: var(--pcgh-text);
	border-bottom: 1px solid rgba(255,255,255,.04)
}

.pcgh-rank-row:last-child {
	border-bottom: 0
}

.pcgh-rank-row:hover {
	color: var(--pcgh-primary)
}

.pcgh-rank-row__num {
	width: 22px;
	height: 22px;
	border-radius: 4px;
	font-size: 12px;
	font-weight: 700;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0
}

.pcgh-rank-row__num--top {
	background: linear-gradient(135deg,#fbbf24,#f97316);
	color: #fff
}

.pcgh-rank-row__num--normal {
	background: var(--pcgh-surface-2);
	color: var(--pcgh-text-2)
}

.pcgh-rank-row__cover {
	width: 32px;
	height: 32px;
	border-radius: 4px;
	background-size: cover;
	background-position: center;
	flex-shrink: 0
}

.pcgh-rank-row__title {
	flex: 1;
	font-size: 13px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis
}

.pcgh-rank-row__size {
	font-size: 11px;
	color: var(--pcgh-text-3)
}

.pcgh-widget-rank {
	display: flex;
	flex-direction: column;
	gap: 10px
}

.pcgh-widget-rank__item {
	display: grid;
	grid-template-columns: 30px 42px minmax(0,1fr);
	align-items: center;
	gap: 10px;
	color: var(--pcgh-text)
}

.pcgh-widget-rank__item:hover {
	color: var(--pcgh-primary)
}

.pcgh-widget-rank__rank {
	width: 30px;
	height: 30px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
	background: var(--pcgh-surface-2);
	color: var(--pcgh-text-2);
	font-size: 13px;
	font-weight: 800
}

.pcgh-widget-rank__rank.is-top {
	background: transparent;
	font-size: 28px
}

.pcgh-widget-rank__rank.is-top i[data-lucide] {
	fill: currentColor;
	stroke-width: 1.8
}

.pcgh-widget-rank__rank.is-top-1 {
	color: #fbbf24;
	filter: drop-shadow(0 0 8px rgba(251,191,36,.35))
}

.pcgh-widget-rank__rank.is-top-2 {
	color: #cbd5e1;
	filter: drop-shadow(0 0 8px rgba(203,213,225,.28))
}

.pcgh-widget-rank__rank.is-top-3 {
	color: #fb923c;
	filter: drop-shadow(0 0 8px rgba(251,146,60,.32))
}

.pcgh-widget-rank__thumb {
	width: 42px;
	height: 42px;
	border-radius: 6px;
	background-size: cover;
	background-position: center;
	background-color: var(--pcgh-surface-2)
}

.pcgh-widget-rank__body {
	min-width: 0
}

.pcgh-widget-rank__body strong,
.pcgh-widget-rank__body small {
	display: block;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis
}

.pcgh-widget-rank__body strong {
	font-size: 13px;
	font-weight: 700
}

.pcgh-widget-rank__body small {
	margin-top: 3px;
	color: var(--pcgh-text-3);
	font-size: 11px
}

.pcgh-widget-rank__more {
	display: inline-flex;
	justify-content: center;
	width: 100%;
	margin-top: 12px;
	padding: 8px 10px;
	border-radius: 8px;
	background: var(--pcgh-surface-2);
	color: var(--pcgh-text-2);
	font-size: 12px
}

.pcgh-widget-rank__more:hover {
	background: var(--pcgh-primary);
	color: #fff
}

.pcgh-widget-rank__empty {
	margin: 0;
	padding: 18px 0;
	text-align: center;
	color: var(--pcgh-text-3);
	font-size: 13px
}

/* Genre */
.pcgh-genre-grid {
	display: grid;
	grid-template-columns: repeat(4,1fr);
	gap: 8px;
	margin-bottom: 10px
}

.pcgh-genre {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 4px;
	padding: 10px 4px;
	background: var(--pcgh-surface-2);
	border-radius: 6px;
	color: var(--pcgh-text-2);
	transition: .2s
}

.pcgh-genre:hover {
	background: rgba(59,130,246,.15);
	color: var(--pcgh-primary)
}

.pcgh-genre__icon i[data-lucide] {
	width: 18px;
	height: 18px
}

.pcgh-genre__title {
	font-size: 11px
}

.pcgh-genre-more {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 4px;
	width: 100%;
	padding: 8px;
	border: 1px dashed var(--pcgh-border);
	border-radius: 6px;
	color: var(--pcgh-text-3);
	font-size: 12px
}

.pcgh-genre-more:hover {
	color: var(--pcgh-primary);
	border-color: var(--pcgh-primary)
}

/* PC Check */
.pcgh-pcheck {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	background: linear-gradient(135deg,rgba(59,130,246,.18),rgba(139,92,246,.12));
	border-color: rgba(59,130,246,.3)
}

.pcgh-pcheck__body {
	flex: 1;
	min-width: 0
}

.pcgh-pcheck__body h3 {
	font-size: 14px;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 6px
}

.pcgh-pcheck__body p {
	margin: 0 0 10px;
	font-size: 12px;
	color: var(--pcgh-text-2)
}

.pcgh-pcheck__body .pcgh-btn {
	padding: 6px 14px;
	font-size: 12px
}

.pcgh-pcheck__icon {
	color: rgba(59,130,246,.6)
}

/* Community */
.pcgh-comm-row {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 8px 0;
	color: var(--pcgh-text);
	border-bottom: 1px solid rgba(255,255,255,.04)
}

.pcgh-comm-row:last-of-type {
	border-bottom: 0;
	margin-bottom: 8px
}

.pcgh-comm-row:hover {
	color: var(--pcgh-primary)
}

.pcgh-comm-row__avatar {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: linear-gradient(135deg,#8b5cf6,#ec4899);
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0
}

.pcgh-comm-row__avatar i[data-lucide] {
	width: 16px;
	height: 16px
}

.pcgh-comm-row__body {
	flex: 1;
	display: flex;
	flex-direction: column;
	line-height: 1.3;
	min-width: 0
}

.pcgh-comm-row__body strong {
	font-size: 13px;
	font-weight: 500;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis
}

.pcgh-comm-row__body small {
	font-size: 11px;
	color: var(--pcgh-text-3)
}

.pcgh-comm-row__count {
	display: inline-flex;
	align-items: center;
	gap: 2px;
	font-size: 11px;
	color: var(--pcgh-text-3)
}

.pcgh-comm-row__count i[data-lucide] {
	width: 12px;
	height: 12px
}

/* New card variant uses same as game-card; (alias) */
.pcgh-new-card {
	display: flex;
	flex-direction: column;
	background: var(--pcgh-surface-2);
	border-radius: 8px;
	overflow: hidden;
	transition: .2s;
	color: var(--pcgh-text)
}

.pcgh-new-card:hover {
	transform: translateY(-2px);
	box-shadow: var(--pcgh-shadow);
	color: var(--pcgh-text)
}

.pcgh-new-card__cover {
	position: relative;
	width: 100%;
	padding-top: 130%;
	background: #0f1419 center/cover no-repeat
}

.pcgh-new-card__body {
	padding: 8px 10px
}

.pcgh-new-card__title {
	font-size: 13px;
	font-weight: 600;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	margin-bottom: 4px
}

.pcgh-new-card__meta {
	display: flex;
	justify-content: space-between;
	color: var(--pcgh-text-3);
	font-size: 11px
}

/* ===== Partners ===== */
.pcgh-partners {
	margin-top: 20px;
	background: var(--pcgh-surface);
	border-top: 1px solid var(--pcgh-border);
	border-bottom: 1px solid var(--pcgh-border);
	padding: 18px 0
}

.pcgh-partners__inner {
	display: flex;
	align-items: center;
	gap: 24px;
	flex-wrap: wrap
}

.pcgh-partners__label {
	font-size: 14px;
	color: var(--pcgh-text-2);
	flex-shrink: 0
}

.pcgh-partners__list {
	display: flex;
	align-items: center;
	gap: 24px;
	flex-wrap: wrap;
	flex: 1
}

.pcgh-partner {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 32px;
	padding: 0 12px;
	border-radius: 6px;
	background: var(--pcgh-surface-2);
	color: var(--pcgh-text-2);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 1px;
	transition: .2s
}

.pcgh-partner:hover {
	color: var(--pcgh-text);
	background: #2a323c
}

.pcgh-partner img {
	max-height: 18px
}

/* ===== Footer 基础容器（详细样式见文件末尾「Footer 极简版」） ===== */
.pcgh-footer {
	color: var(--pcgh-text-2);
	font-size: 13px
}

/* ===== Single Game ===== */
.pcgh-single-game {
	padding: 24px 0
}

.pcgh-game-hero {
	display: grid;
	grid-template-columns: 280px 1fr;
	gap: 24px;
	background: var(--pcgh-surface);
	border: 1px solid var(--pcgh-border);
	border-radius: var(--pcgh-radius-lg);
	padding: 24px;
	margin-bottom: 20px
}

.pcgh-game-hero__cover {
	aspect-ratio: 3/4;
	background-size: cover;
	background-position: center;
	border-radius: 8px
}

.pcgh-game-hero__title {
	font-size: 28px;
	margin-bottom: 6px
}

.pcgh-game-hero__sub {
	color: var(--pcgh-text-2);
	margin-bottom: 16px
}

.pcgh-game-hero__meta {
	display: grid;
	grid-template-columns: repeat(2,1fr);
	gap: 8px 24px;
	margin-bottom: 18px
}

.pcgh-game-hero__meta div {
	font-size: 13px;
	color: var(--pcgh-text-2)
}

.pcgh-game-hero__meta strong {
	color: var(--pcgh-text)
}

.pcgh-download-list {
	display: flex;
	flex-direction: column;
	gap: 8px
}

.pcgh-download-row {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 10px;
	background: var(--pcgh-surface-2);
	border-radius: 6px
}

.pcgh-download-row strong {
	flex-shrink: 0
}

.pcgh-download-row code {
	flex: 1;
	background: rgba(0,0,0,.3);
	padding: 4px 8px;
	border-radius: 4px;
	font-size: 12px;
	color: var(--pcgh-text);
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap
}

/* ===== Archive / Generic content ===== */
.pcgh-archive {
	padding: 24px 0
}

.pcgh-archive__title {
	font-size: 22px;
	margin-bottom: 18px
}

.pcgh-content {
	background: var(--pcgh-surface);
	border: 1px solid var(--pcgh-border);
	border-radius: var(--pcgh-radius);
	padding: 24px
}

.pcgh-content p {
	margin: 0 0 1em;
	line-height: 1.85;
	color: var(--pcgh-text-2)
}

.pcgh-content p:last-child {
	margin-bottom: 0
}

.pcgh-content a {
	color: var(--pcgh-primary);
	text-decoration: underline;
	text-underline-offset: 3px;
	text-decoration-color: rgba(124,58,237,.45);
	text-decoration-thickness: 1px;
	transition: .15s
}

.pcgh-content a:hover {
	color: #fff;
	text-decoration-color: var(--pcgh-primary)
}

.pcgh-content img {
	border-radius: 8px;
	margin: 14px 0;
	box-shadow: 0 6px 18px -8px rgba(0,0,0,.5)
}

/* ============================================================
 * 正文 H1 - H6 美化（适用于 .pcgh-content / .pcgh-article 内）
 * ========================================================== */
.pcgh-content h1,.pcgh-content h2,.pcgh-content h3,
.pcgh-content h4,.pcgh-content h5,.pcgh-content h6 {
	color: #fff;
	font-weight: 700;
	letter-spacing: -.2px;
	scroll-margin-top: 80px
}

.pcgh-content h1 {
	font-size: 26px;
	line-height: 1.3;
	margin: 1.4em 0 .7em;
	padding-left: 14px;
	border-left: 4px solid var(--pcgh-primary);
	font-weight: 800;
	letter-spacing: -.5px
}

.pcgh-content h2 {
	font-size: 22px;
	line-height: 1.35;
	margin: 1.5em 0 .6em;
	padding: 0 0 8px;
	border-bottom: 1px solid var(--pcgh-border);
	position: relative
}

.pcgh-content h2::before {
	content: '';
	position: absolute;
	left: 0;
	bottom: -1px;
	width: 48px;
	height: 2px;
	background: var(--pcgh-primary);
	border-radius: 2px
}

.pcgh-content h3 {
	font-size: 18px;
	line-height: 1.4;
	margin: 1.4em 0 .5em;
	padding-left: 10px;
	border-left: 3px solid var(--pcgh-primary);
	color: #c4b5fd
}

.pcgh-content h4 {
	font-size: 16px;
	line-height: 1.45;
	margin: 1.3em 0 .4em;
	display: flex;
	align-items: center;
	gap: 6px
}

.pcgh-content h4::before {
	content: '';
	flex-shrink: 0;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--pcgh-primary)
}

.pcgh-content h5 {
	font-size: 14px;
	line-height: 1.5;
	margin: 1.2em 0 .4em;
	color: var(--pcgh-text);
	text-transform: uppercase;
	letter-spacing: .5px
}

.pcgh-content h6 {
	font-size: 13px;
	line-height: 1.5;
	margin: 1.1em 0 .3em;
	color: var(--pcgh-text-2);
	font-weight: 600;
	letter-spacing: .3px
}

.pcgh-content h1:first-child,.pcgh-content h2:first-child,
.pcgh-content h3:first-child,.pcgh-content h4:first-child,
.pcgh-content h5:first-child,.pcgh-content h6:first-child {
	margin-top: 0
}

.pcgh-article h1,.pcgh-article h2,.pcgh-article h3,
.pcgh-article h4,.pcgh-article h5 {
	font-size: 22px;
	line-height: 1.35;
	margin: 1.5em 0 .6em;
	padding: 0 0 8px;
	border-left: 0;
	border-bottom: 1px solid var(--pcgh-border);
	position: relative;
	display: block;
	color: #fff;
	text-transform: none;
	letter-spacing: -.2px
}

.pcgh-article h1::before,.pcgh-article h2::before,.pcgh-article h3::before,
.pcgh-article h4::before,.pcgh-article h5::before {
	content: '';
	position: absolute;
	left: 0;
	bottom: -1px;
	width: 48px;
	height: 2px;
	border-radius: 2px;
	background: var(--pcgh-primary)
}

/* 列表 */
.pcgh-content ul,.pcgh-content ol {
	margin: 0 0 1em;
	padding-left: 1.6em;
	color: var(--pcgh-text-2);
	line-height: 1.85
}

.pcgh-content li {
	margin: .3em 0
}

.pcgh-content ul > li::marker {
	color: var(--pcgh-primary)
}

.pcgh-content ol > li::marker {
	color: var(--pcgh-primary);
	font-weight: 600
}

/* 引用 */
.pcgh-content blockquote {
	margin: 1em 0;
	padding: 12px 16px;
	background: rgba(124,58,237,.08);
	border-left: 3px solid var(--pcgh-primary);
	border-radius: 0 6px 6px 0;
	color: var(--pcgh-text-2);
	font-style: italic;
	line-height: 1.7
}

.pcgh-content blockquote p:last-child {
	margin-bottom: 0
}

/* 行内代码 / 代码块 */
.pcgh-content code {
	background: var(--pcgh-surface-2);
	color: #fbbf24;
	padding: 2px 6px;
	border-radius: 4px;
	font-size: .92em;
	font-family: Menlo,Consolas,monospace
}

.pcgh-content pre {
	margin: 1em 0;
	padding: 14px 16px;
	background: var(--pcgh-bg);
	border: 1px solid var(--pcgh-border);
	border-radius: 8px;
	overflow-x: auto;
	font-size: 13px;
	line-height: 1.6
}

.pcgh-content pre code {
	background: transparent;
	color: var(--pcgh-text);
	padding: 0;
	font-size: 13px
}

/* 表格 */
.pcgh-content table {
	width: 100%;
	border-collapse: collapse;
	margin: 1em 0;
	font-size: 13px
}

.pcgh-content th,.pcgh-content td {
	padding: 8px 12px;
	border: 1px solid var(--pcgh-border);
	text-align: left
}

.pcgh-content th {
	background: var(--pcgh-surface-2);
	color: #fff;
	font-weight: 600
}

.pcgh-content td {
	color: var(--pcgh-text-2)
}

/* hr 分隔线 */
.pcgh-content hr {
	margin: 1.4em 0;
	border: 0;
	height: 1px;
	background: var(--pcgh-border)
}

.pcgh-pagination {
	margin-top: 20px;
	text-align: center
}

.pcgh-pagination .page-numbers {
	display: inline-block;
	padding: 6px 12px;
	margin: 0 2px;
	border-radius: 6px;
	background: var(--pcgh-surface);
	border: 1px solid var(--pcgh-border);
	color: var(--pcgh-text-2)
}

.pcgh-pagination .page-numbers.current,.pcgh-pagination .page-numbers:hover {
	background: var(--pcgh-primary);
	color: #fff;
	border-color: var(--pcgh-primary)
}

.pcgh-search-page {
	position: relative;
	min-height: calc(100vh - 140px);
	padding: 28px 0 54px;
	overflow: visible
}
.pcgh-search-page__bg {
	display: none
}
.pcgh-search-page .pcgh-container {
	position: relative;
	z-index: 1
}
.pcgh-search-hero {
	margin: 0 auto 24px;
	max-width: 760px;
	text-align: center
}
.pcgh-search-hero__inner {
	margin-bottom: 18px
}
.pcgh-search-hero h1 {
	margin: 0;
	font-size: 34px;
	line-height: 1.22;
	color: var(--pcgh-text)
}
.pcgh-search-hero p {
	margin: 0;
	color: var(--pcgh-text-3);
	font-size: 13px
}
.pcgh-search-page__form {
	height: 56px;
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 0 8px 0 18px;
	border-radius: 12px;
	background: var(--pcgh-surface);
	border: 1px solid rgba(var(--pcgh-primary-rgb),.36);
	box-shadow: 0 0 0 5px rgba(var(--pcgh-primary-rgb),.08),var(--pcgh-shadow)
}
.pcgh-search-page__form > i[data-lucide] {
	width: 18px;
	height: 18px;
	color: var(--pcgh-primary);
	flex-shrink: 0
}
.pcgh-search-page__form input {
	min-width: 0;
	flex: 1;
	height: 100%;
	border: 0;
	outline: 0;
	background: transparent;
	color: var(--pcgh-text);
	font-size: 14px
}
.pcgh-search-page__form input::placeholder {
	color: var(--pcgh-text-3)
}
.pcgh-search-page__form button {
	height: 42px;
	padding: 0 26px;
	border: 0;
	border-radius: 9px;
	background: var(--pcgh-primary);
	color: #fff;
	font-weight: 700;
	cursor: pointer;
	box-shadow: 0 10px 22px -12px rgba(var(--pcgh-primary-rgb),.95)
}
.pcgh-search-hero__count {
	margin-top: 12px !important
}
.pcgh-search-tabs {
	margin: 0 0 24px;
	display: flex;
	align-items: center;
	gap: 12px;
	overflow-x: auto
}
.pcgh-search-tabs a {
	flex-shrink: 0;
	padding: 10px 16px;
	border-radius: 9px;
	background: var(--pcgh-surface);
	border: 1px solid var(--pcgh-border);
	color: var(--pcgh-text-2);
	font-size: 13px
}
.pcgh-search-tabs a.is-active,
.pcgh-search-tabs a:hover {
	background: var(--pcgh-primary);
	color: #fff;
	border-color: var(--pcgh-primary);
	box-shadow: 0 8px 24px rgba(var(--pcgh-primary-rgb),.25)
}
.pcgh-search-results {
	margin-top: 0;
	display: grid;
	grid-template-columns: repeat(5,minmax(0,1fr));
	gap: 16px
}
.pcgh-search-results .pcgh-game-card {
	border-radius: 13px;
	background: var(--pcgh-surface);
	border: 1px solid var(--pcgh-border);
	box-shadow: var(--pcgh-shadow);
	overflow: hidden
}
.pcgh-search-results .pcgh-game-card__cover {
	width: 100%;
	min-height: 0;
	aspect-ratio: 16/9
}
.pcgh-search-results .pcgh-game-card__body {
	padding: 14px 16px 16px;
	display: flex;
	flex-direction: column;
	justify-content: flex-start
}
.pcgh-search-results .pcgh-game-card__title {
	font-size: 16px;
	margin-bottom: 10px
}
.pcgh-search-results .pcgh-game-card__meta {
	justify-content: flex-start;
	gap: 12px
}
.pcgh-search-community-card {
	display: block;
	border-radius: 13px;
	background: var(--pcgh-surface);
	border: 1px solid var(--pcgh-border);
	box-shadow: var(--pcgh-shadow);
	overflow: hidden;
	color: var(--pcgh-text)
}
.pcgh-search-community-card__cover {
	position: relative;
	width: 100%;
	aspect-ratio: 16/9;
	background: linear-gradient(135deg, rgba(var(--pcgh-primary-rgb), .2), rgba(15,23,42,.9));
	background-size: cover;
	background-position: center
}
.pcgh-search-community-card__cover span {
	position: absolute;
	top: 10px;
	left: 10px;
	padding: 5px 8px;
	border-radius: 999px;
	background: rgba(var(--pcgh-primary-rgb), .92);
	color: #fff;
	font-size: 12px;
	font-weight: 800
}
.pcgh-search-community-card__body {
	padding: 14px 16px 16px
}
.pcgh-search-community-card__body h3 {
	margin: 0 0 8px;
	color: var(--pcgh-text);
	font-size: 16px;
	line-height: 1.45;
	font-weight: 800
}
.pcgh-search-community-card__body p {
	margin: 0 0 12px;
	color: var(--pcgh-text-2);
	font-size: 13px;
	line-height: 1.65
}
.pcgh-search-community-card__body div {
	display: flex;
	align-items: center;
	gap: 8px;
	color: var(--pcgh-text-3);
	font-size: 12px
}
.pcgh-search-community-card__body em {
	padding: 3px 7px;
	border-radius: 999px;
	background: rgba(var(--pcgh-primary-rgb), .12);
	color: var(--pcgh-primary);
	font-style: normal;
	font-weight: 700
}
.pcgh-search-pagination {
	margin-top: 24px
}
.pcgh-search-pagination .page-numbers {
	min-width: 34px;
	height: 34px;
	padding: 0 11px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	background: var(--pcgh-surface);
	border-color: var(--pcgh-border)
}
.pcgh-search-result {
	display: block;
	padding: 16px;
	border-radius: 12px;
	background: var(--pcgh-surface);
	border: 1px solid var(--pcgh-border);
	color: var(--pcgh-text)
}
.pcgh-search-result strong {
	display: block;
	margin-bottom: 6px;
	font-size: 16px
}
.pcgh-search-result small {
	display: block;
	margin-bottom: 8px;
	color: var(--pcgh-text-3);
	font-size: 12px
}
.pcgh-search-result p {
	margin: 0;
	color: var(--pcgh-text-2);
	font-size: 13px;
	line-height: 1.65
}
.pcgh-search-empty {
	padding: 60px 20px;
	text-align: center;
	border-radius: 16px;
	background: var(--pcgh-surface);
	border: 1px solid var(--pcgh-border)
}
.pcgh-search-empty > i[data-lucide] {
	width: 52px;
	height: 52px;
	margin-bottom: 14px;
	color: var(--pcgh-text-3)
}
.pcgh-search-empty h2 {
	margin: 0 0 8px;
	font-size: 22px;
	color: #fff
}
.pcgh-search-empty p {
	margin: 0 auto 18px;
	max-width: 420px;
	color: var(--pcgh-text-3);
	font-size: 13px;
	line-height: 1.7
}

.pcgh-rank-page {
	padding: 24px 0 46px
}
.pcgh-rank-hero {
	position: relative;
	min-height: 220px;
	border-radius: 14px;
	overflow: hidden;
	background: #0b1220;
	border: 1px solid rgba(148,163,184,.14);
	margin-bottom: 14px
}
.pcgh-rank-hero__bg {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg,rgba(8,13,22,.95) 0%,rgba(8,13,22,.7) 42%,rgba(8,13,22,.25) 100%),
		url('https://picsum.photos/seed/pcgh-rankings/1600/460') center/cover no-repeat;
	opacity: .95
}
.pcgh-rank-hero__content {
	position: relative;
	z-index: 1;
	padding: 28px 34px
}
.pcgh-rank-hero h1 {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 18px 0 8px;
	font-size: 32px;
	line-height: 1.2;
	color: #fff
}
.pcgh-rank-hero h1 i[data-lucide] {
	color: #fbbf24
}
.pcgh-rank-hero p {
	margin: 0 0 18px;
	color: rgba(226,232,240,.86);
	font-size: 15px
}
.pcgh-rank-hero__content > span {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 7px 10px;
	border-radius: 99px;
	background: rgba(15,23,42,.68);
	color: var(--pcgh-text-2);
	font-size: 12px
}
.pcgh-rank-hero__content > span i[data-lucide] {
	width: 14px;
	height: 14px
}
.pcgh-rank-filter {
	display: flex;
	gap: 10px;
	overflow-x: auto;
	padding: 12px;
	margin-bottom: 14px;
	border-radius: 10px;
	background: var(--pcgh-surface);
	border: 1px solid var(--pcgh-border);
	scrollbar-width: none
}
.pcgh-rank-filter::-webkit-scrollbar {
	display: none
}
.pcgh-rank-filter a {
	flex: 0 0 auto;
	padding: 9px 14px;
	border-radius: 8px;
	background: var(--pcgh-surface-2);
	color: var(--pcgh-text-2);
	font-size: 13px
}
.pcgh-rank-filter a.is-active,
.pcgh-rank-filter a:hover {
	background: var(--pcgh-primary);
	color: #fff
}
.pcgh-rank-table {
	border-radius: 12px;
	background: rgba(15,23,42,.42);
	border: 1px solid var(--pcgh-border);
	overflow: hidden
}
.pcgh-rank-table__head,
.pcgh-rank-row {
	display: grid;
	grid-template-columns: 64px minmax(0,1fr) 110px 90px 130px 86px;
	align-items: center;
	gap: 14px
}
.pcgh-rank-table__head {
	padding: 12px 18px;
	color: var(--pcgh-text-3);
	font-size: 12px;
	background: rgba(255,255,255,.02)
}
.pcgh-rank-row {
	padding: 12px 18px;
	border-top: 1px solid rgba(148,163,184,.08)
}
.pcgh-rank-row:hover {
	background: rgba(59,130,246,.05)
}
.pcgh-rank-row__rank span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	border-radius: 8px;
	color: var(--pcgh-text-2);
	font-size: 18px
}
.pcgh-rank-row__rank.is-top span {
	background: transparent;
	font-weight: 800
}
.pcgh-rank-row__rank.is-top span i[data-lucide] {
	width: 30px;
	height: 30px;
	fill: currentColor;
	stroke-width: 1.8
}
.pcgh-rank-row__rank.is-top-1 span {
	color: #fbbf24;
	filter: drop-shadow(0 0 8px rgba(251,191,36,.35))
}
.pcgh-rank-row__rank.is-top-2 span {
	color: #cbd5e1;
	filter: drop-shadow(0 0 8px rgba(203,213,225,.28))
}
.pcgh-rank-row__rank.is-top-3 span {
	color: #fb923c;
	filter: drop-shadow(0 0 8px rgba(251,146,60,.32))
}
.pcgh-rank-row__game {
	display: flex;
	align-items: center;
	gap: 12px;
	min-width: 0
}
.pcgh-rank-row__game img {
	width: 74px;
	height: 50px;
	border-radius: 8px;
	object-fit: cover;
	flex-shrink: 0
}
.pcgh-rank-row__game span {
	min-width: 0
}
.pcgh-rank-row__game strong {
	display: block;
	color: #fff;
	font-size: 14px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis
}
.pcgh-rank-row__game small {
	display: block;
	color: var(--pcgh-text-3);
	font-size: 11px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis
}
.pcgh-rank-row__type {
	justify-self: start;
	padding: 4px 8px;
	border-radius: 6px;
	background: rgba(148,163,184,.1);
	color: var(--pcgh-text-2);
	font-size: 12px
}
.pcgh-rank-row__size {
	color: var(--pcgh-text-2);
	font-size: 13px
}
.pcgh-rank-row__downloads {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: #fff;
	font-weight: 700
}
.pcgh-rank-row__downloads i[data-lucide] {
	width: 14px;
	height: 14px
}
.pcgh-rank-row__downloads.is-up i[data-lucide] {
	color: #ef4444
}
.pcgh-rank-row__downloads.is-down i[data-lucide] {
	color: #22c55e
}
.pcgh-rank-row__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 34px;
	border-radius: 7px;
	background: var(--pcgh-primary);
	color: #fff;
	font-size: 13px;
	font-weight: 700
}
.pcgh-rank-empty {
	padding: 40px;
	text-align: center;
	color: var(--pcgh-text-3)
}

/* ===== 404 ===== */
.pcgh-404 {
	padding: 80px 0;
	text-align: center
}

.pcgh-404 h1 {
	font-size: 120px;
	background: linear-gradient(135deg,var(--pcgh-primary),#8b5cf6);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent
}

.pcgh-404 p {
	color: var(--pcgh-text-2);
	margin-bottom: 20px
}

/* ===== Single Game (参考图还原) ===== */
.pcgh-single {
	padding: 16px 0 40px
}

.pcgh-single section[id] {
	scroll-margin-top: 80px
}

/* 面包屑 */
.pcgh-crumb {
	display: flex;
	align-items: center;
	gap: 4px;
	font-size: 12px;
	color: var(--pcgh-text-3);
	margin-bottom: 14px;
	flex-wrap: wrap
}

.pcgh-crumb a {
	color: var(--pcgh-text-2)
}

.pcgh-crumb a:hover {
	color: var(--pcgh-primary)
}

.pcgh-crumb i[data-lucide] {
	width: 12px;
	height: 12px
}

.pcgh-crumb span {
	color: var(--pcgh-text)
}

/* ============================================================
 * Hero 顶部模块（重构版：无背景大图，更轻量、更通用）
 * - 内置面包屑（顶部条）
 * - 三栏 grid：cover (横图 4:2.5) / 主信息 / 安全侧栏
 * - 浅色卡片：与站点 surface 一致，配深色文字
 * ========================================================== */
.pcgh-hero {
	background: var(--pcgh-surface);
	border: 1px solid var(--pcgh-border);
	border-radius: var(--pcgh-radius-lg);
	margin-bottom: 14px;
	overflow: hidden;
	box-shadow: 0 8px 24px -12px rgba(0,0,0,.45)
}

/* 内置面包屑：单独一条，置于 hero 顶部 */
.pcgh-hero__crumb {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 4px;
	padding: 10px 22px;
	background: var(--pcgh-surface-2);
	border-bottom: 1px solid var(--pcgh-border);
	font-size: 12px;
	color: var(--pcgh-text-3)
}

.pcgh-hero__crumb a {
	display: inline-flex;
	align-items: center;
	gap: 3px;
	color: var(--pcgh-text-2);
	transition: .15s
}

.pcgh-hero__crumb a:hover {
	color: var(--pcgh-primary)
}

.pcgh-hero__crumb i[data-lucide] {
	width: 12px;
	height: 12px;
	color: var(--pcgh-text-3)
}

.pcgh-hero__crumb span {
	color: var(--pcgh-text);
	font-weight: 500
}

.pcgh-hero__inner {
	display: grid;
	grid-template-columns: 320px minmax(0,1fr) 220px;
	gap: 20px;
	padding: 20px 22px
}

/* 横图封面：4:2.5（≈1.6:1），与游戏卡片一致 */
.pcgh-hero__cover {
	aspect-ratio: 4/2.5;
	background: #0f1419 center/cover no-repeat;
	border-radius: 10px;
	border: 1px solid var(--pcgh-border);
	box-shadow: 0 8px 22px -10px rgba(0,0,0,.5),
		0 2px 6px -2px rgba(124,58,237,.18)
}

.pcgh-hero__main {
	min-width: 0;
	display: flex;
	flex-direction: column
}

.pcgh-hero__title {
	font-size: 26px;
	font-weight: 800;
	line-height: 1.25;
	margin: 0 0 4px;
	color: var(--pcgh-text);
	letter-spacing: -.3px
}

.pcgh-hero__sub {
	color: var(--pcgh-text-3);
	font-size: 13px;
	margin: 0 0 12px;
	font-weight: 400;
	letter-spacing: .3px
}

.pcgh-hero__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-bottom: 14px
}

/* Chip 通用：浅色 hero 适配 */
.pcgh-chip {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	height: 24px;
	padding: 0 10px;
	border-radius: 12px;
	font-size: 11px;
	font-weight: 500;
	background: rgba(124,58,237,.12);
	border: 1px solid rgba(124,58,237,.3);
	color: #bfbfbf;
	transition: .15s
}

.pcgh-chip:hover {
	background: rgba(124,58,237,.22);
	border-color: rgba(124,58,237,.5);
	color: #a78bfa
}

.pcgh-chip i[data-lucide] {
	width: 12px;
	height: 12px
}

/* 分类 chip（紫色实心） */
.pcgh-chip--cat {
	background: var(--pcgh-primary);
	border-color: var(--pcgh-primary);
	color: #fff
}

.pcgh-chip--cat:hover {
	background: #6d28d9;
	border-color: #6d28d9;
	color: #fff
}

/* 标签 chip（灰描边，# 前缀） */
.pcgh-chip--tag {
	background: transparent;
	border: 1px solid #6f6f6f;
	color: #cfcfcf;
}

.pcgh-chip--tag:hover {
	background: var(--pcgh-surface-2);
	border-color: var(--pcgh-primary);
	color: var(--pcgh-primary)
}

/* Stats 行（评分 / Steam / 大小 / 更新时间 / 开发商 / 下载次数） */
.pcgh-hero__stats {
	display: flex;
	flex-wrap: wrap;
	gap: 14px 26px;
	margin: 0 0 16px;
	padding: 14px 0;
	border-top: 1px solid var(--pcgh-border);
	border-bottom: 1px solid var(--pcgh-border)
}

.pcgh-stat {
	display: flex;
	flex-direction: column;
	gap: 3px;
	min-width: 0;
	line-height: 1.2
}

.pcgh-stat strong {
	font-size: 17px;
	color: var(--pcgh-text);
	font-weight: 700;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 160px
}

.pcgh-stat__score {
	font-size: 28px!important;
	font-weight: 800!important;
	letter-spacing: -.5px
}

.pcgh-stat small {
	font-size: 11px;
	color: var(--pcgh-text-3);
	font-weight: 400
}

.pcgh-stars {
	display: inline-flex;
	gap: 1px;
	margin-top: 2px
}

.pcgh-star {
	color: #3a4452;
	width: 13px;
	height: 13px;
	display: inline-flex
}

.pcgh-star svg,.pcgh-star i[data-lucide] {
	width: 13px;
	height: 13px;
	fill: currentColor;
	stroke: currentColor
}

.pcgh-star.is-full {
	color: #fbbf24
}

.pcgh-star.is-half {
	color: #fbbf24;
	clip-path: inset(0 50% 0 0)
}

.pcgh-hero__btns {
	display: flex;
	gap: 10px;
	margin-top: auto
}

.pcgh-hero__btns .pcgh-btn {
	transition: .18s;
	box-shadow: 0 6px 16px -6px rgba(0,0,0,.5)
}

.pcgh-hero__btns .pcgh-btn--primary {
	box-shadow: 0 8px 20px -6px rgba(124,58,237,.55),
		inset 0 1px 0 rgba(255,255,255,.18)
}

.pcgh-hero__btns .pcgh-btn--primary:hover {
	transform: translateY(-1px);
	box-shadow: 0 12px 28px -6px rgba(124,58,237,.7),
		inset 0 1px 0 rgba(255,255,255,.18)
}

.pcgh-hero__btns .pcgh-btn:disabled {
	opacity: .5;
	cursor: not-allowed;
	transform: none;
	box-shadow: none
}

.pcgh-btn--lg {
	padding: 11px 24px;
	font-size: 14px;
	font-weight: 600
}

/* 安全提示侧栏（浅色 hero 适配） */
.pcgh-hero__safe {
	background: linear-gradient(180deg,rgba(16,185,129,.10) 0%,rgba(16,185,129,.04) 100%);
	border: 1px solid rgba(16,185,129,.28);
	border-radius: 10px;
	padding: 14px 16px;
	align-self: flex-start;
	box-shadow: 0 4px 14px -6px rgba(16,185,129,.18)
}

.pcgh-safe__head {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: #10b981;
	font-weight: 600;
	font-size: 13px;
	margin-bottom: 8px
}

.pcgh-safe__head i[data-lucide] {
	width: 14px;
	height: 14px
}

.pcgh-hero__safe p {
	margin: 0 0 10px;
	color: var(--pcgh-text-2);
	font-size: 12px;
	line-height: 1.55
}

.pcgh-safe__list {
	display: flex;
	flex-direction: column;
	gap: 6px
}

.pcgh-safe__list span {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	font-size: 11px;
	color: #10b981;
	font-weight: 500
}

.pcgh-safe__list i[data-lucide] {
	width: 11px;
	height: 11px;
	color: #10b981;
	flex-shrink: 0
}

/* 下载弹窗【详见 footer 附近】 */

/* 评分输入（评论表单） */
.pcgh-rating-input {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
	margin-bottom: 14px;
	padding: 12px 16px;
	background: var(--pcgh-surface);
	border: 1px solid var(--pcgh-border);
	border-radius: 10px
}

.pcgh-rating-input__label {
	font-size: 13px;
	color: var(--pcgh-text-2);
	font-weight: 500
}

.pcgh-rating-input__stars {
	display: inline-flex;
	align-items: center;
	gap: 6px
}

.pcgh-rating-input__star {
	padding: 4px;
	background: transparent;
	border: 0;
	color: rgba(255,255,255,.18);
	cursor: pointer;
	transition: transform .2s cubic-bezier(.34,1.56,.64,1),color .15s;
	border-radius: 4px
}

.pcgh-rating-input__star i[data-lucide] {
	width: 24px;
	height: 24px;
	stroke: currentColor;
	stroke-width: 1.6;
	fill: transparent;
	transition: fill .15s
}

.pcgh-rating-input__star:hover {
	color: #facc15;
	transform: scale(1.18)
}

.pcgh-rating-input__star.is-active {
	color: #facc15
}

.pcgh-rating-input__star.is-active i[data-lucide] {
	fill: #facc15;
	filter: drop-shadow(0 0 4px rgba(250,204,21,.55))
}

.pcgh-rating-input__hint {
	margin-left: auto;
	color: var(--pcgh-text-3);
	font-size: 11px
}

/* 评论文末评分徽章 */
.pcgh-cmt-rating {
	display: inline-flex;
	align-items: center;
	gap: 2px;
	margin-right: 8px;
	vertical-align: middle
}

.pcgh-cmt-rating i[data-lucide] {
	width: 14px;
	height: 14px;
	color: rgba(255,255,255,.18);
	stroke: currentColor;
	stroke-width: 1.6;
	fill: transparent
}

.pcgh-cmt-rating i[data-lucide].is-on {
	color: #facc15;
	fill: #facc15;
	filter: drop-shadow(0 0 3px rgba(250,204,21,.5))
}

/* 截图行（旧版兼容） */
.pcgh-shots {
	display: grid;
	grid-template-columns: repeat(5,1fr);
	gap: 10px;
	margin-bottom: 18px
}

.pcgh-shot {
	position: relative;
	aspect-ratio: 16/10;
	background: #0f1419 center/cover no-repeat;
	border-radius: 8px;
	overflow: hidden;
	transition: .2s
}

.pcgh-shot:hover {
	transform: translateY(-2px);
	box-shadow: var(--pcgh-shadow)
}

.pcgh-shot__play {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0,0,0,.3)
}

.pcgh-shot__play i[data-lucide] {
	width: 36px;
	height: 36px;
	color: #fff;
	background: rgba(59,130,246,.8);
	border-radius: 50%;
	padding: 8px
}

/* ============================================================
 * 详情页：独立面包屑条
 * ============================================================ */
.pcgh-crumbbar {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 4px;
	padding: 10px 18px;
	margin: 14px 0 12px;
	background: var(--pcgh-surface);
	border: 1px solid var(--pcgh-border);
	border-radius: var(--pcgh-radius);
	font-size: 12px;
	color: var(--pcgh-text-3)
}

.pcgh-crumbbar a {
	display: inline-flex;
	align-items: center;
	gap: 3px;
	color: var(--pcgh-text-2);
	transition: .15s;
	text-decoration: none
}

.pcgh-crumbbar a:hover {
	color: var(--pcgh-primary)
}

.pcgh-crumbbar i[data-lucide] {
	width: 12px;
	height: 12px;
	color: var(--pcgh-text-3)
}

.pcgh-crumbbar span {
	color: var(--pcgh-text);
	font-weight: 500
}

/* ============================================================
 * 详情页 Hero（横向大背景 + 面包屑 + 左封面 + 中主信息 + 右下角浮安全卡）
 * ============================================================ */
.pcgh-ghero {
	position: relative;
	margin-bottom: 14px;
	background: #0f1419 center/cover no-repeat;
	border: 1px solid var(--pcgh-border);
	border-radius: var(--pcgh-radius-lg);
	overflow: hidden;
}
/* 大背景图渐变蒙版（左→右淡，底部加深） */
.pcgh-ghero.has-bg::before {
	content: '';
	position: absolute;
	inset: 0;
	pointer-events: none;
	background: linear-gradient(180deg,
			rgba(15,20,25,.55) 0%,
			rgba(15,20,25,.45) 60%,
			rgba(15,20,25,.85) 100%),
		linear-gradient(90deg,
			rgba(15,20,25,.92) 0%,
			rgba(15,20,25,.78) 40%,
			rgba(15,20,25,.4) 75%,
			rgba(15,20,25,.05) 100%)
}
/* 无背景图：纯 surface 兜底 */
.pcgh-ghero:not(.has-bg)::before {
	content: '';
	position: absolute;
	inset: 0;
	pointer-events: none;
	background: var(--pcgh-surface)
}

.pcgh-ghero__inner {
	position: relative;
	z-index: 1;
	padding: 18px 24px 24px
}

/* 面包屑（hero 顶部） */
.pcgh-ghero__crumb {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 6px;
	padding: 0 0 16px;
	font-size: 12px;
	color: rgba(255,255,255,.55)
}

.pcgh-ghero__crumb a {
	color: rgba(255,255,255,.7);
	text-decoration: none;
	transition: .15s
}

.pcgh-ghero__crumb a:hover {
	color: #fff
}

.pcgh-ghero__crumb > span[aria-hidden] {
	color: rgba(255,255,255,.35);
	font-size: 11px
}

.pcgh-ghero__crumb > span:last-child {
	color: #fff;
	font-weight: 500
}

/* Hero body：左封面 + 中主信息（右侧空出给 safety 卡） */
.pcgh-ghero__body {
	display: grid;
	grid-template-columns: 320px minmax(0,1fr);
	gap: 28px;
	align-items: flex-start
}

/* 左：横向封面 (4:2.5) */
.pcgh-ghero__cover {
	position: relative;
	aspect-ratio: 4/2.5;
	background: #0f1419 center/cover no-repeat;
	border-radius: 10px;
	border: 1px solid rgba(255,255,255,.08);
	overflow: hidden;
	box-shadow: 0 18px 40px -12px rgba(0,0,0,.65),
		0 4px 16px -4px rgba(var(--pcgh-primary-rgb),.25)
}

.pcgh-ghero__corner {
	position: absolute;
	top: 10px;
	display: inline-flex;
	align-items: center;
	gap: 3px;
	padding: 3px 9px;
	border-radius: 99px;
	font-size: 11px;
	font-weight: 600;
	color: #fff;
	box-shadow: 0 4px 10px rgba(0,0,0,.4);
	z-index: 1
}

.pcgh-ghero__corner i[data-lucide] {
	width: 11px;
	height: 11px
}

.pcgh-ghero__corner--top {
	left: 10px;
	background: var(--pcgh-primary)
}

.pcgh-ghero__corner--hot {
	right: 10px;
	background: #ef4444
}

/* 中：主信息 */
.pcgh-ghero__main {
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding-top: 6px
}

.pcgh-ghero__title {
	margin: 0;
	font-size: 34px;
	font-weight: 800;
	line-height: 1.2;
	color: #fff;
	letter-spacing: -.3px;
}

.pcgh-ghero__sub {
	margin: 0;
	color: rgba(255,255,255,.65);
	font-size: 14px;
	letter-spacing: .3px;
	font-weight: 400
}

.pcgh-ghero__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin: 2px 0 0
}

/* Stats 行（横排，每项 strong+small 上下） */
.pcgh-ghero__stats {
	display: flex;
	flex-wrap: wrap;
	gap: 18px 32px;
	padding: 8px 0;
	margin: 0
}

.pcgh-ghero__stat {
	display: flex;
	flex-direction: column;
	gap: 3px;
	line-height: 1.2;
	min-width: 0
}

.pcgh-ghero__stat strong {
	font-size: 16px;
	color: #fff;
	font-weight: 700;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 240px
}

.pcgh-ghero__stat small {
	font-size: 12px;
	color: rgba(255,255,255,.55);
	font-weight: 400
}
/* 评分项：大数字 + 右侧星星/人数 */
.pcgh-ghero__stat--score {
	flex-direction: row;
	align-items: center;
	gap: 10px
}

.pcgh-ghero__stat--score .pcgh-ghero__stat-meta {
	display: flex;
	flex-direction: column;
	gap: 2px
}

.pcgh-ghero__score {
	font-size: 36px!important;
	font-weight: 800!important;
	letter-spacing: -.5px
}

.pcgh-ghero__stat--score .pcgh-stars {
	font-size: 14px
}

/* Actions：主下载 + 收藏 */
.pcgh-ghero__actions {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: 6px
}

.pcgh-ghero__dl-main {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 13px 32px;
	border: 0;
	border-radius: 10px;
	background: var(--pcgh-primary);
	color: #fff;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	transition: .18s;
	box-shadow: 0 8px 22px -6px rgba(var(--pcgh-primary-rgb),.55),inset 0 1px 0 rgba(255,255,255,.18)
}

.pcgh-ghero__dl-main:hover:not(:disabled) {
	transform: translateY(-1px);
	filter: brightness(1.08);
	box-shadow: 0 14px 30px -6px rgba(var(--pcgh-primary-rgb),.7),inset 0 1px 0 rgba(255,255,255,.25)
}

.pcgh-ghero__dl-main i[data-lucide] {
	width: 18px;
	height: 18px
}

.pcgh-ghero__dl-main.is-disabled,.pcgh-ghero__dl-main:disabled {
	background: rgba(var(--pcgh-primary-rgb),.3);
	box-shadow: none;
	cursor: not-allowed;
	opacity: .7
}

.pcgh-ghero__dl-fav {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	padding: 13px 22px;
	background: rgba(255,255,255,.08);
	border: 1px solid rgba(255,255,255,.15);
	border-radius: 10px;
	color: #fff;
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	transition: .15s;
	backdrop-filter: blur(6px)
}

.pcgh-ghero__dl-fav:hover {
	background: rgba(255,255,255,.14);
	border-color: rgba(255,255,255,.25)
}

.pcgh-ghero__dl-fav.is-fav {
	background: rgba(239,68,68,.18);
	border-color: rgba(239,68,68,.5);
	color: #f87171
}

.pcgh-ghero__edit {
	background: rgba(59,130,246,.16);
	border-color: rgba(59,130,246,.45);
	color: #93c5fd
}

.pcgh-ghero__edit:hover {
	background: rgba(59,130,246,.24);
	border-color: rgba(59,130,246,.65)
}

.pcgh-ghero__dl-fav i[data-lucide] {
	width: 16px;
	height: 16px
}

.pcgh-ghero__dl-fav.is-fav i[data-lucide] {
	fill: currentColor
}

/* 右下角浮：安全提示 */
.pcgh-ghero__safety {
	position: absolute;
	right: 20px;
	bottom: 20px;
	z-index: 2;
	max-width: 280px;
	padding: 12px 14px;
	background: rgba(15,20,25,.78);
	border: 1px solid rgba(34,197,94,.35);
	border-radius: 10px;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	box-shadow: 0 10px 28px -8px rgba(0,0,0,.5)
}

.pcgh-ghero__safety-head {
	display: flex;
	align-items: center;
	gap: 6px;
	color: #4ade80;
	margin-bottom: 4px
}

.pcgh-ghero__safety-head i[data-lucide] {
	width: 15px;
	height: 15px
}

.pcgh-ghero__safety-head strong {
	font-size: 13px;
	font-weight: 600
}

.pcgh-ghero__safety > p {
	margin: 0 0 8px;
	color: rgba(255,255,255,.7);
	font-size: 12px;
	line-height: 1.5
}

.pcgh-ghero__safety-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 6px
}

.pcgh-ghero__safety-tags span {
	display: inline-flex;
	align-items: center;
	gap: 3px;
	padding: 3px 8px;
	border-radius: 99px;
	background: rgba(34,197,94,.14);
	color: #86efac;
	font-size: 11px;
	font-weight: 500
}

.pcgh-ghero__safety-tags i[data-lucide] {
	width: 11px;
	height: 11px
}

/* ============================================================
 * 图床轮播（hero 下方）
 * ============================================================ */
.pcgh-gcarousel {
	margin: 0 0 18px;
	padding: 14px;
	background: var(--pcgh-surface);
	border: 1px solid var(--pcgh-border);
	border-radius: var(--pcgh-radius-lg)
}

.pcgh-gcarousel__main {
	position: relative;
	aspect-ratio: 16/7;
	background: #0f1419;
	border-radius: 10px;
	overflow: hidden
}

.pcgh-gcarousel__slides {
	position: absolute;
	inset: 0
}

.pcgh-gcarousel__slide {
	position: absolute;
	inset: 0;
	display: block;
	background: #0f1419 center/cover no-repeat;
	opacity: 0;
	visibility: hidden;
	transition: opacity .35s ease;
	text-decoration: none
}

.pcgh-gcarousel__slide.is-active {
	opacity: 1;
	visibility: visible
}

.pcgh-gcarousel__play {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: rgba(124,58,237,.85);
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 12px 30px rgba(124,58,237,.55);
	transition: .2s
}

.pcgh-gcarousel__play i[data-lucide] {
	width: 28px;
	height: 28px;
	color: #fff;
	fill: currentColor
}

.pcgh-gcarousel__slide:hover .pcgh-gcarousel__play {
	transform: translate(-50%,-50%) scale(1.08)
}

/* 左右翻页按钮 */
.pcgh-gcarousel__nav {
	position: absolute;
	top: 50%;
	z-index: 2;
	transform: translateY(-50%);
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0,0,0,.5);
	border: 1px solid rgba(255,255,255,.18);
	color: #fff;
	border-radius: 50%;
	cursor: pointer;
	transition: .18s;
	backdrop-filter: blur(6px)
}

.pcgh-gcarousel__nav:hover {
	background: rgba(124,58,237,.85);
	border-color: rgba(124,58,237,.9)
}

.pcgh-gcarousel__nav--prev {
	left: 14px
}

.pcgh-gcarousel__nav--next {
	right: 14px
}

.pcgh-gcarousel__nav i[data-lucide] {
	width: 18px;
	height: 18px
}

/* 圆点指示器 */
.pcgh-gcarousel__dots {
	position: absolute;
	bottom: 12px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
	display: flex;
	gap: 6px;
	padding: 5px 10px;
	border-radius: 99px;
	background: rgba(0,0,0,.4);
	backdrop-filter: blur(6px)
}

.pcgh-gcarousel__dots button {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	border: 0;
	padding: 0;
	background: rgba(255,255,255,.4);
	cursor: pointer;
	transition: .18s
}

.pcgh-gcarousel__dots button.is-active {
	background: #fff;
	width: 18px;
	border-radius: 99px
}

/* 大图：图片类型作为按钮，hover 显示放大图标 */
.pcgh-gcarousel__slide--img {
	cursor: zoom-in;
	border: 0;
	padding: 0
}

.pcgh-gcarousel__zoom {
	position: absolute;
	top: 14px;
	right: 14px;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: rgba(0,0,0,.5);
	backdrop-filter: blur(6px);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	opacity: 0;
	transform: scale(.85);
	transition: .2s;
	pointer-events: none
}

.pcgh-gcarousel__slide--img:hover .pcgh-gcarousel__zoom {
	opacity: 1;
	transform: scale(1)
}

.pcgh-gcarousel__zoom i[data-lucide] {
	width: 16px;
	height: 16px
}

/* 缩略图条（可水平滚动；唯一展示） */
.pcgh-gcarousel__thumbsbar {
	position: relative;
	display: flex;
	align-items: center;
	gap: 6px
}

.pcgh-gcarousel__thumbs {
	flex: 1;
	min-width: 0;
	display: flex;
	gap: 10px;
	overflow-x: auto;
	scroll-behavior: smooth;
	scrollbar-width: none;
	-ms-overflow-style: none;
	padding: 2px;
	scroll-snap-type: x mandatory
}

.pcgh-gcarousel__thumbs::-webkit-scrollbar {
	display: none
}

.pcgh-gcarousel__thumb {
	position: relative;
	flex: 0 0 calc((100% - 40px) / 5);
	max-width: calc((100% - 40px) / 5);
	aspect-ratio: 4/2.5;
	background: #0f1419 center/cover no-repeat;
	border: 2px solid transparent;
	border-radius: 8px;
	cursor: pointer;
	padding: 0;
	text-decoration: none;
	transition: .18s;
	scroll-snap-align: start
}

.pcgh-gcarousel__thumb:hover {
	transform: translateY(-2px);
	border-color: rgba(var(--pcgh-primary-rgb),.5);
	box-shadow: 0 8px 18px -8px rgba(var(--pcgh-primary-rgb),.45)
}

.pcgh-gcarousel__thumb--video {
	background: radial-gradient(circle at center,rgba(var(--pcgh-primary-rgb),.22),#0f1419 68%)
}

.pcgh-gcarousel__thumb--video video {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover
}
/* 视频缩略图：常驻播放按钮 */
.pcgh-gcarousel__thumb-play {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: rgba(var(--pcgh-primary-rgb),.85);
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 6px 16px rgba(0,0,0,.5)
}

.pcgh-gcarousel__thumb-play i[data-lucide] {
	width: 14px;
	height: 14px;
	color: #fff;
	fill: currentColor
}
/* 图片缩略图：hover 显示放大图标 */
.pcgh-gcarousel__thumb-zoom {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%) scale(.85);
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: rgba(0,0,0,.55);
	backdrop-filter: blur(6px);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	opacity: 0;
	transition: .2s;
	pointer-events: none
}

.pcgh-gcarousel__thumb:hover .pcgh-gcarousel__thumb-zoom {
	opacity: 1;
	transform: translate(-50%,-50%) scale(1)
}

.pcgh-gcarousel__thumb-zoom i[data-lucide] {
	width: 14px;
	height: 14px
}

/* 缩略图左右滚动按钮（仅当总数 > 5 时显示） */
.pcgh-gcarousel__tnav {
	flex-shrink: 0;
	width: 30px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--pcgh-surface-2);
	border: 1px solid var(--pcgh-border);
	color: var(--pcgh-text-2);
	border-radius: 6px;
	cursor: pointer;
	transition: .18s
}

.pcgh-gcarousel__tnav:hover {
	background: var(--pcgh-primary);
	border-color: var(--pcgh-primary);
	color: #fff
}

.pcgh-gcarousel__tnav i[data-lucide] {
	width: 16px;
	height: 16px
}

.pcgh-gcarousel__tnav[hidden] {
	display: none
}

/* ============================================================
 * Lightbox（图片放大查看）
 * ============================================================ */
.pcgh-lightbox {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0,0,0,.92);
	backdrop-filter: blur(8px);
	opacity: 0;
	pointer-events: none;
	transition: opacity .25s ease
}

.pcgh-lightbox.is-open {
	opacity: 1;
	pointer-events: auto
}

.pcgh-lightbox[hidden] {
	display: none
}

.pcgh-lightbox__stage {
	position: relative;
	max-width: 90vw;
	max-height: 88vh;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	transform: scale(.96);
	transition: transform .25s ease
}

.pcgh-lightbox.is-open .pcgh-lightbox__stage {
	transform: scale(1)
}

.pcgh-lightbox__stage img {
	max-width: 90vw;
	max-height: 80vh;
	width: auto;
	height: auto;
	border-radius: 8px;
	box-shadow: 0 28px 80px rgba(0,0,0,.6),0 0 0 1px rgba(255,255,255,.06);
	user-select: none
}

.pcgh-lightbox__caption {
	color: rgba(255,255,255,.72);
	font-size: 13px;
	font-weight: 500;
	padding: 5px 14px;
	border-radius: 99px;
	background: rgba(0,0,0,.5);
	backdrop-filter: blur(6px)
}

.pcgh-lightbox__close,.pcgh-lightbox__nav {
	position: absolute;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255,255,255,.12);
	border: 1px solid rgba(255,255,255,.2);
	color: #fff;
	cursor: pointer;
	transition: .18s;
	backdrop-filter: blur(8px);
	z-index: 1
}

.pcgh-lightbox__close:hover,.pcgh-lightbox__nav:hover {
	background: rgba(255,255,255,.22);
	border-color: rgba(255,255,255,.35)
}

.pcgh-lightbox__close {
	top: 24px;
	right: 24px
}

.pcgh-lightbox__close i[data-lucide] {
	width: 22px;
	height: 22px
}

.pcgh-lightbox__nav {
	top: 50%;
	transform: translateY(-50%)
}

.pcgh-lightbox__nav--prev {
	left: 24px
}

.pcgh-lightbox__nav--next {
	right: 24px
}

.pcgh-lightbox__nav i[data-lucide] {
	width: 24px;
	height: 24px
}

.pcgh-video-lightbox {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0,0,0,.92);
	backdrop-filter: blur(8px);
	opacity: 0;
	pointer-events: none;
	transition: opacity .25s ease
}

.pcgh-video-lightbox.is-open {
	opacity: 1;
	pointer-events: auto
}

.pcgh-video-lightbox[hidden] {
	display: none
}

.pcgh-video-lightbox__stage {
	width: min(1100px,92vw);
	aspect-ratio: 16/9;
	background: #000;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 20px 70px rgba(0,0,0,.75);
	transform: scale(.96);
	transition: transform .25s ease
}

.pcgh-video-lightbox.is-open .pcgh-video-lightbox__stage {
	transform: scale(1)
}

.pcgh-video-lightbox__stage video,
.pcgh-video-lightbox__stage iframe {
	width: 100%;
	height: 100%;
	display: block;
	border: 0;
	background: #000
}

.pcgh-video-lightbox__close {
	position: fixed;
	top: 24px;
	right: 24px;
	z-index: 2;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	border: 1px solid rgba(255,255,255,.18);
	background: rgba(15,23,42,.72);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	backdrop-filter: blur(8px);
	transition: .18s
}

.pcgh-video-lightbox__close:hover {
	background: rgba(var(--pcgh-primary-rgb),.9);
	border-color: rgba(var(--pcgh-primary-rgb),.95)
}

/* 单页 layout */
.pcgh-single__layout {
	display: grid;
	grid-template-columns: minmax(0,1fr) var(--pcgh-sidebar-w);
	gap: 18px;
	align-items: flex-start
}

.pcgh-single__main {
	min-width: 0
}

.pcgh-tabs--anchor {
	background: var(--pcgh-surface);
	border: 1px solid var(--pcgh-border);
	padding: 4px;
	border-radius: 8px;
	margin-bottom: 14px;
	overflow-x: auto;
	flex-wrap: nowrap
}

.pcgh-tabs--anchor .pcgh-tabs__item {
	white-space: nowrap
}

.pcgh-tabs--anchor .pcgh-tabs__item small {
	font-size: 10px;
	opacity: .7;
	margin-left: 2px
}

/* 配置要求 */
.pcgh-req {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px
}

.pcgh-req__col {
	background: var(--pcgh-surface-2);
	border-radius: 8px;
	overflow: hidden
}

.pcgh-req__head {
	padding: 8px 14px;
	font-size: 13px;
	font-weight: 600
}

.pcgh-req__head--min {
	background: rgba(59,130,246,.18);
	color: #93c5fd
}

.pcgh-req__head--rec {
	background: rgba(245,158,11,.18);
	color: #fbbf24
}

.pcgh-req pre {
	margin: 0;
	padding: 14px;
	color: var(--pcgh-text-2);
	font-family: inherit;
	font-size: 13px;
	white-space: pre-wrap;
	line-height: 1.9
}

.pcgh-req__list {
	margin: 0;
	padding: 14px;
	display: grid;
	grid-template-columns: 74px 1fr;
	gap: 8px 0;
	font-size: 13px
}

.pcgh-req__list dt {
	color: var(--pcgh-text-3)
}

.pcgh-req__list dd {
	margin: 0;
	color: var(--pcgh-text)
}

.pcgh-disclaimer {
	background: linear-gradient(135deg,rgba(245,158,11,.08),rgba(239,68,68,.05) 48%,var(--pcgh-surface));
	border-color: rgba(245,158,11,.18)
}

.pcgh-disclaimer__body {
	display: flex;
	gap: 12px;
	align-items: flex-start;
	padding: 14px;
	border-radius: 10px;
	background: rgba(0,0,0,.14);
	border: 1px solid rgba(255,255,255,.06)
}

.pcgh-disclaimer__icon {
	flex-shrink: 0;
	width: 34px;
	height: 34px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	color: #fbbf24;
	background: rgba(245,158,11,.14);
	border: 1px solid rgba(245,158,11,.25)
}

.pcgh-disclaimer__icon i[data-lucide] {
	width: 17px;
	height: 17px
}

.pcgh-disclaimer__body p {
	margin: 0;
	color: var(--pcgh-text-2);
	font-size: 13px;
	line-height: 1.9
}

/* DLC 网格 */
.pcgh-dlc-grid {
	display: grid;
	grid-template-columns: repeat(2,1fr);
	gap: 12px
}

.pcgh-dlc {
	display: flex;
	gap: 12px;
	padding: 10px;
	background: var(--pcgh-surface-2);
	border-radius: 8px;
	color: var(--pcgh-text);
	transition: .2s
}

.pcgh-dlc:hover {
	transform: translateY(-2px);
	box-shadow: var(--pcgh-shadow);
	color: var(--pcgh-text)
}

.pcgh-dlc__cover {
	width: 100px;
	height: 60px;
	border-radius: 6px;
	background: #0f1419 center/cover no-repeat;
	flex-shrink: 0
}

.pcgh-dlc__body {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 2px;
	min-width: 0
}

.pcgh-dlc__body strong {
	font-size: 13px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis
}

.pcgh-dlc__body small {
	font-size: 11px;
	color: var(--pcgh-text-3)
}

.pcgh-dlc__body em {
	font-style: normal;
	font-size: 11px;
	color: var(--pcgh-primary);
	margin-top: 2px
}


/* 双列 */
.pcgh-double {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px
}

.pcgh-double > section {
	margin-bottom: 0
}

/* 评论项 */
.pcgh-review {
	display: flex;
	gap: 10px;
	padding: 12px 0;
	border-bottom: 1px dashed rgba(255,255,255,.06)
}

.pcgh-review:last-child {
	border-bottom: 0
}

.pcgh-review__avatar {
	flex-shrink: 0;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: linear-gradient(135deg,#8b5cf6,#ec4899);
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center
}

.pcgh-review__avatar i[data-lucide] {
	width: 16px;
	height: 16px
}

.pcgh-review header {
	display: flex;
	align-items: baseline;
	gap: 8px;
	margin-bottom: 4px
}

.pcgh-review header strong {
	font-size: 13px
}

.pcgh-review header small {
	font-size: 11px;
	color: var(--pcgh-text-3)
}

.pcgh-review p {
	margin: 0 0 6px;
	font-size: 13px;
	color: var(--pcgh-text-2);
	line-height: 1.6
}

.pcgh-review footer {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-size: 11px;
	color: var(--pcgh-text-3)
}

.pcgh-review footer i[data-lucide] {
	width: 12px;
	height: 12px
}

/* 更新日志 */
.pcgh-log {
	padding: 10px 0;
	border-bottom: 1px dashed rgba(255,255,255,.06)
}

.pcgh-log:last-of-type {
	border-bottom: 0
}

.pcgh-log header {
	display: flex;
	align-items: baseline;
	gap: 10px;
	margin-bottom: 4px
}

.pcgh-log header strong {
	color: var(--pcgh-primary);
	font-size: 13px
}

.pcgh-log header small {
	font-size: 11px;
	color: var(--pcgh-text-3)
}

.pcgh-log pre {
	margin: 0;
	font-family: inherit;
	font-size: 12px;
	color: var(--pcgh-text-2);
	white-space: pre-wrap;
	line-height: 1.7
}

.pcgh-show-more {
	display: block;
	text-align: center;
	margin-top: 10px;
	font-size: 12px;
	color: var(--pcgh-primary)
}

/* 侧栏 - 信息 dl */
.pcgh-info {
	margin: 0;
	display: grid;
	grid-template-columns: 78px 1fr;
	gap: 8px 0;
	font-size: 13px
}

.pcgh-info dt {
	color: var(--pcgh-text-3)
}

.pcgh-info dd {
	margin: 0;
	color: var(--pcgh-text)
}

.pcgh-info dd a {
	color: var(--pcgh-primary)
}

/* 评分分布 */
.pcgh-rating__big {
	text-align: center;
	padding-bottom: 10px;
	border-bottom: 1px dashed rgba(255,255,255,.08);
	margin-bottom: 10px
}

.pcgh-rating__big strong {
	display: block;
	font-size: 36px;
	line-height: 1;
	font-weight: 800
}

.pcgh-rating__big .pcgh-stars {
	margin: 4px 0
}

.pcgh-rating__big small {
	font-size: 11px;
	color: var(--pcgh-text-3)
}

.pcgh-rating__row {
	display: grid;
	grid-template-columns: 24px 1fr 36px;
	gap: 8px;
	align-items: center;
	margin-bottom: 6px;
	font-size: 11px;
	color: var(--pcgh-text-3)
}

.pcgh-rating__bar {
	position: relative;
	height: 6px;
	background: rgba(255,255,255,.06);
	border-radius: 3px;
	overflow: hidden
}

.pcgh-rating__bar > span {
	display: block;
	height: 100%;
	background: #fbbf24;
	border-radius: 3px
}

/* 相关推荐行 */
.pcgh-rel-row {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 8px 0;
	color: var(--pcgh-text);
	border-bottom: 1px solid rgba(255,255,255,.04)
}

.pcgh-rel-row:last-of-type {
	border-bottom: 0
}

.pcgh-rel-row:hover {
	color: var(--pcgh-primary)
}

.pcgh-rel-row__cover {
	width: 48px;
	height: 48px;
	border-radius: 6px;
	background-size: cover;
	background-position: center;
	flex-shrink: 0
}

.pcgh-rel-row__body {
	flex: 1;
	display: flex;
	flex-direction: column;
	min-width: 0;
	gap: 2px
}

.pcgh-rel-row__body strong {
	font-size: 13px;
	font-weight: 500;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis
}

.pcgh-rel-row__body small {
	color: var(--pcgh-text-3);
	font-size: 11px
}

.pcgh-rel-row__score {
	font-weight: 700;
	font-size: 13px;
	flex-shrink: 0
}

/* 热门标签云 */
.pcgh-tag-cloud {
	display: flex;
	flex-wrap: wrap;
	gap: 6px
}

.pcgh-tag-cloud .pcgh-tag {
	cursor: pointer;
	font-size: 12px;
	background: var(--pcgh-surface-2);
	color: var(--pcgh-text-2);
	border: 1px solid transparent
}

.pcgh-tag-cloud .pcgh-tag:hover {
	color: var(--pcgh-primary);
	border-color: rgba(59,130,246,.3);
	background: rgba(59,130,246,.1)
}

/* ===== Header avatar (登录态) ===== */
.pcgh-avatar {
	cursor: pointer;
	background: transparent;
	border: 0;
	padding: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	overflow: hidden;
	color: var(--pcgh-text-2);
	background: var(--pcgh-surface-2)
}

.pcgh-avatar:hover {
	color: var(--pcgh-primary)
}

.pcgh-avatar__img,.pcgh-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block
}

/* ===== Modal ===== */
.pcgh-modal {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	animation: pcgh-fade .2s ease
}

.pcgh-modal[hidden] {
	display: none
}

.pcgh-modal__mask {
	position: absolute;
	inset: 0;
	background: rgba(0,0,0,.7);
	backdrop-filter: blur(4px)
}

.pcgh-modal__panel {
	position: relative;
	width: min(420px,calc(100vw - 32px));
	background: var(--pcgh-surface);
	border: 1px solid var(--pcgh-border);
	border-radius: 14px;
	padding: 32px 28px;
	box-shadow: 0 20px 60px rgba(0,0,0,.6);
	animation: pcgh-pop .25s cubic-bezier(.25,.8,.25,1)
}

.pcgh-modal__close {
	position: absolute;
	top: 14px;
	right: 14px;
	background: transparent;
	border: 0;
	color: var(--pcgh-text-3);
	cursor: pointer;
	display: inline-flex;
	padding: 6px;
	border-radius: 6px
}

.pcgh-modal__close:hover {
	background: var(--pcgh-surface-2);
	color: var(--pcgh-text)
}

.pcgh-popup-ad {
	z-index: 10020
}

.pcgh-popup-ad__mask {
	background: rgba(15,23,42,.68);
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px)
}

.pcgh-popup-ad__panel {
	position: relative;
	width: min(520px,calc(100vw - 32px));
	max-height: calc(100vh - 32px);
	overflow: auto;
	padding: 24px;
	border-radius: 16px;
	border: 1px solid rgba(148,163,184,.22);
	background: linear-gradient(180deg,var(--pcgh-surface),var(--pcgh-surface-2));
	color: var(--pcgh-text);
	box-shadow: 0 30px 90px rgba(0,0,0,.42);
	animation: pcgh-pop .25s cubic-bezier(.25,.8,.25,1)
}

.pcgh-popup-ad__head,
.pcgh-popup-ad__title,
.pcgh-popup-ad__actions,
.pcgh-popup-ad__never {
	display: flex;
	align-items: center
}

.pcgh-popup-ad__head {
	justify-content: space-between;
	gap: 14px;
	margin-bottom: 14px
}

.pcgh-popup-ad__title {
	gap: 8px;
	font-size: 16px;
	color: var(--pcgh-text)
}

.pcgh-popup-ad__title i[data-lucide],
.pcgh-popup-ad__title svg {
	color: var(--pcgh-primary)
}

.pcgh-popup-ad__close {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border: 0;
	border-radius: 8px;
	background: transparent;
	color: var(--pcgh-text-3);
	cursor: pointer
}

.pcgh-popup-ad__close:hover {
	background: var(--pcgh-surface-2);
	color: var(--pcgh-text)
}

.pcgh-popup-ad__hero {
	display: grid;
	grid-template-columns: minmax(0,1fr) minmax(120px,180px);
	align-items: center;
	gap: 12px;
	min-height: 110px;
	padding: 18px;
	border-radius: 14px;
	overflow: hidden;
	background:
		radial-gradient(circle at 86% 18%,rgba(var(--pcgh-primary-rgb),.26),transparent 34%),
		linear-gradient(135deg,rgba(var(--pcgh-primary-rgb),.16),rgba(96,165,250,.06));
	border: 1px solid rgba(var(--pcgh-primary-rgb),.18)
}

.pcgh-popup-ad__hero h2 {
	margin: 0 0 7px;
	font-size: clamp(22px,3vw,30px);
	line-height: 1.15;
	color: var(--pcgh-primary)
}

.pcgh-popup-ad__hero p {
	margin: 0;
	color: var(--pcgh-text-2);
	font-size: 13px;
	line-height: 1.6
}

.pcgh-popup-ad__hero img {
	width: 100%;
	max-height: 130px;
	object-fit: contain
}

.pcgh-popup-ad__desc {
	margin-top: 14px;
	color: var(--pcgh-text-2);
	font-size: 13px;
	line-height: 1.8
}

.pcgh-popup-ad__desc p {
	margin: 0 0 8px
}

.pcgh-popup-ad__desc p:last-child {
	margin-bottom: 0
}

.pcgh-popup-ad__list {
	display: grid;
	gap: 9px;
	margin: 14px 0 0;
	padding: 0;
	list-style: none
}

.pcgh-popup-ad__list li {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	color: var(--pcgh-text-2);
	font-size: 13px;
	line-height: 1.6
}

.pcgh-popup-ad__list li i[data-lucide],
.pcgh-popup-ad__list li svg {
	margin-top: .3em;
	color: var(--pcgh-primary);
	flex-shrink: 0
}

.pcgh-popup-ad__cards {
	display: grid;
	grid-template-columns: repeat(3,minmax(0,1fr));
	gap: 10px;
	margin-top: 18px
}

.pcgh-popup-ad__card {
	padding: 12px;
	border-radius: 10px;
	border: 1px solid var(--pcgh-border);
	background: rgba(255,255,255,.04)
}

.pcgh-popup-ad__card i[data-lucide],
.pcgh-popup-ad__card svg {
	display: block;
	margin-bottom: 8px;
	color: var(--pcgh-primary)
}

.pcgh-popup-ad__card strong,
.pcgh-popup-ad__card span {
	display: block
}

.pcgh-popup-ad__card strong {
	color: var(--pcgh-text);
	font-size: 13px;
	margin-bottom: 4px
}

.pcgh-popup-ad__card span {
	color: var(--pcgh-text-3);
	font-size: 11px;
	line-height: 1.5
}

.pcgh-popup-ad__actions {
	justify-content: center;
	gap: 14px;
	margin-top: 20px
}

.pcgh-popup-ad__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 132px;
	height: 40px;
	padding: 0 18px;
	border-radius: 8px;
	border: 1px solid var(--pcgh-border);
	font-size: 13px;
	font-weight: 700;
	text-decoration: none
}

.pcgh-popup-ad__btn--primary {
	background: linear-gradient(135deg,var(--pcgh-primary),var(--pcgh-primary-2));
	border-color: var(--pcgh-primary);
	color: #fff;
	box-shadow: 0 10px 24px rgba(var(--pcgh-primary-rgb),.32)
}

.pcgh-popup-ad__btn--primary:hover {
	background: linear-gradient(135deg,var(--pcgh-primary-2),var(--pcgh-primary));
	border-color: var(--pcgh-primary-2);
	color: #fff;
	box-shadow: 0 14px 30px rgba(var(--pcgh-primary-rgb),.42)
}

.pcgh-popup-ad__btn--ghost {
	background: var(--pcgh-surface);
	color: var(--pcgh-text-2)
}

.pcgh-popup-ad__btn--ghost:hover {
	color: var(--pcgh-text);
	border-color: rgba(var(--pcgh-primary-rgb),.42)
}

.pcgh-popup-ad__never {
	justify-content: center;
	gap: 6px;
	margin-top: 14px;
	color: var(--pcgh-text-3);
	font-size: 12px;
	cursor: pointer
}

.pcgh-popup-ad__never input {
	margin: 0
}

.pcgh-popup-ad--v2 .pcgh-popup-ad__panel {
	width: min(540px,calc(100vw - 32px));
	padding: 18px;
	border-radius: 12px;
	background: var(--pcgh-surface);
	border-color: rgba(148,163,184,.28);
	box-shadow: 0 24px 80px rgba(0,0,0,.38)
}

.pcgh-popup-ad--v2 .pcgh-popup-ad__head {
	margin-bottom: 12px
}

.pcgh-popup-ad--v2 .pcgh-popup-ad__title {
	font-size: 14px;
	font-weight: 700
}

.pcgh-popup-ad--v2 .pcgh-popup-ad__close {
	width: 28px;
	height: 28px
}

.pcgh-popup-ad-v2__banner {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 86px;
	padding: 14px 18px;
	border-radius: 10px;
	overflow: hidden;
	background-color: rgba(var(--pcgh-primary-rgb),.08);
	background-image:
		linear-gradient(90deg,rgba(15,23,42,.16),rgba(15,23,42,.02)),
		var(--pcgh-popup-v2-bg,linear-gradient(135deg,rgba(var(--pcgh-primary-rgb),.2),rgba(96,165,250,.1)));
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	border: 1px solid rgba(var(--pcgh-primary-rgb),.16)
}

.pcgh-popup-ad-v2__banner > div {
	position: relative;
	z-index: 1;
	width: 100%
}

.pcgh-popup-ad-v2__banner h2 {
	margin: 0 0 6px;
	font-size: 20px;
	line-height: 1.2;
	text-align: center;
	color: var(--pcgh-primary)
}

.pcgh-popup-ad-v2__banner p {
	margin: 0;
	font-size: 13px;
	line-height: 1.4;
	text-align: center;
	color: #64676b;
}

.pcgh-popup-ad-v2__body {
	display: grid;
	grid-template-columns: minmax(0,1fr) 176px;
	gap: 22px;
	margin-top: 16px;
	align-items: start
}

.pcgh-popup-ad-v2__main {
	padding-right: 2px
}

.pcgh-popup-ad--v2 .pcgh-popup-ad__desc {
	margin-top: 0;
	font-size: 13px;
	line-height: 1.75;
	color: var(--pcgh-text-2)
}

.pcgh-popup-ad--v2 .pcgh-popup-ad__desc p {
	margin-bottom: 8px
}

.pcgh-popup-ad-v2__list {
	gap: 15px;
	margin-top: 18px
}

.pcgh-popup-ad-v2__list li {
	gap: 12px;
	padding: 0;
	font-size: 13px;
	line-height: 1.65
}

.pcgh-popup-ad-v2__list li svg,
.pcgh-popup-ad-v2__list li i[data-lucide] {
	width: 30px;
	height: 30px;
	margin-top: 0;
	padding: 7px;
	border-radius: 50%;
	background: rgba(var(--pcgh-primary-rgb),.12);
	color: var(--pcgh-primary)
}

.pcgh-popup-ad-v2__qr {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 16px 12px;
	border-radius: 8px;
	border: 1px solid rgba(var(--pcgh-primary-rgb),.2);
	background: rgba(var(--pcgh-primary-rgb),.04);
	text-align: center
}

.pcgh-popup-ad-v2__qr strong {
	display: block;
	color: var(--pcgh-text);
	font-size: 14px;
	line-height: 1.35
}

.pcgh-popup-ad-v2__qr span {
	display: block;
	margin-top: 6px;
	color: var(--pcgh-text-3);
	font-size: 11px;
	line-height: 1.4
}

.pcgh-popup-ad-v2__qr img,
.pcgh-popup-ad-v2__qr-empty {
	width: 128px;
	height: 128px;
	margin-top: 12px;
	border-radius: 6px;
	background: #fff;
	border: 1px solid rgba(148,163,184,.25)
}

.pcgh-popup-ad-v2__qr img {
	display: block;
	object-fit: cover;
	padding: 4px
}

.pcgh-popup-ad-v2__qr-empty {
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--pcgh-primary)
}

.pcgh-popup-ad-v2__qr-empty svg,
.pcgh-popup-ad-v2__qr-empty i[data-lucide] {
	width: 42px;
	height: 42px
}

.pcgh-popup-ad-v2__qr em {
	display: block;
	margin-top: 8px;
	color: var(--pcgh-text-3);
	font-size: 11px;
	font-style: normal
}

.pcgh-popup-ad--v2 .pcgh-popup-ad__actions {
	justify-content: flex-end;
	gap: 12px;
	margin-top: 20px;
	padding-top: 16px;
	border-top: 1px solid var(--pcgh-border)
}

.pcgh-popup-ad--v2 .pcgh-popup-ad__btn {
	min-width: 100px;
	height: 34px;
	padding: 0 14px;
	border-radius: 6px;
	font-size: 12px
}

.pcgh-popup-ad--v2 .pcgh-popup-ad__never {
	justify-content: flex-start;
	margin-top: -28px;
	padding-right: 236px;
	min-height: 28px;
	font-size: 12px
}

html[data-pcgh-theme-resolved="light"] .pcgh-popup-ad__panel {
	background: linear-gradient(180deg,#fff,#f8fafc);
	border-color: rgba(203,213,225,.9);
	box-shadow: 0 30px 90px rgba(15,23,42,.24)
}

html[data-pcgh-theme-resolved="light"] .pcgh-popup-ad__mask {
	background: rgba(15,23,42,.56)
}

html[data-pcgh-theme-resolved="light"] .pcgh-popup-ad__card {
	background: #fff;
	border-color: #e5e7eb
}

html[data-pcgh-theme-resolved="light"] .pcgh-popup-ad__btn--primary {
	background: linear-gradient(135deg,#2563eb,#60a5fa);
	border-color: #2563eb;
	color: #fff;
	box-shadow: 0 10px 24px rgba(37,99,235,.26)
}

html[data-pcgh-theme-resolved="light"] .pcgh-popup-ad__btn--primary:hover {
	background: linear-gradient(135deg,#1d4ed8,#3b82f6);
	border-color: #1d4ed8;
	color: #fff;
	box-shadow: 0 14px 30px rgba(37,99,235,.34)
}

html[data-pcgh-theme-resolved="light"] .pcgh-popup-ad--v2 .pcgh-popup-ad__panel {
	background: #fff;
	border-color: #dbeafe;
	box-shadow: 0 24px 80px rgba(15,23,42,.24)
}

html[data-pcgh-theme-resolved="light"] .pcgh-popup-ad-v2__banner {
	background-image:
		linear-gradient(90deg,rgba(255,255,255,.72),rgba(255,255,255,.42)),
		var(--pcgh-popup-v2-bg,linear-gradient(135deg,#eaf2ff,#f5f9ff));
	border-color: #dbeafe
}

html[data-pcgh-theme-resolved="light"] .pcgh-popup-ad-v2__qr {
	background: #fff;
	border-color: #dbeafe
}

@media (max-width: 560px) {
	.pcgh-popup-ad__panel {
		width: calc(100vw - 24px);
		padding: 18px;
		border-radius: 14px
	}

	.pcgh-popup-ad__hero {
		grid-template-columns: 1fr;
		text-align: left
	}

	.pcgh-popup-ad__hero img {
		max-height: 96px
	}

	.pcgh-popup-ad__cards {
		grid-template-columns: 1fr
	}

	.pcgh-popup-ad__actions {
		flex-direction: column;
		gap: 10px
	}

	.pcgh-popup-ad__btn {
		width: 100%
	}

	.pcgh-popup-ad-v2__banner {
		min-height: 78px;
		padding: 12px
	}

	.pcgh-popup-ad-v2__banner h2,
	.pcgh-popup-ad-v2__banner p {
		text-align: left
	}

	.pcgh-popup-ad-v2__body {
		grid-template-columns: 1fr
	}

	.pcgh-popup-ad-v2__qr img,
	.pcgh-popup-ad-v2__qr-empty {
		width: 112px;
		height: 112px
	}

	.pcgh-popup-ad--v2 .pcgh-popup-ad__actions {
		align-items: stretch
	}

	.pcgh-popup-ad--v2 .pcgh-popup-ad__never {
		justify-content: center;
		margin-top: 12px;
		padding-right: 0
	}
}

.pcgh-modal__title {
	font-size: 22px;
	font-weight: 700;
	margin: 0 0 6px
}

.pcgh-modal__sub {
	margin: 0 0 18px;
	color: var(--pcgh-text-3);
	font-size: 13px
}

.pcgh-modal__tabs {
	display: flex;
	gap: 24px;
	border-bottom: 1px solid var(--pcgh-border);
	margin-bottom: 18px
}

.pcgh-modal__tabs button {
	background: transparent;
	border: 0;
	color: var(--pcgh-text-2);
	font-size: 14px;
	padding: 10px 0;
	cursor: pointer;
	position: relative
}

.pcgh-modal__tabs button.is-active {
	color: var(--pcgh-primary)
}

.pcgh-modal__tabs button.is-active::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: -1px;
	height: 2px;
	background: var(--pcgh-primary);
	border-radius: 1px
}

.pcgh-alert {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 12px;
	padding: 8px 12px;
	border-radius: 6px;
	margin-bottom: 12px
}

.pcgh-alert--error {
	background: rgba(239,68,68,.1);
	color: #fca5a5;
	border: 1px solid rgba(239,68,68,.3)
}

.pcgh-alert i[data-lucide] {
	width: 14px;
	height: 14px
}

.pcgh-input {
	position: relative;
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 0 14px;
	background: var(--pcgh-surface-2);
	border: 1px solid var(--pcgh-border);
	border-radius: 8px;
	margin-bottom: 12px;
	height: 46px;
	transition: .15s
}

.pcgh-input:focus-within {
	border-color: var(--pcgh-primary);
	box-shadow: 0 0 0 3px rgba(59,130,246,.15)
}

.pcgh-input i[data-lucide],.pcgh-input svg {
	flex-shrink: 0;
	color: var(--pcgh-text-3);
	width: 16px;
	height: 16px
}

.pcgh-input input {
	flex: 1;
	background: transparent;
	border: 0;
	outline: 0;
	color: var(--pcgh-text);
	font-size: 14px
}

.pcgh-input input::placeholder {
	color: var(--pcgh-text-3)
}

.pcgh-eye {
	background: transparent;
	border: 0;
	color: var(--pcgh-text-3);
	cursor: pointer;
	display: inline-flex;
	padding: 4px
}

.pcgh-eye:hover {
	color: var(--pcgh-text)
}

.pcgh-login-form__row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 12px;
	margin: 4px 0 18px
}

.pcgh-check {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: var(--pcgh-text-2);
	cursor: pointer
}

.pcgh-check input {
	accent-color: var(--pcgh-primary)
}

.pcgh-link {
	color: var(--pcgh-primary)
}

.pcgh-link:hover {
	text-decoration: underline
}

.pcgh-btn--full {
	display: flex;
	width: 100%;
	justify-content: center
}

.pcgh-btn.is-fav {
	color: #fb7185;
	border-color: rgba(251,113,133,.5)
}

.pcgh-btn.is-fav i[data-lucide],.pcgh-btn.is-fav svg {
	fill: currentColor
}

.pcgh-login-form__divider {
	position: relative;
	text-align: center;
	margin: 18px 0;
	color: var(--pcgh-text-3);
	font-size: 12px
}

.pcgh-login-form__divider::before,.pcgh-login-form__divider::after {
	content: '';
	position: absolute;
	top: 50%;
	width: calc(50% - 60px);
	height: 1px;
	background: var(--pcgh-border)
}

.pcgh-login-form__divider::before {
	left: 0
}

.pcgh-login-form__divider::after {
	right: 0
}

.pcgh-login-form__socials {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 14px
}

.pcgh-social {
	--pcgh-social-c: #3b82f6;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
	padding: 6px 12px;
	border-radius: 999px;
	background: color-mix(in srgb, var(--pcgh-social-c) 18%, transparent);
	border: 1px solid color-mix(in srgb, var(--pcgh-social-c) 50%, transparent);
	color: var(--pcgh-social-c);
	font-size: 12px;
	font-weight: 500;
	cursor: pointer;
	transition: .2s;
	text-decoration: none
}

.pcgh-social:hover {
	background: var(--pcgh-social-c);
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 4px 14px color-mix(in srgb, var(--pcgh-social-c) 35%, transparent)
}

.pcgh-social i[data-lucide] {
	width: 14px;
	height: 14px;
	flex-shrink: 0
}

.pcgh-social i.ti {
	font-size: 14px;
	line-height: 1;
	flex-shrink: 0
}

.pcgh-social__ali-qq {
	width: 14px;
	height: 14px;
	fill: currentColor;
	flex-shrink: 0
}

.pcgh-social__label {
	line-height: 1
}

html[data-pcgh-theme-resolved="light"] .pcgh-social {
	background: color-mix(in srgb, var(--pcgh-social-c) 10%, #fff);
	border-color: color-mix(in srgb, var(--pcgh-social-c) 28%, #e2e8f0);
	color: var(--pcgh-social-c);
	box-shadow: 0 4px 12px rgba(15,23,42,.04)
}

html[data-pcgh-theme-resolved="light"] .pcgh-social--qq {
	background: color-mix(in srgb, #3b82f6 10%, #fff);
	border-color: rgba(59,130,246,.28);
	color: #3b82f6
}

html[data-pcgh-theme-resolved="light"] .pcgh-social:hover,
html[data-pcgh-theme-resolved="light"] .pcgh-social:focus-visible {
	background: var(--pcgh-social-c);
	border-color: var(--pcgh-social-c);
	color: #fff;
	box-shadow: 0 8px 20px color-mix(in srgb, var(--pcgh-social-c) 28%, transparent)
}

html[data-pcgh-theme-resolved="light"] .pcgh-social--qq:hover,
html[data-pcgh-theme-resolved="light"] .pcgh-social--qq:focus-visible {
	background: #3b82f6;
	border-color: #3b82f6;
	color: #fff
}

/* 单按钮：占满整行（仍紧凑） */
.pcgh-login-form__socials--single {
	padding: 0 4px
}

.pcgh-login-form__socials--single .pcgh-social {
	width: 50%;
	padding: 10px 16px;
	font-size: 13px;
	gap: 7px;
	border-radius: 8px;
	box-shadow: 0 3px 10px color-mix(in srgb, var(--pcgh-social-c) 18%, transparent)
}

.pcgh-login-form__socials--single .pcgh-social i.ti {
	font-size: 16px
}

.pcgh-login-form__socials--single .pcgh-social__ali-qq {
	width: 19px;
	height: 19px
}

.pcgh-login-form__socials--single .pcgh-social i[data-lucide] {
	width: 16px;
	height: 16px
}


.pcgh-qq-icon {
	flex-shrink: 0;
	filter: drop-shadow(0 1px 2px rgba(0,0,0,.25))
}

.pcgh-hcap {
	display: flex;
	justify-content: center;
	margin: 6px 0 4px
}

/* 验证码输入框 - 内嵌"发送"按钮 */
.pcgh-input--code {
	min-width: 0;
	padding-right: 6px;
	overflow: hidden
}

.pcgh-input--code input {
	min-width: 0
}

.pcgh-code-btn {
	flex-shrink: 0;
	max-width: 46%;
	height: 34px;
	padding: 0 12px;
	border: 0;
	border-radius: 6px;
	background: rgba(59,130,246,.15);
	color: var(--pcgh-primary);
	font-size: 12px;
	cursor: pointer;
	transition: .15s;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis
}

.pcgh-code-btn:hover:not(:disabled) {
	background: var(--pcgh-primary);
	color: #fff
}

.pcgh-code-btn:disabled {
	opacity: .6;
	cursor: not-allowed
}

.pcgh-tip {
	font-size: 12px;
	color: var(--pcgh-text-3)
}

/* 表单消息提示 */
.pcgh-form-msg {
	margin-top: 10px;
	padding: 8px 12px;
	border-radius: 6px;
	font-size: 12px
}

.pcgh-form-msg--ok {
	background: rgba(34,197,94,.1);
	color: #4ade80;
	border: 1px solid rgba(34,197,94,.3)
}

.pcgh-form-msg--error {
	background: rgba(239,68,68,.1);
	color: #fca5a5;
	border: 1px solid rgba(239,68,68,.3)
}

/* logo 图片模式 */
.pcgh-logo > img {
	height: 36px;
	width: auto;
	display: block
}

/* ===== 首页统计条 ===== */
.pcgh-stats-section {
	padding-top: 0
}

.pcgh-stats-bar {
	display: grid;
	grid-template-columns: repeat(4,1fr);
	gap: 16px;
	background: linear-gradient(180deg,var(--pcgh-surface) 0%,rgba(20,28,38,.6) 100%);
	border: 1px solid var(--pcgh-border);
	border-radius: var(--pcgh-radius-lg);
	padding: 18px 24px
}

.pcgh-stats-bar__item {
	display: flex;
	align-items: center;
	gap: 12px
}

.pcgh-stats-bar__icon {
	flex-shrink: 0;
	width: 42px;
	height: 42px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: rgba(255,255,255,.04);
	border-radius: 10px
}

.pcgh-stats-bar__icon i[data-lucide],.pcgh-stats-bar__icon svg {
	width: 20px;
	height: 20px
}

.pcgh-stats-bar__item strong {
	display: block;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.2
}

.pcgh-stats-bar__item small {
	display: block;
	font-size: 12px;
	color: var(--pcgh-text-3);
	margin-top: 2px
}

/* ===== 注册弹窗 - 性别按钮 ===== */
.pcgh-input--gender {
	align-items: center;
	gap: 14px
}

.pcgh-input--gender .pcgh-input__label {
	font-size: 13px;
	color: var(--pcgh-text-2)
}

.pcgh-gender {
	display: flex;
	gap: 10px;
	flex: 1
}

.pcgh-gender__btn {
	flex: 1;
	height: 36px;
	background: var(--pcgh-surface);
	border: 1px solid var(--pcgh-border);
	border-radius: 6px;
	color: var(--pcgh-text-2);
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	font-size: 13px;
	transition: .15s
}

.pcgh-gender__btn:hover {
	color: var(--pcgh-text)
}

.pcgh-gender__btn.is-active {
	background: var(--pcgh-primary);
	color: #fff;
	border-color: var(--pcgh-primary)
}

.pcgh-gender__male {
	color: #3b82f6
}

.pcgh-gender__female {
	color: #ec4899
}

.pcgh-gender__btn.is-active .pcgh-gender__male,.pcgh-gender__btn.is-active .pcgh-gender__female {
	color: #fff
}

/* 验证码图片 */
.pcgh-input--captcha {
	padding-right: 6px
}

.pcgh-captcha-img {
	flex-shrink: 0;
	height: 34px;
	width: 90px;
	border-radius: 5px;
	cursor: pointer;
	background: #f5deb3
}

.pcgh-captcha-refresh {
	background: transparent;
	border: 0;
	color: var(--pcgh-primary);
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	gap: 2px;
	padding: 0;
	font-size: 12px
}

.pcgh-slide-verify {
	--pcgh-slide-progress: 0%;
	--pcgh-slide-x: 150px;
	--pcgh-slide-y: 28px;
	position: relative;
	margin: 4px 0 6px
}

.pcgh-slide-verify__bg {
	height: 82px;
	border: 1px solid var(--pcgh-border);
	border-radius: 10px;
	background: linear-gradient(135deg,rgba(var(--pcgh-primary-rgb),.22),rgba(15,23,42,.72)),radial-gradient(circle at 78% 28%,rgba(255,255,255,.18) 0 8px,transparent 9px),radial-gradient(circle at 26% 68%,rgba(255,255,255,.12) 0 14px,transparent 15px);
	margin-bottom: 8px;
	position: relative;
	overflow: hidden
}

.pcgh-slide-verify__hole,
.pcgh-slide-verify__piece {
	position: absolute;
	top: var(--pcgh-slide-y);
	left: var(--pcgh-slide-x);
	width: 38px;
	height: 38px;
	border-radius: 11px
}

.pcgh-slide-verify__hole {
	background: rgba(2,6,23,.5);
	border: 1px solid rgba(255,255,255,.3);
	box-shadow: inset 0 0 18px rgba(0,0,0,.4)
}

.pcgh-slide-verify__piece {
	left: 12px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg,var(--pcgh-primary),#60a5fa);
	color: #fff;
	box-shadow: 0 10px 22px rgba(var(--pcgh-primary-rgb),.38);
	touch-action: none
}

.pcgh-slide-verify__track {
	position: relative;
	height: 40px;
	border: 1px solid var(--pcgh-border);
	border-radius: 999px;
	background: rgba(255,255,255,.06);
	overflow: hidden;
	user-select: none
}

.pcgh-slide-verify__track::before {
	content: '';
	position: absolute;
	inset: 0 auto 0 0;
	width: var(--pcgh-slide-progress);
	background: linear-gradient(90deg,rgba(var(--pcgh-primary-rgb),.22),rgba(var(--pcgh-primary-rgb),.45));
	transition: width .08s linear
}

.pcgh-slide-verify__text {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--pcgh-text-3);
	font-size: 13px;
	pointer-events: none
}

.pcgh-slide-verify__btn {
	position: absolute;
	left: 2px;
	top: 2px;
	width: 36px;
	height: 36px;
	border: 0;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg,var(--pcgh-primary),#60a5fa);
	color: #fff;
	cursor: grab;
	box-shadow: 0 8px 18px rgba(var(--pcgh-primary-rgb),.35);
	touch-action: none
}

.pcgh-slide-verify__btn:active {
	cursor: grabbing
}

.pcgh-slide-verify.is-verified .pcgh-slide-verify__track {
	border-color: rgba(34,197,94,.45);
	background: rgba(34,197,94,.12)
}

.pcgh-slide-verify.is-verified .pcgh-slide-verify__text {
	color: #86efac;
	font-weight: 600
}

.pcgh-slide-verify.is-verified .pcgh-slide-verify__btn {
	background: linear-gradient(135deg,#22c55e,#86efac);
	box-shadow: 0 8px 18px rgba(34,197,94,.32)
}

.pcgh-slide-verify.is-verified .pcgh-slide-verify__piece {
	background: linear-gradient(135deg,#22c55e,#86efac);
	box-shadow: 0 10px 22px rgba(34,197,94,.32)
}

.pcgh-check--block {
	display: flex;
	font-size: 12px;
	color: var(--pcgh-text-2);
	margin: 8px 0 14px
}

/* ===== 编辑资料弹窗 ===== */
.pcgh-modal__panel--wide {
	width: min(640px,calc(100vw - 32px));
	padding: 28px
}

/* hero 按钮内中部分：“N 个网盘”徽章 */
.pcgh-btn__badge {
	margin-left: 6px;
	padding: 1px 7px;
	background: rgba(255,255,255,.2);
	border-radius: 99px;
	font-size: 11px;
	font-weight: 600
}

/* ============================================================
 * [pcgh_dl] 短代码 — 正文中插入的下载按钮卡片
 * ========================================================== */
.pcgh-dl-inline {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 14px 16px;
	margin: 14px 0;
	background: var(--pcgh-surface-2);
	border: 1px solid var(--pcgh-border);
	border-radius: 12px;
	transition: .18s
}

.pcgh-dl-inline:hover {
	border-color: rgba(124,58,237,.4);
	transform: translateY(-1px);
	box-shadow: 0 6px 18px -8px rgba(0,0,0,.4)
}

.pcgh-dl-inline__icon {
	flex-shrink: 0;
	width: 42px;
	height: 42px;
	border-radius: 10px;
	display: inline-flex;
	align-items: center;
	justify-content: center
}

.pcgh-dl-inline__icon i[data-lucide] {
	width: 20px;
	height: 20px
}

.pcgh-dl-inline__icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block
}

.pcgh-dl-inline__info {
	flex: 1;
	min-width: 0
}

.pcgh-dl-inline__title-row {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
	line-height: 1.3
}

.pcgh-dl-inline__title-row strong {
	color: #fff;
	font-size: 14px;
	font-weight: 600
}

.pcgh-dl-inline__title-row em {
	font-style: normal;
	color: var(--pcgh-text-3);
	font-size: 12px;
	padding: 1px 8px;
	background: var(--pcgh-bg);
	border-radius: 99px
}

.pcgh-dl-inline__note {
	display: block;
	margin-top: 4px;
	color: var(--pcgh-text-3);
	font-size: 12px;
	line-height: 1.55
}

.pcgh-dl-inline__pwds {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-top: 8px
}

.pcgh-dl-inline__pwd {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	padding: 4px 9px;
	border-radius: 6px;
	background: var(--pcgh-bg);
	border: 1px solid var(--pcgh-border);
	color: var(--pcgh-text-2);
	font-size: 11px;
	cursor: pointer;
	transition: .15s;
	line-height: 1
}

.pcgh-dl-inline__pwd:hover {
	border-color: var(--pcgh-primary);
	background: rgba(124,58,237,.12);
	color: #fff
}

.pcgh-dl-inline__pwd i[data-lucide] {
	width: 11px;
	height: 11px;
	color: var(--pcgh-text-3)
}

.pcgh-dl-inline__pwd:hover i[data-lucide] {
	color: var(--pcgh-primary)
}

.pcgh-dl-inline__pwd-label {
	color: var(--pcgh-text-3);
	font-size: 10px
}

.pcgh-dl-inline__pwd code {
	color: #fff;
	font-family: Menlo,Consolas,monospace;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: .5px
}

.pcgh-dl-inline__pwd.is-copied {
	background: rgba(34,197,94,.18);
	border-color: rgba(34,197,94,.5);
	color: #4ade80
}

.pcgh-dl-inline__go {
	flex-shrink: 0;
	padding: 9px 16px;
	font-size: 12px;
	display: inline-flex;
	align-items: center;
	gap: 5px;
	white-space: nowrap;
	border-radius: 8px
}

.pcgh-dl-inline__go i[data-lucide] {
	width: 13px;
	height: 13px
}

@media (max-width:560px) {
	.pcgh-dl-inline {
		flex-wrap: wrap;
		padding: 12px
	}

	.pcgh-dl-inline__go {
		width: 100%;
		justify-content: center;
		order: 3
	}

}

/* ===== 按钮颜色变体（用于单条下载源 btn_color） ===== */
.pcgh-btn--blue {
	background: #3b82f6;
	color: #fff
}

.pcgh-btn--blue:hover {
	background: #2563eb;
	color: #fff
}

.pcgh-btn--green {
	background: #10b981;
	color: #fff
}

.pcgh-btn--green:hover {
	background: #059669;
	color: #fff
}

.pcgh-btn--red {
	background: #ef4444;
	color: #fff
}

.pcgh-btn--red:hover {
	background: #dc2626;
	color: #fff
}

.pcgh-btn--orange {
	background: #f59e0b;
	color: #fff
}

.pcgh-btn--orange:hover {
	background: #d97706;
	color: #fff
}

.pcgh-btn--purple {
	background: #a855f7;
	color: #fff
}

.pcgh-btn--purple:hover {
	background: #7c3aed;
	color: #fff
}

.pcgh-btn--gold {
	background: linear-gradient(135deg,#fbbf24,#f59e0b);
	color: #fff;
	border: 0
}

.pcgh-btn--gold:hover {
	background: linear-gradient(135deg,#f59e0b,#d97706);
	color: #fff
}

.pcgh-btn--black {
	background: #1f2937;
	color: #fff;
	border: 1px solid #374151
}

.pcgh-btn--black:hover {
	background: #111827;
	color: #fff
}

.pcgh-profile-form__layout {
	display: grid;
	grid-template-columns: 160px 1fr;
	gap: 24px;
	margin-bottom: 14px
}

.pcgh-profile-form__avatar {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px
}

.pcgh-form-label {
	display: block;
	font-size: 13px;
	color: var(--pcgh-text-2);
	margin-bottom: 6px
}

/* 头像上传 */
.pcgh-avatar-uploader {
	position: relative;
	width: 120px;
	height: 120px;
	border-radius: 50%;
	cursor: pointer;
	overflow: hidden;
	background: var(--pcgh-surface-2);
	border: 2px solid var(--pcgh-border);
	transition: .2s
}

.pcgh-avatar-uploader:hover {
	border-color: var(--pcgh-primary)
}

.pcgh-avatar-uploader img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block
}

.pcgh-avatar-uploader__cam {
	position: absolute;
	right: 6px;
	bottom: 6px;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: var(--pcgh-primary);
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 12px rgba(0,0,0,.4)
}

.pcgh-avatar-uploader__cam i[data-lucide] {
	width: 14px;
	height: 14px
}

.pcgh-form-row {
	margin-bottom: 14px
}

.pcgh-input--textarea {
	height: auto;
	padding: 10px 14px;
	align-items: flex-start;
	position: relative
}

.pcgh-input--textarea textarea {
	flex: 1;
	background: transparent;
	border: 0;
	outline: 0;
	color: var(--pcgh-text);
	font-size: 14px;
	font-family: inherit;
	line-height: 1.6;
	resize: vertical;
	width: 100%
}

.pcgh-input__counter {
	position: absolute;
	right: 10px;
	bottom: 6px;
	font-size: 11px;
	color: var(--pcgh-text-3);
	pointer-events: none
}

.pcgh-input select {
	flex: 1;
	background: transparent;
	border: 0;
	outline: 0;
	color: var(--pcgh-text);
	font-size: 14px;
	appearance: none;
	-webkit-appearance: none;
	cursor: pointer
}

.pcgh-input select option {
	background: var(--pcgh-surface);
	color: var(--pcgh-text)
}

.pcgh-input select + i[data-lucide] {
	margin-left: auto
}

.pcgh-profile-form__actions {
	display: flex;
	gap: 10px;
	justify-content: flex-end;
	padding-top: 8px;
	border-top: 1px solid var(--pcgh-border)
}

/* ===== 网盘下载卡片（详情页 + 弹窗共用） ===== */
.pcgh-card-section__sub {
	margin-left: auto;
	font-size: 12px;
	color: var(--pcgh-text-3)
}

.pcgh-disk-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill,minmax(280px,1fr));
	gap: 14px;
	padding: 18px
}

.pcgh-disk-card {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding: 16px;
	background: var(--pcgh-surface);
	border: 1px solid var(--pcgh-border);
	border-radius: var(--pcgh-radius);
	transition: .2s;
	border-top: 3px solid var(--disk,var(--pcgh-primary))
}

.pcgh-disk-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 28px rgba(0,0,0,.35);
	border-color: var(--disk,var(--pcgh-primary))
}

.pcgh-disk-card__head {
	display: flex;
	align-items: center;
	gap: 12px
}

.pcgh-disk-card__icon {
	flex-shrink: 0;
	width: 42px;
	height: 42px;
	border-radius: 10px;
	background: color-mix(in srgb,var(--disk,#3b82f6) 18%,transparent);
	color: var(--disk,var(--pcgh-primary));
	display: inline-flex;
	align-items: center;
	justify-content: center
}

.pcgh-disk-card__icon i[data-lucide],.pcgh-disk-card__icon svg {
	width: 22px;
	height: 22px
}

.pcgh-disk-card__title strong {
	display: block;
	font-size: 15px;
	color: var(--pcgh-text);
	font-weight: 600
}

.pcgh-disk-card__title small {
	display: block;
	font-size: 12px;
	color: var(--pcgh-text-3);
	margin-top: 2px
}

.pcgh-disk-card__note {
	margin: 0;
	font-size: 12px;
	color: var(--pcgh-text-3);
	line-height: 1.5
}

.pcgh-disk-card__codes {
	display: flex;
	flex-wrap: wrap;
	gap: 6px
}

.pcgh-code-chip {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 5px 10px;
	font-size: 12px;
	color: var(--pcgh-text-2);
	background: var(--pcgh-surface-2);
	border: 1px dashed var(--pcgh-border);
	border-radius: 6px;
	cursor: pointer;
	user-select: all;
	transition: .15s
}

.pcgh-code-chip:hover {
	border-color: var(--disk,var(--pcgh-primary));
	color: var(--disk,var(--pcgh-primary));
	border-style: solid
}

.pcgh-code-chip i[data-lucide],.pcgh-code-chip svg {
	width: 13px;
	height: 13px;
	flex-shrink: 0
}

.pcgh-code-chip b {
	color: var(--pcgh-text);
	font-weight: 600;
	font-family: Menlo,Consolas,monospace
}

.pcgh-code-chip.is-copied {
	border-color: #22c55e;
	color: #22c55e;
	border-style: solid
}

.pcgh-modal__panel--wide .pcgh-disk-grid {
	padding: 0;
	max-height: 60vh;
	overflow-y: auto
}

.pcgh-login-form__foot {
	text-align: center;
	font-size: 13px;
	color: var(--pcgh-text-3);
	margin: 14px 0 0;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 0
}

.pcgh-login-form__foot .pcgh-link {
	display: inline-flex;
	align-items: center;
	gap: 4px
}

.pcgh-login-form__foot .pcgh-link i[data-lucide] {
	width: 13px;
	height: 13px
}

/* ===== 帮助弹窗（遇到问题）：FAQ 列表 + 联系方式 ===== */
.pcgh-help-list {
	list-style: none;
	margin: 0 0 14px;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 10px
}

.pcgh-help-list li {
	display: flex;
	gap: 12px;
	align-items: flex-start;
	padding: 12px 14px;
	background: var(--pcgh-surface-2);
	border: 1px solid var(--pcgh-border);
	border-radius: 10px;
	transition: .18s
}

.pcgh-help-list li:hover {
	border-color: rgba(124,58,237,.35)
}

.pcgh-help-list__icon {
	flex-shrink: 0;
	width: 34px;
	height: 34px;
	border-radius: 8px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: rgba(124,58,237,.15);
	color: #c4b5fd
}

.pcgh-help-list__icon i[data-lucide] {
	width: 16px;
	height: 16px
}

.pcgh-help-list li > div {
	flex: 1;
	min-width: 0
}

.pcgh-help-list strong {
	display: block;
	font-size: 13px;
	color: #fff;
	font-weight: 600;
	margin-bottom: 3px
}

.pcgh-help-list p {
	margin: 0;
	color: var(--pcgh-text-2);
	font-size: 12px;
	line-height: 1.65
}

.pcgh-help-list p b {
	color: #fff
}

.pcgh-help-list p a {
	color: var(--pcgh-primary);
	font-weight: 500
}

.pcgh-help-contact {
	margin: 0 0 4px;
	padding: 12px 14px;
	background: linear-gradient(135deg,rgba(124,58,237,.12),rgba(124,58,237,.04));
	border: 1px solid rgba(124,58,237,.25);
	border-radius: 10px
}

.pcgh-help-contact__head {
	display: flex;
	align-items: center;
	gap: 6px;
	color: #c4b5fd;
	font-size: 12px;
	font-weight: 600;
	margin-bottom: 8px
}

.pcgh-help-contact__head i[data-lucide] {
	width: 14px;
	height: 14px
}

.pcgh-help-contact__body {
	display: flex;
	flex-wrap: wrap;
	gap: 8px
}

.pcgh-help-contact__item {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	padding: 6px 12px;
	border-radius: 8px;
	background: var(--pcgh-bg);
	border: 1px solid var(--pcgh-border);
	color: var(--pcgh-text-2);
	font-size: 12px;
	font-weight: 500;
	cursor: pointer;
	transition: .15s
}

.pcgh-help-contact__item:hover {
	border-color: var(--pcgh-primary);
	color: #fff;
	background: rgba(124,58,237,.1)
}

.pcgh-help-contact__item i[data-lucide] {
	width: 13px;
	height: 13px;
	color: var(--pcgh-text-3)
}

.pcgh-help-contact__item:hover i[data-lucide] {
	color: var(--pcgh-primary)
}

html[data-pcgh-theme-resolved="light"] .pcgh-help-list li {
	background: #f8fafc;
	border-color: #e2e8f0;
	box-shadow: 0 8px 22px rgba(15,23,42,.04)
}

html[data-pcgh-theme-resolved="light"] .pcgh-help-list li:hover {
	background: #fff;
	border-color: rgba(var(--pcgh-primary-rgb),.32)
}

html[data-pcgh-theme-resolved="light"] .pcgh-help-list__icon {
	background: rgba(var(--pcgh-primary-rgb),.1);
	color: var(--pcgh-primary)
}

html[data-pcgh-theme-resolved="light"] .pcgh-help-list strong,
html[data-pcgh-theme-resolved="light"] .pcgh-help-list p b {
	color: var(--pcgh-text)
}

html[data-pcgh-theme-resolved="light"] .pcgh-help-list p {
	color: var(--pcgh-text-2)
}

html[data-pcgh-theme-resolved="light"] .pcgh-help-contact {
	background: linear-gradient(135deg,rgba(var(--pcgh-primary-rgb),.08),rgba(var(--pcgh-primary-rgb),.03));
	border-color: rgba(var(--pcgh-primary-rgb),.18)
}

html[data-pcgh-theme-resolved="light"] .pcgh-help-contact__head {
	color: var(--pcgh-primary)
}

html[data-pcgh-theme-resolved="light"] .pcgh-help-contact__item {
	background: #fff;
	border-color: #e2e8f0;
	color: var(--pcgh-text-2)
}

html[data-pcgh-theme-resolved="light"] .pcgh-help-contact__item:hover {
	background: rgba(var(--pcgh-primary-rgb),.08);
	border-color: rgba(var(--pcgh-primary-rgb),.32);
	color: var(--pcgh-primary)
}

html[data-pcgh-theme-resolved="light"] .pcgh-help-contact__item i[data-lucide] {
	color: var(--pcgh-text-3)
}

html[data-pcgh-theme-resolved="light"] .pcgh-help-contact__item:hover i[data-lucide] {
	color: var(--pcgh-primary)
}

@keyframes pcgh-fade {
	from {
		opacity: 0
	}

	to {
		opacity: 1
	}
}

@keyframes pcgh-pop {
	from {
		opacity: 0;
		transform: translateY(10px) scale(.97)
	}

	to {
		opacity: 1;
		transform: none
	}
}

/* ===== Sidebar Widgets (主题 widget 共用) ===== */
.pcgh-rank-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 6px
}

.pcgh-rank-list li {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 8px 4px;
	border-bottom: 1px dashed var(--pcgh-border);
	font-size: 13px
}

.pcgh-rank-list li:last-child {
	border-bottom: 0
}

.pcgh-rank-num {
	flex-shrink: 0;
	width: 22px;
	height: 22px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--pcgh-surface-2);
	color: var(--pcgh-text-3);
	border-radius: 5px;
	font-size: 11px;
	font-weight: 700
}

.pcgh-rank-num--1 {
	background: #ef4444;
	color: #fff
}

.pcgh-rank-num--2 {
	background: #f97316;
	color: #fff
}

.pcgh-rank-num--3 {
	background: #f59e0b;
	color: #fff
}

.pcgh-rank-list a {
	color: var(--pcgh-text-2);
	text-decoration: none;
	flex: 1;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap
}

.pcgh-rank-list a:hover {
	color: var(--pcgh-primary)
}

.pcgh-rank-list small {
	color: var(--pcgh-text-3);
	font-size: 11px;
	flex-shrink: 0
}

.pcgh-latest-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 10px
}

.pcgh-latest-list a {
	display: flex;
	gap: 10px;
	color: var(--pcgh-text-2);
	text-decoration: none;
	align-items: center
}

.pcgh-latest-list a:hover .pcgh-latest-text strong {
	color: var(--pcgh-primary)
}

.pcgh-latest-thumb {
	flex-shrink: 0;
	width: 60px;
	height: 42px;
	background: var(--pcgh-surface-2) center/cover no-repeat;
	border-radius: 5px
}

.pcgh-latest-text {
	display: flex;
	flex-direction: column;
	gap: 2px;
	min-width: 0;
	flex: 1
}

.pcgh-latest-text strong {
	font-size: 13px;
	font-weight: 500;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	color: var(--pcgh-text)
}

.pcgh-latest-text small {
	font-size: 11px;
	color: var(--pcgh-text-3)
}

.pcgh-rating-dist {
	display: flex;
	flex-direction: column;
	gap: 6px
}

.pcgh-rating-row {
	display: grid;
	grid-template-columns: 30px 1fr 50px;
	gap: 8px;
	align-items: center;
	font-size: 12px;
	color: var(--pcgh-text-3)
}

.pcgh-rating-bar {
	height: 6px;
	background: var(--pcgh-surface-2);
	border-radius: 3px;
	overflow: hidden
}

.pcgh-rating-bar > span {
	display: block;
	height: 100%;
	background: linear-gradient(90deg,#f59e0b,#fbbf24);
	border-radius: inherit
}

.pcgh-dlc-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 8px
}

.pcgh-dlc-list a {
	display: flex;
	gap: 10px;
	align-items: center;
	text-decoration: none;
	color: var(--pcgh-text-2);
	padding: 6px;
	border-radius: 6px;
	transition: .15s
}

.pcgh-dlc-list a:hover {
	background: var(--pcgh-surface-2)
}

.pcgh-dlc-list img {
	width: 42px;
	height: 42px;
	border-radius: 5px;
	object-fit: cover
}

.pcgh-dlc-list strong {
	display: block;
	font-size: 13px;
	color: var(--pcgh-text)
}

.pcgh-dlc-list small {
	display: block;
	font-size: 11px;
	color: var(--pcgh-text-3)
}

/* 每日签到 */
/* 签到 widget — 进度条 + 7 天网格（Tabler 图标 + 主题色） */
.pcgh-signin-progress {
	margin: 0 0 12px
}

.pcgh-signin-progress__head {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 11px;
	color: var(--pcgh-text-3);
	margin-bottom: 6px
}

.pcgh-signin-progress__head b {
	color: var(--pcgh-primary);
	font-weight: 700;
	margin: 0 2px
}

.pcgh-signin-progress__bar {
	height: 6px;
	border-radius: 99px;
	background: rgba(var(--pcgh-primary-rgb),.12);
	overflow: hidden
}

.pcgh-signin-progress__bar > span {
	display: block;
	height: 100%;
	background: linear-gradient(90deg,var(--pcgh-primary),rgba(var(--pcgh-primary-rgb),.7));
	border-radius: 99px;
	transition: width .4s ease
}

.pcgh-signin-grid {
	display: grid;
	grid-template-columns: repeat(7,1fr);
	gap: 6px;
	margin-bottom: 12px
}

.pcgh-signin-day {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 4px;
	padding: 8px 4px;
	background: var(--pcgh-surface-2);
	border: 1px solid var(--pcgh-border);
	border-radius: 8px;
	text-align: center;
	transition: .15s
}

.pcgh-signin-day small {
	font-size: 11px;
	color: var(--pcgh-text-3);
	line-height: 1
}

.pcgh-signin-day b {
	font-size: 11px;
	color: var(--pcgh-text-2);
	font-weight: 600;
	line-height: 1
}

.pcgh-signin-day__icon {
	display: inline-flex;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: rgba(var(--pcgh-text-3-rgb,107,119,133),.18);
	align-items: center;
	justify-content: center;
	color: var(--pcgh-text-3);
	transition: .15s
}

.pcgh-signin-day__icon i.ti {
	font-size: 14px;
	line-height: 1
}

.pcgh-signin-day.is-done {
	background: rgba(var(--pcgh-primary-rgb),.10);
	border-color: rgba(var(--pcgh-primary-rgb),.5)
}

.pcgh-signin-day.is-done .pcgh-signin-day__icon {
	background: var(--pcgh-primary);
	color: #fff
}

.pcgh-signin-day.is-active {
	background: rgba(var(--pcgh-primary-rgb),.18);
	border-color: var(--pcgh-primary);
	box-shadow: 0 0 0 2px rgba(var(--pcgh-primary-rgb),.25)
}

.pcgh-signin-day.is-active b {
	color: var(--pcgh-primary)
}

.pcgh-signin-day.is-active .pcgh-signin-day__icon {
	background: var(--pcgh-primary);
	color: #fff
}

.pcgh-signin-day.is-big .pcgh-signin-day__icon {
	background: #ef4444;
	color: #fff
}

.pcgh-signin-day.is-big.is-done .pcgh-signin-day__icon {
	background: #ef4444
}

.pcgh-signin-foot {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 12px;
	font-size: 12px;
	color: var(--pcgh-text-3)
}

.pcgh-signin-foot span {
	display: inline-flex;
	align-items: center;
	gap: 5px
}

.pcgh-signin-foot i.ti {
	font-size: 14px;
	color: var(--pcgh-primary)
}

.pcgh-signin-foot b {
	color: var(--pcgh-primary);
	font-weight: 700;
	margin: 0 2px
}

/* 最近签到用户 */
.pcgh-signin-recent {
	margin-top: 14px;
	padding-top: 14px;
	border-top: 1px solid var(--pcgh-border)
}

.pcgh-signin-recent__head {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 10px;
	font-size: 12px;
	color: var(--pcgh-text-3)
}

.pcgh-signin-recent__head a {
	display: inline-flex;
	align-items: center;
	gap: 2px;
	color: var(--pcgh-text-3);
	text-decoration: none;
	transition: .15s
}

.pcgh-signin-recent__head a:hover {
	color: var(--pcgh-primary)
}

.pcgh-signin-recent__head i[data-lucide] {
	width: 11px;
	height: 11px
}

.pcgh-signin-recent__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(5,1fr);
	gap: 8px
}

.pcgh-signin-recent__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 5px;
	min-width: 0
}

.pcgh-signin-recent__avatar {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	overflow: hidden;
	flex-shrink: 0;
	border: 2px solid var(--pcgh-border);
	transition: .18s
}

.pcgh-signin-recent__item:hover .pcgh-signin-recent__avatar {
	border-color: rgba(var(--pcgh-primary-rgb),.5);
	transform: translateY(-2px)
}

.pcgh-signin-recent__avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block
}

.pcgh-signin-recent__name {
	font-size: 11px;
	color: var(--pcgh-text-2);
	max-width: 100%;
	text-align: center;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis
}

/* 玩家评分 widget */
.pcgh-side-card--rating {
	overflow: hidden;
	background: linear-gradient(180deg,rgba(251,191,36,.10),rgba(124,58,237,.06) 54%,var(--pcgh-surface));
	border-color: rgba(251,191,36,.18)
}

.pcgh-w-rating {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	padding: 10px 0 6px;
	position: relative
}

.pcgh-w-rating::before {
	content: '';
	position: absolute;
	top: 1px;
	width: 118px;
	height: 118px;
	border-radius: 50%;
	background: radial-gradient(circle,rgba(251,191,36,.16),transparent 68%);
	pointer-events: none
}

.pcgh-w-rating__main {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	gap: 12px;
	width: 100%;
	padding: 10px;
	border-radius: 12px;
	background: rgba(255,255,255,.045);
	border: 1px solid rgba(255,255,255,.07)
}

.pcgh-w-rating__badge {
	flex-shrink: 0;
	width: 54px;
	height: 54px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 16px;
	background: rgba(255,255,255,.06);
	border: 1px solid rgba(255,255,255,.10);
	box-shadow: 0 10px 26px rgba(0,0,0,.22)
}

.pcgh-w-rating__badge i[data-lucide] {
	width: 28px;
	height: 28px
}

.pcgh-w-rating__content {
	min-width: 0;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 4px
}

.pcgh-w-rating__score-wrap {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: flex-end;
	gap: 4px
}

.pcgh-w-rating__score {
	font-size: 38px;
	font-weight: 800;
	line-height: 1;
	letter-spacing: -1px
}

.pcgh-w-rating__total {
	margin-bottom: 6px;
	font-size: 14px;
	color: var(--pcgh-text-3);
	font-weight: 700
}

.pcgh-w-rating .pcgh-stars {
	position: relative;
	z-index: 1;
	gap: 3px;
	margin-top: 0
}

.pcgh-w-rating .pcgh-star,
.pcgh-w-rating .pcgh-star svg,
.pcgh-w-rating .pcgh-star i[data-lucide] {
	width: 16px;
	height: 16px
}

.pcgh-w-rating__meta {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1fr;
	gap: 6px;
	width: 100%;
	margin-top: 4px
}

.pcgh-w-rating__meta span {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
	padding: 7px 10px;
	border-radius: 8px;
	background: rgba(255,255,255,.045);
	border: 1px solid rgba(255,255,255,.07);
	font-size: 11px;
	color: var(--pcgh-text-3)
}

.pcgh-w-rating__meta i[data-lucide] {
	width: 13px;
	height: 13px;
	color: var(--pcgh-primary)
}

.pcgh-w-rating__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
	width: 100%;
	margin-top: 4px;
	padding: 9px 14px;
	font-size: 12px;
	color: var(--pcgh-primary);
	background: rgba(var(--pcgh-primary-rgb),.08);
	border: 1px solid rgba(var(--pcgh-primary-rgb),.28);
	border-radius: 10px;
	text-decoration: none;
	transition: .15s
}

.pcgh-w-rating__link:hover {
	background: rgba(var(--pcgh-primary-rgb),.14);
	border-color: rgba(var(--pcgh-primary-rgb),.55);
	transform: translateY(-1px)
}

.pcgh-w-rating__link i[data-lucide] {
	width: 13px;
	height: 13px
}

/* widget 移动端隐藏开关 */
@media (max-width:720px) {
	.pcgh-side-card.is-hide-mobile,
	.widget.is-hide-mobile {
		display: none !important
	}
}

/* Tabler 图标全局微调（在 Lucide 旁共存） */
i.ti {
	display: inline-block;
	line-height: 1;
	vertical-align: -2px
}

.pcgh-side-card__head h3 > i.ti {
	font-size: 16px;
	color: var(--pcgh-primary)
}

/* 热门话题列表（标题靠左 / 阅读量靠右） */
.pcgh-topics-list li {
	padding: 10px 4px;
	font-size: 13px
}

.pcgh-topics-list small {
	display: inline-flex;
	align-items: center;
	gap: 4px
}

.pcgh-topics-list small i[data-lucide] {
	width: 11px;
	height: 11px
}

/* ===== 短代码 [pcgh_download] / [pcgh_alert] 输出 ===== */
.pcgh-shortcode-download {
	margin: 24px 0;
	background: var(--pcgh-surface);
	border: 1px solid var(--pcgh-border);
	border-radius: var(--pcgh-radius-lg);
	padding: 18px;
	position: relative
}

.pcgh-shortcode-download__head {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 14px;
	padding-bottom: 12px;
	border-bottom: 1px dashed var(--pcgh-border)
}

.pcgh-shortcode-download__title {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-weight: 700;
	font-size: 15px;
	color: var(--pcgh-text)
}

.pcgh-shortcode-download__title i[data-lucide] {
	width: 16px;
	height: 16px;
	color: var(--pcgh-primary)
}

.pcgh-shortcode-download__head small {
	font-size: 12px;
	color: var(--pcgh-text-3)
}

.pcgh-disk-grid--inline {
	padding: 0;
	grid-template-columns: repeat(auto-fill,minmax(260px,1fr))
}

.pcgh-shortcode-empty {
	padding: 18px;
	text-align: center;
	color: var(--pcgh-text-3);
	background: var(--pcgh-surface-2);
	border: 1px dashed var(--pcgh-border);
	border-radius: 8px;
	font-size: 13px
}

/* [pcgh_alert] */
.pcgh-alert {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	padding: 12px 16px;
	margin: 16px 0;
	border-radius: 8px;
	font-size: 14px;
	line-height: 1.6;
	border: 1px solid transparent
}

.pcgh-alert i[data-lucide] {
	flex-shrink: 0;
	width: 16px;
	height: 16px;
	margin-top: 3px
}

.pcgh-alert--info {
	background: rgba(59,130,246,.08);
	color: #93c5fd;
	border-color: rgba(59,130,246,.25)
}

.pcgh-alert--success {
	background: rgba(34,197,94,.08);
	color: #4ade80;
	border-color: rgba(34,197,94,.25)
}

.pcgh-alert--warn {
	background: rgba(245,158,11,.08);
	color: #fbbf24;
	border-color: rgba(245,158,11,.25)
}

.pcgh-alert--error {
	background: rgba(239,68,68,.1);
	color: #fca5a5;
	border-color: rgba(239,68,68,.3)
}

/* ===========================================================
 * Category / Archive Page = 游戏库（GameVault 风格）
 * =========================================================== */

/* ---------- Hero（独立横图大背景卡） ---------- */
.pcgh-libhero-section {
	margin-top: 20px;
	margin-bottom: 20px
}

.pcgh-libhero {
	position: relative;
	margin-bottom: 0;
	background: #1a1240;
	border: 1px solid var(--pcgh-border);
	border-radius: var(--pcgh-radius-lg);
	overflow: hidden;
	min-height: 200px
}

.pcgh-libhero.has-cover {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat
}
/* 默认（无背景图）紫色渐变兜底 */
.pcgh-libhero::before {
	content: '';
	position: absolute;
	inset: 0;
	pointer-events: none;
	background: linear-gradient(120deg,#1a1240 0%,#2d1b69 50%,#1e1340 100%)
}
/* 有背景图：左→右渐变蒙版（左侧文字可读） */
.pcgh-libhero.has-cover::before {
	background: linear-gradient(90deg,
		rgba(15,20,25,.92) 0%,
		rgba(15,20,25,.7) 35%,
		rgba(15,20,25,.35) 60%,
		rgba(15,20,25,0) 100%)
}

.pcgh-libhero__inner {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	padding: 46px 36px;
	min-height: 200px
}

.pcgh-libhero__text {
	max-width: min(620px,70%);
	color: #fff
}

.pcgh-libhero__text h1 {
	margin: 0 0 10px;
	font-size: 34px;
	font-weight: 800;
	color: #fff;
	letter-spacing: .5px;
	text-shadow: 0 2px 12px rgba(0,0,0,.5)
}

.pcgh-libhero__text p {
	margin: 0;
	color: rgba(255,255,255,.78);
	font-size: 14px;
	line-height: 1.6;
	text-shadow: 0 1px 6px rgba(0,0,0,.4)
}

/* ---------- 分类 Tabs（一级 + 二级混合，自适应排列） ---------- */
.pcgh-libtabs {
	display: grid;
	grid-template-columns: repeat(auto-fill,minmax(96px,1fr));
	gap: 16px;
	background: var(--pcgh-surface);
	border: 1px solid var(--pcgh-border);
	border-radius: var(--pcgh-radius-lg);
	padding: 16px;
	align-items: stretch
}

/* 二级 tab 视觉降权：图标 + 数字色调略浅，区分层级（同尺寸卡片整齐） */
.pcgh-libtab--sub .pcgh-libtab__icon {
	background: transparent;
	border-color: transparent
}

.pcgh-libtab--sub .pcgh-libtab__icon i.ti {
	color: var(--pcgh-text-3)
}

.pcgh-libtab--sub:hover .pcgh-libtab__icon i.ti {
	color: var(--pcgh-primary)
}

.pcgh-libtab {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 7px;
	aspect-ratio: 1/1;
	min-width: 0;
	padding: 10px 8px;
	border: 1px solid rgba(148,163,184,.1);
	border-radius: 16px;
	background: rgb(11 20 42 / 34%);
	color: var(--pcgh-text-2);
	text-decoration: none;
	text-align: center;
	transition: .2s;
	cursor: pointer;
	box-shadow: none
}

.pcgh-libtab:hover {
	background: rgba(30,41,59,.72);
	color: var(--pcgh-text);
	border-color: rgba(var(--pcgh-primary-rgb),.4);
	transform: translateY(-2px);
	box-shadow: 0 10px 24px rgba(2,8,23,.14)
}
/* 激活：主题色实心填充（按参考图风格） */
.pcgh-libtab.is-active {
	background: linear-gradient(135deg,var(--pcgh-primary),#60a5fa);
	border-color: var(--pcgh-primary);
	color: #fff;
	box-shadow: 0 12px 28px -16px rgba(var(--pcgh-primary-rgb),.95),inset 0 1px 0 rgba(255,255,255,.22)
}

.pcgh-libtab.is-active strong {
	color: #fff;
	font-weight: 600
}

.pcgh-libtab.is-active small {
	color: rgba(255,255,255,.88);
	font-weight: 600;
	background: rgba(255,255,255,.18)
}

.pcgh-libtab__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 13px;
	font-size: 24px;
	background: rgba(148,163,184,.06)!important;
	border: 1px solid rgba(148,163,184,.08)!important;
	color: var(--pcgh-text-3);
	transition: .2s;
	box-shadow: none
}

.pcgh-libtab__icon i.ti {
	font-size: 1em!important;
	line-height: 1
}

.pcgh-libtab__icon i[data-lucide] {
	width: 1em!important;
	height: 1em!important;
	stroke-width: 1.6
}

.pcgh-libtab:hover .pcgh-libtab__icon {
	color: var(--pcgh-primary);
	background: rgba(var(--pcgh-primary-rgb),.16)!important;
	border-color: rgba(var(--pcgh-primary-rgb),.38)!important
}

.pcgh-libtab.is-active .pcgh-libtab__icon {
	color: #fff;
	background: rgba(255,255,255,.18)!important;
	border-color: rgba(255,255,255,.3)!important;
	text-shadow: 0 0 18px rgba(var(--pcgh-primary-rgb),.55)
}

.pcgh-libtab--sub.is-active {
	background: linear-gradient(135deg,var(--pcgh-primary),#60a5fa)
}

.pcgh-libtab--sub.is-active .pcgh-libtab__icon i.ti {
	color: #fff
}

.pcgh-libtab strong {
	font-size: 12px;
	font-weight: 600;
	color: inherit;
	max-width: 100%;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis
}

.pcgh-libtab small {
	font-size: 10px;
	color: rgba(148,163,184,.72);
	padding: 2px 7px;
	border-radius: 999px;
	background: rgba(148,163,184,.06)
}

/* ---------- 二级分类（pill chip 横排，主题色激活） ---------- */
.pcgh-libsubtabs {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	margin: 14px 0 0;
	padding: 0
}

.pcgh-libsubtab {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	padding: 7px 14px;
	border-radius: 99px;
	background: var(--pcgh-surface);
	border: 1px solid var(--pcgh-border);
	color: var(--pcgh-text-2);
	font-size: 13px;
	line-height: 1.3;
	text-decoration: none;
	transition: .15s
}

.pcgh-libsubtab:hover {
	color: var(--pcgh-primary);
	border-color: rgba(var(--pcgh-primary-rgb),.5);
	background: rgba(var(--pcgh-primary-rgb),.08)
}

.pcgh-libsubtab small {
	font-size: 11px;
	color: var(--pcgh-text-3);
	font-weight: 400
}

.pcgh-libsubtab.is-active {
	background: var(--pcgh-primary);
	border-color: var(--pcgh-primary);
	color: #fff;
	font-weight: 600;
	box-shadow: 0 6px 16px -8px rgba(var(--pcgh-primary-rgb),.65)
}

.pcgh-libsubtab.is-active small {
	color: rgba(255,255,255,.85)
}

/* ---------- 工具栏（左 sort tabs + 右 计数 / 排序 select） ---------- */
.pcgh-libtoolbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	flex-wrap: wrap;
	margin-bottom: 16px
}

.pcgh-libsort {
	display: flex;
	align-items: center;
	gap: 24px
}

.pcgh-libsort__tab {
	position: relative;
	font-size: 14px;
	color: var(--pcgh-text-3);
	text-decoration: none;
	padding: 6px 0;
	transition: .15s
}

.pcgh-libsort__tab:hover {
	color: var(--pcgh-text)
}

.pcgh-libsort__tab.is-active {
	color: var(--pcgh-primary);
	font-weight: 600
}

.pcgh-libsort__tab.is-active::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: -2px;
	height: 2px;
	background: var(--pcgh-primary);
	border-radius: 1px
}

.pcgh-libtoolbar__right {
	display: flex;
	align-items: center;
	gap: 14px
}

.pcgh-libcount {
	font-size: 13px;
	color: var(--pcgh-text-3)
}

.pcgh-libcount strong {
	color: var(--pcgh-text);
	font-weight: 700;
	margin: 0 2px
}

.pcgh-libfield {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 13px;
	color: var(--pcgh-text-3)
}

.pcgh-libfield select {
	min-width: 110px;
	padding: 7px 30px 7px 12px;
	background: var(--pcgh-surface) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'></polyline></svg>") no-repeat right 10px center;
	border: 1px solid var(--pcgh-border);
	border-radius: 8px;
	color: var(--pcgh-text);
	font-size: 13px;
	-webkit-appearance: none;
	appearance: none;
	cursor: pointer;
	transition: .15s
}

.pcgh-libfield select:hover {
	border-color: var(--pcgh-primary)
}

/* ---------- 卡片网格（6 列竖图 PS Box 风格） ---------- */
.pcgh-libgrid {
	display: grid;
	grid-template-columns: repeat(var(--pcgh-cat-columns,4),1fr);
	gap: 18px
}

.pcgh-libcard {
	display: block;
	background: var(--pcgh-surface);
	border: 1px solid var(--pcgh-border);
	border-radius: var(--pcgh-radius-lg);
	overflow: hidden;
	text-decoration: none;
	color: inherit;
	transition: .18s
}

.pcgh-libcard:hover {
	transform: translateY(-3px);
	border-color: var(--pcgh-primary);
	box-shadow: 0 10px 22px -10px rgba(0,0,0,.45);
	color: var(--pcgh-text)
}

.pcgh-libcard:hover .pcgh-libcard__title {
	color: var(--pcgh-primary)
}

.pcgh-libcard__cover {
	position: relative;
	width: 100%;
	aspect-ratio: var(--pcgh-cover-ratio,4/2);
	background: #0f1419 center/cover no-repeat;
}

.pcgh-libcard__cat-badge {
	position: absolute;
	left: 10px;
	top: 10px;
	padding: 4px 8px;
	border-radius: 6px;
	background: rgba(37,99,235,.92);
	color: #dbeafe;
	font-size: 11px;
	font-weight: 800
}

.pcgh-libcard__body {
	display: flex;
	flex-direction: column;
	gap: 6px;
	padding: 10px 12px
}

.pcgh-libcard__title {
	margin: 0;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.4;
	color: var(--pcgh-text);
	display: -webkit-box;
	-webkit-line-clamp: 1;
	line-clamp: 1;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	transition: .15s
}

.pcgh-libcard__foot {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 2px
}

.pcgh-libcard__size {
	font-size: 12px;
	color: var(--pcgh-text-2);
	font-weight: 600
}

.pcgh-libcard__size--none {
	visibility: hidden
}

.pcgh-libcard__score {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-size: 13px;
	font-weight: 700;
	color: #fbbf24
}

.pcgh-libcard__stars {
	display: inline-flex;
	align-items: center;
	gap: 1px
}

.pcgh-libcard__score i.ti {
	font-size: 1em;
	line-height: 1;
	color: #fbbf24
}

/* 分页（覆盖默认） */
.pcgh-libpagi {
	margin-top: 24px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 6px
}

.pcgh-libpagi .page-numbers {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	min-width: 36px;
	height: 36px;
	padding: 0 12px;
	background: var(--pcgh-surface);
	border: 1px solid var(--pcgh-border);
	border-radius: 8px;
	color: var(--pcgh-text-2);
	font-size: 13px;
	text-decoration: none;
	justify-content: center
}

.pcgh-libpagi .page-numbers:hover {
	border-color: var(--pcgh-primary);
	color: var(--pcgh-primary)
}

.pcgh-libpagi .page-numbers.current {
	background: var(--pcgh-primary);
	color: #fff;
	border-color: var(--pcgh-primary);
	box-shadow: 0 6px 16px -8px rgba(124,58,237,.6)
}

.pcgh-libpagi .page-numbers.dots {
	border-color: transparent;
	background: transparent
}

/* 分页 */
.pcgh-pagination {
	display: flex;
	justify-content: center;
	gap: 6px;
	flex-wrap: wrap;
	padding: 10px 0 10px
}

.pcgh-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 4px;
	min-width: 38px;
	height: 38px;
	padding: 0 12px;
	border-radius: 6px;
	color: var(--pcgh-text-2);
	background: var(--pcgh-surface);
	border: 1px solid var(--pcgh-border);
	text-decoration: none;
	font-size: 13px;
	transition: .15s
}

.pcgh-pagination .page-numbers:hover {
	color: #ffffff;
	border-color: var(--pcgh-primary)
}

.pcgh-pagination .page-numbers.current {
	background: var(--pcgh-primary);
	color: #fff;
	border-color: var(--pcgh-primary)
}

.pcgh-pagination .page-numbers.dots {
	border-color: transparent;
	background: transparent;
	cursor: default
}

.pcgh-pagination .page-numbers i[data-lucide] {
	width: 14px;
	height: 14px
}

/* 空状态 */
.pcgh-empty {
	text-align: center;
	padding: 60px 20px;
	color: var(--pcgh-text-3)
}

.pcgh-empty i[data-lucide] {
	width: 48px;
	height: 48px;
	margin-bottom: 12px;
	opacity: .5
}

.pcgh-empty p {
	margin: 0;
	font-size: 14px
}

.pcgh-empty a {
	color: var(--pcgh-primary)
}

.pcgh-home-search-section {
	position: relative;
	min-height: var(--pcgh-home-search-height,360px);
	padding: 64px 0 28px;
	display: flex;
	align-items: center;
	background: #050914 center/cover no-repeat;
	overflow: hidden
}
.pcgh-home-search-section:before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg,rgba(5,9,20,.82),rgba(5,9,20,.38),rgba(5,9,20,.82)),
		linear-gradient(180deg,rgba(5,9,20,.16) 0%,rgba(15,20,25,.44) 62%,rgba(15,20,25,.16) 88%,rgba(15,20,25,0) 100%);
	pointer-events: none
}
.pcgh-home-search-section:after {
	content: "";
	position: absolute;
	left: -12%;
	right: -12%;
	bottom: -104px;
	height: 210px;
	background:
		radial-gradient(ellipse at center,rgba(124,58,237,.24),rgba(15,20,25,.46) 46%,rgba(15,20,25,0) 76%),
		linear-gradient(180deg,rgba(15,20,25,0),var(--pcgh-bg));
	filter: blur(44px);
	pointer-events: none
}
.pcgh-home-search-section__video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
	pointer-events: none;
	user-select: none
}
.pcgh-home-search-section .pcgh-container {
	position: relative;
	z-index: 2;
	width: 100%
}
.pcgh-search__icon {
	font-size: 1.15rem
}

.pcgh-home-search {
	max-width: 900px;
	margin: 0 auto;
	text-align: center
}
.pcgh-home-search h1 {
	font-size: clamp(32px,4vw,46px);
	line-height: 1.18;
	color: #fff;
	text-shadow: 0 12px 34px rgba(0,0,0,.45)
}
.pcgh-home-search__badges {
	margin-top: 16px;
	display: flex;
	justify-content: center;
	gap: 18px;
	color: rgba(226,232,240,.9)
}
.pcgh-home-search__badges span {
	display: inline-flex;
	align-items: center;
	gap: 6px
}
.pcgh-home-search__form {
	height: 60px;
	margin: 30px auto 0;
	padding: 8px;
	display: flex;
	align-items: center;
	gap: 12px;
	max-width: 860px;
	border-radius: 16px;
	background: rgba(15,23,42,.78);
	border: 1px solid rgba(var(--pcgh-primary-rgb),.52);
	box-shadow: 0 0 0 8px rgba(var(--pcgh-primary-rgb),.14),0 24px 70px rgba(0,0,0,.36);
	backdrop-filter: blur(14px)
}
.pcgh-home-search__icon {
	margin-left: 14px;
	width: 24px;
	height: 24px;
	color: var(--pcgh-primary);
	flex-shrink: 0
}
.pcgh-home-search__form input {
	flex: 1;
	min-width: 0;
	height: 100%;
	border: 0;
	outline: 0;
	background: transparent;
	color: #fff;
	font-size: 16px
}
.pcgh-home-search__form input::placeholder {
	color: rgba(203,213,225,.7)
}
.pcgh-home-search__form button {
	height: 45px;
	padding: 0 24px;
	border-radius: 12px;
	background: var(--pcgh-primary);
	color: #fff;
	font-weight: 800;
	/* box-shadow: 0 14px 28px rgba(var(--pcgh-primary-rgb),.28); */
}
.pcgh-home-search__hot {
	margin-top: 18px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
	color: rgba(203,213,225,.74)
}
.pcgh-home-search__hot a {
	padding: 5px 12px;
	border-radius: 999px;
	background: rgba(15,23,42,.68);
	color: rgba(226,232,240,.86);
	border: 1px solid rgba(99,102,241,.14)
}
.pcgh-home-service-section {
	padding: 4px 0 38px
}
.pcgh-home-services {
	display: grid;
	grid-template-columns: repeat(4,minmax(0,1fr));
	gap: 14px
}
.pcgh-home-service {
	min-height: 82px;
	padding: 18px 18px 18px 72px;
	position: relative;
	border-radius: 10px;
	background: rgba(15,23,42,.76);
	border: 1px solid rgba(99,102,241,.18)
}
.pcgh-home-service span {
	position: absolute;
	left: 20px;
	top: 50%;
	transform: translateY(-50%);
	width: 38px;
	height: 38px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
	color: var(--c);
	background: color-mix(in srgb,var(--c),transparent 84%)
}
.pcgh-home-service span i[data-lucide] {
	width: 30px;
	height: 30px
}
.pcgh-home-service strong {
	display: block;
	color: #fff
}
.pcgh-home-service small {
	display: block;
	margin-top: 3px;
	color: rgba(203,213,225,.68)
}

.pcgh-404-page {
	position: relative;
	min-height: calc(100vh - 160px);
	padding: 34px 0 56px;
	overflow: hidden;
	background:
		radial-gradient(circle at 22% 15%,rgba(124,58,237,.26),transparent 28%),
		radial-gradient(circle at 80% 30%,rgba(37,99,235,.18),transparent 32%),
		linear-gradient(180deg,#050816 0%,#06101f 46%,#030711 100%);
	color: #fff
}
.pcgh-404-page__bg {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg,rgba(3,7,18,.96) 0%,rgba(3,7,18,.72) 42%,rgba(3,7,18,.38) 70%,rgba(3,7,18,.9) 100%),
		linear-gradient(180deg,rgba(3,7,18,.1),rgba(3,7,18,.9)),
		url("../images/banner-default.jpg") center/cover no-repeat;
	opacity: .42;
	pointer-events: none
}
.pcgh-404-page .pcgh-container {
	position: relative;
	z-index: 1
}
.pcgh-404-hero {
	min-height: 430px;
	display: grid;
	grid-template-columns: minmax(0,1fr) minmax(280px,420px);
	align-items: center;
	gap: 32px;
	padding: 42px 34px;
	border-radius: 24px;
	background:
		linear-gradient(90deg,rgba(5,10,26,.72),rgba(8,13,32,.28)),
		radial-gradient(circle at 68% 48%,rgba(124,58,237,.2),transparent 34%);
	border: 1px solid rgba(99,102,241,.18);
	box-shadow: 0 30px 90px rgba(0,0,0,.35)
}
.pcgh-404-hero__content > strong {
	display: block;
	font-size: clamp(82px,12vw,158px);
	line-height: .82;
	letter-spacing: -6px;
	text-shadow: 0 0 18px rgba(168,85,247,.72),0 0 44px rgba(79,70,229,.38);
	background: linear-gradient(180deg,#fff 0%,#d8b4fe 48%,#7c3aed 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent
}
.pcgh-404-hero h1 {
	margin: 20px 0 14px;
	font-size: clamp(26px,3.4vw,42px);
	line-height: 1.2;
	color: #f8fbff;
	text-shadow: 0 0 22px rgba(124,58,237,.4)
}
.pcgh-404-hero p {
	max-width: 520px;
	margin: 0 0 24px;
	color: rgba(203,213,225,.86);
	font-size: 15px;
	line-height: 1.8
}
.pcgh-404-hero__scene {
	position: relative;
	min-height: 300px;
	display: flex;
	align-items: center;
	justify-content: center
}
.pcgh-404-hero__scene:before {
	content: "";
	width: 148px;
	height: 230px;
	border-radius: 80px 80px 24px 24px;
	background:
		linear-gradient(180deg,rgba(226,232,240,.18),rgba(30,41,59,.35)),
		linear-gradient(90deg,transparent 45%,rgba(168,85,247,.85) 48%,rgba(168,85,247,.85) 52%,transparent 55%);
	box-shadow: 0 0 0 1px rgba(255,255,255,.08),0 0 50px rgba(124,58,237,.36)
}
.pcgh-404-hero__scene span {
	position: absolute;
	right: 20px;
	top: 26px;
	font-size: 44px;
	line-height: .9;
	font-weight: 900;
	color: rgba(216,180,254,.55);
	text-shadow: 0 0 24px rgba(168,85,247,.48);
	transform: rotate(-8deg)
}
.pcgh-404-hero__scene em {
	position: absolute;
	right: 36px;
	bottom: 24px;
	padding: 16px 18px;
	border: 1px solid rgba(129,140,248,.34);
	border-radius: 10px;
	background: rgba(15,23,42,.58);
	color: rgba(191,219,254,.82);
	font-style: normal;
	font-weight: 800;
	text-align: center;
	box-shadow: 0 0 26px rgba(59,130,246,.18)
}
.pcgh-404-actions {
	display: flex;
	gap: 14px;
	flex-wrap: wrap
}
.pcgh-404-actions .pcgh-btn {
	border-color: rgba(99,102,241,.45)
}
.pcgh-404-recommend h2 {
	margin: 0;
	color: #f8fafc
}
.pcgh-404-recommend {
	margin-top: 30px
}
.pcgh-404-recommend header {
	margin-bottom: 16px
}
.pcgh-404-recommend h2 {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 24px
}
.pcgh-404-recommend h2 i[data-lucide] {
	color: #f97316
}
.pcgh-404-recommend p {
	margin: 6px 0 0;
	color: rgba(203,213,225,.72)
}
.pcgh-404-games {
	display: grid;
	grid-template-columns: repeat(5,minmax(0,1fr));
	gap: 14px
}
.pcgh-404-game {
	display: flex;
	flex-direction: column;
	min-width: 0;
	overflow: hidden;
	border-radius: 10px;
	background: linear-gradient(180deg,rgba(15,23,42,.94),rgba(10,18,34,.96));
	border: 1px solid rgba(99,102,241,.24);
	color: #f8fafc;
	box-shadow: 0 16px 42px rgba(0,0,0,.22);
	transition: .18s
}
.pcgh-404-game:hover {
	transform: translateY(-3px);
	border-color: rgba(124,58,237,.62);
	color: #fff;
	box-shadow: 0 20px 48px rgba(0,0,0,.32),0 0 24px rgba(79,70,229,.18)
}
.pcgh-404-game__cover {
	display: block;
	width: 100%;
	aspect-ratio: 4/2;
	background: #111827 center/cover no-repeat
}
.pcgh-404-game__body {
	display: flex;
	flex-direction: column;
	padding: 12px 12px 10px;
	gap: 9px
}
.pcgh-404-game__body strong {
	font-size: 14px;
	line-height: 1.35;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis
}
.pcgh-404-game__info {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	min-height: 24px
}
.pcgh-404-game__info em {
	max-width: 62%;
	padding: 4px 8px;
	border-radius: 5px;
	background: rgba(59,130,246,.16);
	color: #93c5fd;
	font-size: 12px;
	font-style: normal;
	line-height: 1;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis
}
.pcgh-404-game__info small {
	margin-left: auto;
	color: rgba(203,213,225,.72);
	font-size: 12px;
	white-space: nowrap
}
.pcgh-404-game__meta {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 8px;
	color: rgba(203,213,225,.86);
	font-size: 13px
}
.pcgh-404-game__meta span {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	color: #fbbf24;
	font-weight: 700
}
.pcgh-404-game__meta i[data-lucide] {
	width: 14px;
	height: 14px;
	fill: currentColor
}
.pcgh-404-game__download {
	height: 34px;
	margin-top: 2px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	border-radius: 6px;
	background: var(--pcgh-primary);
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	box-shadow: 0 10px 20px rgba(var(--pcgh-primary-rgb),.24)
}
.pcgh-404-game:hover .pcgh-404-game__download {
	background: var(--pcgh-primary-2);
	color: #fff
}
.pcgh-404-game__download i[data-lucide] {
	width: 15px;
	height: 15px
}

html[data-pcgh-theme-resolved="light"] .pcgh-404-page {
	background: var(--pcgh-bg);
	color: var(--pcgh-text)
}
html[data-pcgh-theme-resolved="light"] .pcgh-404-page__bg {
	background:
		radial-gradient(circle at 22% 15%,rgba(var(--pcgh-primary-rgb),.12),transparent 30%),
		radial-gradient(circle at 80% 30%,rgba(var(--pcgh-primary-rgb),.08),transparent 34%);
	opacity: 1
}
html[data-pcgh-theme-resolved="light"] .pcgh-404-hero {
	background: var(--pcgh-surface);
	border-color: var(--pcgh-border);
	box-shadow: none
}
html[data-pcgh-theme-resolved="light"] .pcgh-404-hero h1,
html[data-pcgh-theme-resolved="light"] .pcgh-404-recommend h2,
html[data-pcgh-theme-resolved="light"] .pcgh-404-game__body strong {
	color: var(--pcgh-text);
	text-shadow: none
}
html[data-pcgh-theme-resolved="light"] .pcgh-404-hero p,
html[data-pcgh-theme-resolved="light"] .pcgh-404-recommend p,
html[data-pcgh-theme-resolved="light"] .pcgh-404-game__info small,
html[data-pcgh-theme-resolved="light"] .pcgh-404-game__meta {
	color: var(--pcgh-text-2)
}
html[data-pcgh-theme-resolved="light"] .pcgh-404-actions .pcgh-btn {
	border-color: var(--pcgh-border)
}
html[data-pcgh-theme-resolved="light"] .pcgh-404-actions .pcgh-btn--ghost {
	background: var(--pcgh-surface-2);
	color: var(--pcgh-text);
	border-color: var(--pcgh-border)
}
html[data-pcgh-theme-resolved="light"] .pcgh-404-actions .pcgh-btn--ghost:hover {
	background: rgba(var(--pcgh-primary-rgb),.08);
	color: var(--pcgh-primary)
}
html[data-pcgh-theme-resolved="light"] .pcgh-404-game {
	background: var(--pcgh-surface);
	border-color: var(--pcgh-border);
	color: var(--pcgh-text);
	box-shadow: none
}
html[data-pcgh-theme-resolved="light"] .pcgh-404-game:hover {
	border-color: rgba(var(--pcgh-primary-rgb),.38);
	color: var(--pcgh-text);
	box-shadow: none
}
html[data-pcgh-theme-resolved="light"] .pcgh-404-game__cover {
	background-color: var(--pcgh-surface-2)
}
html[data-pcgh-theme-resolved="light"] .pcgh-404-game__info em {
	background: rgba(var(--pcgh-primary-rgb),.1);
	color: var(--pcgh-primary)
}
html[data-pcgh-theme-resolved="light"] .pcgh-404-hero__scene:before {
	background:
		linear-gradient(180deg,rgba(var(--pcgh-primary-rgb),.08),rgba(var(--pcgh-primary-rgb),.16)),
		linear-gradient(90deg,transparent 45%,rgba(var(--pcgh-primary-rgb),.82) 48%,rgba(var(--pcgh-primary-rgb),.82) 52%,transparent 55%);
	box-shadow: 0 0 0 1px var(--pcgh-border),0 18px 44px rgba(var(--pcgh-primary-rgb),.18)
}
html[data-pcgh-theme-resolved="light"] .pcgh-404-hero__scene span {
	color: rgba(var(--pcgh-primary-rgb),.35);
	text-shadow: none
}
html[data-pcgh-theme-resolved="light"] .pcgh-404-hero__scene em {
	background: var(--pcgh-surface);
	border-color: var(--pcgh-border);
	color: var(--pcgh-text-2);
	box-shadow: none
}

/* ============ User Center 重构版（左菜单 + 右主区） ============ */
.pcgh-uc {
	padding: 24px 0 60px;
	background: var(--pcgh-bg)
}

.pcgh-uc__layout {
	display: grid;
	grid-template-columns: var(--pcgh-uc-menu-w) minmax(0,1fr);
	gap: 28px;
	align-items: flex-start
}

/* 左菜单 */
.pcgh-uc__menu {
	position: sticky;
	top: 80px;
	background: var(--pcgh-surface);
	border: 1px solid var(--pcgh-border);
	border-radius: var(--pcgh-radius-lg);
	padding: 10px;
	display: flex;
	flex-direction: column;
	gap: 2px
}

.pcgh-uc-menu-item {
	position: relative;
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 11px 14px;
	color: var(--pcgh-text-2);
	text-decoration: none;
	border-radius: 10px;
	font-size: 14px;
	transition: .18s ease
}

.pcgh-uc-menu-separator {
	display: block;
	height: 1px;
	margin: 10px 8px;
	background: var(--pcgh-border);
	opacity: .72;
	flex: 0 0 auto
}

.pcgh-uc-menu-item i[data-lucide] {
	width: 1.22em!important;
	height: 1.22em!important;
	flex-shrink: 0;
	transition: .18s
}

.pcgh-uc-menu-item:hover {
	background: var(--pcgh-surface-2);
	color: var(--pcgh-text);
	transform: translateX(2px)
}

.pcgh-uc-menu-item:hover i[data-lucide] {
	color: var(--pcgh-primary)
}
/* Active：实心渐变胶囊（参考"续费/升级"按钮样式，保持主题色） */
.pcgh-uc-menu-item.is-active {
	background: linear-gradient(135deg,var(--pcgh-primary) 0%,color-mix(in srgb,var(--pcgh-primary) 65%,#000 35%) 100%);
	color: #fff;
	font-weight: 600;
	box-shadow: 0 8px 18px -6px color-mix(in srgb,var(--pcgh-primary) 70%,transparent),
		inset 0 1px 0 rgba(255,255,255,.18);
	transform: translateX(0)
}

.pcgh-uc-menu-item.is-active i[data-lucide] {
	color: #fff
}

.pcgh-uc-menu-item.is-active:hover {
	transform: translateX(0);
	filter: brightness(1.05)
}

/* 右主区 */
.pcgh-uc__main {
	display: flex;
	flex-direction: column;
	gap: 16px;
	min-width: 0
}

/* Hero 卡 */
.pcgh-uc-hero {
	position: relative;
	background: #0f1419 center/cover no-repeat;
	border-radius: var(--pcgh-radius-lg);
	overflow: hidden;
	border: 1px solid var(--pcgh-border)
}

.pcgh-uc-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg,rgba(15,20,25,.85) 0%,rgba(15,20,25,.55) 60%,rgba(15,20,25,.35) 100%);
	pointer-events: none
}

.pcgh-uc-hero__inner {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	gap: 18px;
	padding: 24px 28px;
	min-height: 130px
}

.pcgh-uc-hero__avatar {
	width: 72px;
	height: 72px;
	border-radius: 50%;
	border: 3px solid rgba(255,255,255,.18);
	background: #0a0e13;
	flex-shrink: 0;
	object-fit: cover
}

.pcgh-uc-hero__info {
	flex: 1;
	min-width: 0;
	color: #fff
}

.pcgh-uc-hero__info h2 {
	margin: 0 0 6px;
	font-size: 20px;
	font-weight: 700;
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap
}

.pcgh-uc-hero__gender {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: rgba(255,255,255,.12)
}

.pcgh-uc-hero__gender i[data-lucide] {
	width: 12px;
	height: 12px
}

.pcgh-uc-hero__meta {
	margin: 0 0 2px;
	font-size: 12px;
	color: rgba(255,255,255,.7)
}

.pcgh-uc-hero__bio {
	margin: 0;
	font-size: 13px;
	color: rgba(255,255,255,.85)
}

.pcgh-uc-hero__edit {
	flex-shrink: 0;
	align-self: flex-start
}

/* 三大数据卡 */
.pcgh-uc-stats {
	display: grid;
	grid-template-columns: repeat(3,1fr);
	gap: 14px
}

.pcgh-uc-stats--points {
	grid-template-columns: repeat(4, minmax(0, 1fr))
}

.pcgh-uc-stats--points .pcgh-uc-stat-card {
	min-width: 0
}

.pcgh-uc-stats--points .pcgh-uc-stat-card__num {
	font-size: clamp(20px, 2.2vw, 30px);
	word-break: break-word
}

.pcgh-uc-stat-card {
	background: var(--pcgh-surface);
	border: 1px solid var(--pcgh-border);
	border-radius: var(--pcgh-radius-lg);
	padding: 18px 20px
}

.pcgh-uc-stat-card__head {
	display: flex;
	justify-content: space-between;
	color: var(--pcgh-text-3);
	font-size: 13px;
	margin-bottom: 10px
}

.pcgh-uc-stat-card__num {
	font-size: 30px;
	font-weight: 800;
	color: #fff;
	display: flex;
	align-items: center;
	gap: 10px;
	line-height: 1.1
}

.pcgh-uc-stat-card__num small {
	font-size: 14px;
	color: var(--pcgh-text-2);
	font-weight: 500
}

.pcgh-uc-stat-card__num--lvl {
	color: var(--pcgh-primary)
}

.pcgh-uc-coin,.pcgh-uc-cal-ico {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 50%
}

.pcgh-uc-coin {
	background: linear-gradient(135deg,#fbbf24,#f59e0b);
	color: #fff
}

.pcgh-uc-cal-ico {
	background: linear-gradient(135deg,var(--pcgh-primary),rgba(var(--pcgh-primary-rgb),.7));
	color: #fff
}

.pcgh-uc-coin i.ti,.pcgh-uc-cal-ico i.ti {
	font-size: 20px;
	line-height: 1
}

.pcgh-uc-stat-card__num--coin {
	color: #fbbf24
}

.pcgh-uc-stat-card__num--cal {
	color: #a855f7
}

.pcgh-uc-stat-card__bar {
	margin-top: 14px;
	height: 8px;
	background: var(--pcgh-surface-2);
	border-radius: 4px;
	overflow: hidden
}

.pcgh-uc-stat-card__bar > span {
	display: block;
	height: 100%;
	border-radius: inherit;
	transition: width .4s
}

.pcgh-uc-stat-card__ext {
	display: flex;
	justify-content: space-between;
	margin-top: 8px;
	color: var(--pcgh-text-3);
	font-size: 12px
}

.pcgh-uc-stat-card__ext b {
	color: var(--pcgh-text);
	font-weight: 700
}

.pcgh-uc-stat-card__link {
	display: inline-flex;
	align-items: center;
	gap: 2px;
	margin-top: 14px;
	color: var(--pcgh-primary);
	font-size: 12px;
	text-decoration: none
}

.pcgh-uc-stat-card__link i[data-lucide] {
	width: 12px;
	height: 12px
}

/* 通用卡 */
.pcgh-uc-card {
	background: var(--pcgh-surface);
	border: 1px solid var(--pcgh-border);
	border-radius: var(--pcgh-radius-lg);
	padding: 18px 22px
}

.pcgh-uc-card__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	margin-bottom: 14px
}

.pcgh-uc-card__head h3 {
	margin: 0;
	font-size: 16px;
	font-weight: 700;
	color: #fff;
	display: inline-flex;
	align-items: center;
	gap: 8px
}

.pcgh-uc-card__head h3 i[data-lucide] {
	width: 16px;
	height: 16px;
	color: var(--pcgh-primary)
}

.pcgh-uc-card__more {
	display: inline-flex;
	align-items: center;
	gap: 2px;
	color: var(--pcgh-text-3);
	font-size: 13px;
	text-decoration: none
}

.pcgh-uc-card__more:hover {
	color: var(--pcgh-primary)
}

.pcgh-uc-card__more i[data-lucide] {
	width: 13px;
	height: 13px
}

.pcgh-uc-card__sub {
	color: var(--pcgh-text-3);
	font-size: 12px
}

.pcgh-uc-card__desc {
	margin: -6px 0 14px;
	color: var(--pcgh-text-3);
	font-size: 13px
}

.pcgh-uc-card__desc b {
	color: var(--pcgh-primary)
}

/* 签到 10 天网格 */
.pcgh-uc-signin-grid {
	display: grid;
	grid-template-columns: repeat(10,1fr);
	gap: 8px;
	margin-bottom: 14px
}

.pcgh-uc-signin-grid--lg {
	gap: 10px
}

.pcgh-uc-signin-day {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 4px;
	padding: 10px 4px;
	background: var(--pcgh-surface-2);
	border: 1px solid var(--pcgh-border);
	border-radius: 8px;
	text-align: center;
	transition: .15s
}

.pcgh-uc-signin-day small {
	font-size: 11px;
	color: var(--pcgh-text-3);
	line-height: 1
}

.pcgh-uc-signin-day b {
	font-size: 12px;
	color: var(--pcgh-text-2);
	font-weight: 600;
	line-height: 1
}

.pcgh-uc-signin-day__icon {
	display: inline-flex;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background: rgba(var(--pcgh-text-3-rgb,107,119,133),.18);
	align-items: center;
	justify-content: center;
	color: #ffffff;
}

.pcgh-uc-signin-day__icon i[data-lucide] {
	width: 14px;
	height: 14px
}

.pcgh-uc-signin-day__icon i.ti {
	font-size: 15px;
	line-height: 1
}

.pcgh-uc-signin-day.is-done {
	background: rgba(59,130,246,.1);
	border-color: var(--pcgh-primary)
}

.pcgh-uc-signin-day.is-done .pcgh-uc-signin-day__icon {
	background: var(--pcgh-primary)
}

.pcgh-uc-signin-day.is-active {
	background: rgba(59,130,246,.2);
	border-color: var(--pcgh-primary);
	box-shadow: 0 0 0 2px rgba(59,130,246,.25)
}

.pcgh-uc-signin-day.is-active b {
	color: var(--pcgh-primary)
}

.pcgh-uc-signin-day.is-today {
	background: rgba(59,130,246,.2);
	border-color: var(--pcgh-primary)
}

.pcgh-uc-signin-day.is-big .pcgh-uc-signin-day__icon {
	background: #ef4444
}

.pcgh-uc-signin-day.is-big.is-done .pcgh-uc-signin-day__icon {
	background: #ef4444
}

.pcgh-uc-signin-actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 10px;
	flex-wrap: wrap
}

.pcgh-uc-signin-actions .pcgh-btn {
	padding: 8px 14px;
	font-size: 13px
}

.pcgh-uc-signin-foot {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 14px;
	margin-top: 6px
}

.pcgh-uc-signin-foot__sum {
	color: var(--pcgh-text-3);
	font-size: 13px
}

.pcgh-uc-signin-foot__sum b {
	color: #f59e0b;
	font-weight: 700
}

/* ===== 签到 Hero 卡（按截图重构） ===== */
.pcgh-uc-signin-hero__body {
	display: grid;
	grid-template-columns: minmax(0,1fr) 224px;
	align-items: stretch;
	gap: 18px;
	padding: 6px 4px
}

.pcgh-uc-signin-hero__stat {
	position: relative;
	z-index: 2;
	min-width: 0;
	padding: 0;
	border: 0;
	text-align: center
}

.pcgh-uc-signin-hero__stat-label {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	margin-bottom: 18px;
	padding: 7px 13px;
	border-radius: 999px;
	background: linear-gradient(135deg,rgba(251,191,36,.28),rgba(120,83,21,.42));
	color: #fde68a;
	font-size: 12px;
	font-weight: 800;
	box-shadow: inset 0 1px 0 rgba(255,255,255,.18),0 8px 22px rgba(251,191,36,.12)
}

.pcgh-uc-signin-hero__stat-label i[data-lucide] {
	width: 15px;
	height: 15px
}

.pcgh-uc-signin-hero__stat-num {
	position: relative;
	width: auto;
	height: auto;
	margin: 0 auto 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 0;
	background: none;
	box-shadow: none;
	font-size: 52px;
	font-weight: 800;
	color: #fff4c4;
	line-height: 1
}

.pcgh-uc-signin-hero__stat-num span {
	position: relative;
	z-index: 1;
	font-size: 14px;
	color: #e5efff;
	font-weight: 600;
	margin-left: 7px
}

.pcgh-uc-signin-hero__stat-num span:first-child {
	font-size: 56px;
	color: #fff6c9;
	font-weight: 900;
	letter-spacing: -1px;
	text-shadow: 0 0 8px rgba(255,246,201,.95),0 0 24px rgba(251,191,36,.7),0 0 48px rgba(59,130,246,.35)
}

.pcgh-uc-signin-hero__stat-meta {
	display: block;
	margin-top: 2px;
	color: #93a8c7;
	font-size: 12px;
	font-weight: 600
}

.pcgh-uc-signin-hero__stat-meta b {
	color: #dbeafe;
	font-weight: 700
}

.pcgh-uc-signin-hero__stat-tip {
	display: block;
	margin-top: 18px;
	color: #facc15;
	font-size: 12px;
	font-weight: 800;
	line-height: 1.45;
	text-shadow: 0 0 12px rgba(250,204,21,.28)
}

.pcgh-uc-signin-hero__panel {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 18px;
	min-height: 286px;
	padding: 16px 12px;
	border-radius: 0;
	background: transparent;
	border: 0;
	box-shadow: none;
	text-align: center
}

.pcgh-uc-signin-hero__panel .pcgh-btn {
	position: relative;
	z-index: 3;
	width: 100%;
	justify-content: center;
	min-height: 42px;
	border-radius: 8px;
}

.pcgh-uc-signin-hero__glow {
	display: none
}

.pcgh-uc-signin-hero__mascot {
	display: none
}

.pcgh-uc-signin-hero__cat {
	position: absolute;
	left: 50%;
	bottom: 4px;
	transform: translateX(-50%);
	width: 78px;
	height: 78px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 26px 26px 22px 22px;
	background: linear-gradient(180deg,#e8f0ff,#b7c8de);
	font-size: 44px;
	box-shadow: inset 0 2px 0 rgba(255,255,255,.85),0 12px 24px rgba(2,8,23,.38)
}

.pcgh-uc-signin-hero__coin,
.pcgh-uc-signin-hero__gem {
	position: absolute;
	display: block;
	filter: drop-shadow(0 6px 8px rgba(2,8,23,.3))
}

.pcgh-uc-signin-hero__coin {
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: radial-gradient(circle at 35% 30%,#fff3a3,#facc15 48%,#b7791f 100%);
	border: 2px solid rgba(255,255,255,.35)
}

.pcgh-uc-signin-hero__coin--1 {
	left: 34px;
	bottom: 44px
}

.pcgh-uc-signin-hero__coin--2 {
	right: 42px;
	bottom: 14px;
	width: 14px;
	height: 14px
}

.pcgh-uc-signin-hero__gem {
	width: 17px;
	height: 17px;
	clip-path: polygon(50% 0,100% 45%,50% 100%,0 45%);
	background: linear-gradient(135deg,#93c5fd,#3b82f6 55%,#7c3aed)
}

.pcgh-uc-signin-hero__gem--1 {
	left: 14px;
	bottom: 20px
}

.pcgh-uc-signin-hero__gem--2 {
	right: 18px;
	bottom: 48px;
	width: 20px;
	height: 20px
}

/* ===== 10 天签到进度（色彩分层：未签灰/已签金/当前呼吸/大奖紫） ===== */
.pcgh-uc-signin-hero__days {
	display: grid;
	grid-template-columns: repeat(10,minmax(0,1fr));
	gap: 8px;
	align-items: end
}

.pcgh-uc-signin-hero__day {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-end;
	gap: 6px;
	padding: 12px 4px 10px;
	background: var(--pcgh-surface-2);
	border: 1px solid var(--pcgh-border);
	border-radius: 10px;
	text-align: center;
	transition: .2s;
	min-height: 90px
}

/* —— 默认（未签到）态：灰底扁平 —— */
.pcgh-uc-signin-hero__day-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: rgba(255,255,255,.05);
	border: 1px solid rgba(255,255,255,.08);
	color: var(--pcgh-text-3);
	flex-shrink: 0;
	transition: .2s
}

.pcgh-uc-signin-hero__day-icon i[data-lucide] {
	width: 16px;
	height: 16px
}

.pcgh-uc-signin-hero__day-icon i.ti {
	font-size: 18px;
	line-height: 1
}

.pcgh-uc-signin-hero__day-label {
	font-size: 11px;
	color: var(--pcgh-text-3);
	line-height: 1;
	transition: .15s
}

.pcgh-uc-signin-hero__day-reward {
	font-size: 12px;
	color: var(--pcgh-text-3);
	font-weight: 700;
	line-height: 1;
	transition: .15s
}

/* —— 已完成态：金色（暖色）—— */
.pcgh-uc-signin-hero__day.is-done {
	background: rgba(250,204,21,.08);
	border-color: rgba(250,204,21,.35)
}

.pcgh-uc-signin-hero__day.is-done .pcgh-uc-signin-hero__day-icon {
	background: linear-gradient(135deg,#facc15 0%,#f59e0b 100%);
	border-color: transparent;
	color: #fff;
	box-shadow: 0 4px 12px -2px rgba(245,158,11,.5)
}

.pcgh-uc-signin-hero__day.is-done .pcgh-uc-signin-hero__day-label {
	color: #fbbf24
}

.pcgh-uc-signin-hero__day.is-done .pcgh-uc-signin-hero__day-reward {
	color: #facc15
}

/* —— 今日已签：金色 + 强光圈（最醒目） —— */
.pcgh-uc-signin-hero__day.is-today {
	background: rgba(250,204,21,.14);
	border-color: #facc15;
	box-shadow: 0 0 0 2px rgba(250,204,21,.25),0 6px 18px -4px rgba(245,158,11,.4)
}

/* —— 当前可签态（未来）：紫色呼吸吸引点击 —— */
.pcgh-uc-signin-hero__day.is-active {
	background: rgba(124,58,237,.14);
	border-color: var(--pcgh-primary);
	box-shadow: 0 0 0 2px rgba(124,58,237,.3);
	animation: pcgh-signin-pulse 2s ease-in-out infinite
}

.pcgh-uc-signin-hero__day.is-active .pcgh-uc-signin-hero__day-icon {
	background: linear-gradient(135deg,var(--pcgh-primary),#a78bfa);
	border-color: transparent;
	color: #fff;
	box-shadow: 0 4px 12px -2px rgba(124,58,237,.5)
}

.pcgh-uc-signin-hero__day.is-active .pcgh-uc-signin-hero__day-label {
	color: #a78bfa
}

.pcgh-uc-signin-hero__day.is-active .pcgh-uc-signin-hero__day-reward {
	color: var(--pcgh-primary)
}

@keyframes pcgh-signin-pulse {
	0%,100% {
		box-shadow: 0 0 0 2px rgba(124,58,237,.3),0 0 0 0 rgba(124,58,237,.4)
	}

	50% {
		box-shadow: 0 0 0 2px rgba(124,58,237,.5),0 0 0 8px rgba(124,58,237,0)
	}
}

/* —— 大奖日（第 7/10 天，礼物）：紫色 —— */
.pcgh-uc-signin-hero__day.is-big {
	background: linear-gradient(180deg,rgba(168,85,247,.12) 0%,rgba(124,58,237,.04) 100%);
	border-color: rgba(168,85,247,.5);
	min-height: 98px
}

.pcgh-uc-signin-hero__day.is-big .pcgh-uc-signin-hero__day-icon {
	width: 38px;
	height: 38px;
	background: linear-gradient(135deg,#a855f7 0%,#7c3aed 100%);
	border-color: transparent;
	color: #fff;
	box-shadow: 0 6px 16px -4px rgba(168,85,247,.55)
}

.pcgh-uc-signin-hero__day.is-big .pcgh-uc-signin-hero__day-icon i[data-lucide] {
	width: 20px;
	height: 20px
}

.pcgh-uc-signin-hero__day.is-big .pcgh-uc-signin-hero__day-icon i.ti {
	font-size: 20px
}

.pcgh-uc-signin-hero__day.is-big .pcgh-uc-signin-hero__day-label {
	color: #c084fc
}

.pcgh-uc-signin-hero__day.is-big .pcgh-uc-signin-hero__day-reward {
	color: #a855f7;
	font-size: 13px
}

/* —— 大奖日已完成：紫色光晕（最高荣誉） —— */
.pcgh-uc-signin-hero__day.is-big.is-done {
	background: linear-gradient(180deg,rgba(168,85,247,.28) 0%,rgba(124,58,237,.08) 100%);
	border-color: #a855f7;
	box-shadow: 0 0 0 2px rgba(168,85,247,.35),0 8px 22px -4px rgba(168,85,247,.5)
}

.pcgh-uc-signin-hero__day.is-big.is-done .pcgh-uc-signin-hero__day-icon {
	box-shadow: 0 8px 22px -4px rgba(168,85,247,.7),0 0 0 3px rgba(168,85,247,.18)
}

.pcgh-uc-signin-calendar {
	min-width: 0;
	background: linear-gradient(180deg,rgba(15,23,42,.88),rgba(8,13,22,.92));
	border: 1px solid rgba(148,163,184,.14);
	border-radius: 16px;
	padding: 18px;
	box-shadow: inset 0 1px 0 rgba(255,255,255,.04)
}
.pcgh-uc-signin-calendar__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 18px
}
.pcgh-uc-signin-calendar__head strong {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: #fff;
	font-size: 16px
}
.pcgh-uc-signin-calendar__head strong span {
	width: 24px;
	height: 24px;
	border-radius: 7px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: rgba(59,130,246,.16);
	color: #3b82f6
}
.pcgh-uc-signin-calendar__head strong span i[data-lucide] {
	width: 16px;
	height: 16px
}
.pcgh-uc-signin-calendar__head span {
	color: #fbbf24;
	font-size: 12px;
	font-weight: 700;
	white-space: nowrap
}
.pcgh-uc-signin-calendar__week,
.pcgh-uc-signin-calendar__days {
	display: grid;
	grid-template-columns: repeat(7,minmax(0,1fr));
	gap: 6px
}
.pcgh-uc-signin-calendar__week {
	margin-bottom: 8px
}
.pcgh-uc-signin-calendar__week span {
	color: var(--pcgh-text-3);
	font-size: 11px;
	text-align: center
}
.pcgh-uc-signin-calendar__blank,
.pcgh-uc-signin-calendar__day {
	min-height: 62px;
	border-radius: 12px
}
.pcgh-uc-signin-calendar__day {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 3px;
	background: rgba(255,255,255,.035);
	border: 1px solid rgba(255,255,255,.05)
}
.pcgh-uc-signin-calendar__day b {
	color: rgba(226,232,240,.9);
	font-size: 14px;
	line-height: 1
}
.pcgh-uc-signin-calendar__day small {
	min-height: 12px;
	color: var(--pcgh-text-3);
	font-size: 10px;
	line-height: 1
}
.pcgh-uc-signin-calendar__day.is-done {
	background: linear-gradient(180deg,#3b82f6,#2563eb);
	border-color: rgba(96,165,250,.85);
	box-shadow: 0 8px 18px -10px rgba(59,130,246,.75)
}
.pcgh-uc-signin-calendar__day.is-done b,
.pcgh-uc-signin-calendar__day.is-done small {
	color: #fff
}
.pcgh-uc-signin-calendar__day.is-today {
	border-color: rgba(59,130,246,.9);
	box-shadow: inset 0 0 0 1px rgba(59,130,246,.36)
}
.pcgh-uc-signin-calendar__day.is-today:not(.is-done) {
	background: rgba(59,130,246,.12)
}
.pcgh-uc-signin-calendar__day.is-today:not(.is-done) b,
.pcgh-uc-signin-calendar__day.is-today:not(.is-done) small {
	color: #60a5fa
}
.pcgh-uc-signin-calendar__mark,
.pcgh-uc-signin-calendar__gift {
	position: absolute;
	top: 7px;
	right: 7px;
	display: inline-flex;
	line-height: 1
}
.pcgh-uc-signin-calendar__mark i[data-lucide],
.pcgh-uc-signin-calendar__gift i[data-lucide] {
	width: 12px;
	height: 12px
}
.pcgh-uc-signin-calendar__mark {
	color: #fff
}
.pcgh-uc-signin-calendar__gift {
	color: #f59e0b
}
.pcgh-uc-signin-calendar__legend {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 18px;
	margin-top: 16px;
	padding-top: 14px;
	border-top: 1px solid rgba(148,163,184,.14)
}
.pcgh-uc-signin-calendar__legend span {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: var(--pcgh-text-3);
	font-size: 12px
}
.pcgh-uc-signin-calendar__legend i {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #64748b
}
.pcgh-uc-signin-calendar__legend .is-done,
.pcgh-uc-signin-calendar__legend .is-today {
	background: #3b82f6
}
.pcgh-uc-signin-calendar__legend .is-gift {
	background: #f59e0b
}

.pcgh-uc-signin-rewards {
	margin-top: 14px;
	padding: 18px;
	background: rgba(15,23,42,.58);
	border: 1px solid rgba(148,163,184,.14);
	border-radius: 18px;
	box-shadow: inset 0 1px 0 rgba(255,255,255,.04)
}

.pcgh-uc-signin-rewards__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 12px
}

.pcgh-uc-signin-rewards__head strong {
	display: block;
	color: #fff;
	font-size: 15px;
	font-weight: 800
}

.pcgh-uc-signin-rewards__head small {
	display: block;
	margin-top: 4px;
	color: var(--pcgh-text-3);
	font-size: 12px
}

.pcgh-uc-signin-rewards__grid {
	display: grid;
	grid-template-columns: repeat(7,minmax(0,1fr));
	gap: 10px
}

.pcgh-uc-signin-reward {
	position: relative;
	min-height: 78px;
	padding: 10px 8px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 6px;
	background: rgba(2,6,23,.28);
	border: 1px solid rgba(148,163,184,.1);
	border-radius: 12px;
	text-align: center;
	box-shadow: inset 0 1px 0 rgba(255,255,255,.025);
	transition: .18s
}

.pcgh-uc-signin-reward small {
	color: var(--pcgh-text-3);
	font-size: 11px;
	font-weight: 700
}

.pcgh-uc-signin-reward span {
	width: 24px;
	height: 24px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	color: #94a3b8;
	background: rgba(148,163,184,.1)
}

.pcgh-uc-signin-reward span i[data-lucide] {
	width: 15px;
	height: 15px
}

.pcgh-uc-signin-reward b {
	color: #fbbf24;
	font-size: 14px;
	line-height: 1
}

.pcgh-uc-signin-reward.is-done {
	background: rgba(37,99,235,.1);
	border-color: rgba(59,130,246,.36)
}

.pcgh-uc-signin-reward.is-done span {
	color: #fff;
	background: linear-gradient(180deg,#3b82f6,#2563eb);
	box-shadow: 0 8px 18px rgba(37,99,235,.25)
}

.pcgh-uc-signin-reward.is-active {
	border-color: rgba(59,130,246,.72);
	box-shadow: inset 0 1px 0 rgba(255,255,255,.04),0 0 0 1px rgba(59,130,246,.28),0 18px 38px rgba(37,99,235,.14)
}

.pcgh-uc-signin-reward.is-active span {
	color: #bfdbfe;
	background: rgba(59,130,246,.18)
}

.pcgh-uc-signin-reward.is-big b,
.pcgh-uc-signin-reward.is-big small {
	color: #fb923c
}

.pcgh-uc-signin-reward.is-big span {
	color: #fff;
	background: linear-gradient(180deg,#fb923c,#ef4444);
	box-shadow: 0 10px 22px rgba(239,68,68,.25)
}

.pcgh-uc-signin-extra {
	margin-top: 14px
}

.pcgh-uc-signin-hero__cta {
	flex-shrink: 0;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 8px
}

.pcgh-uc-signin-hero__cta .pcgh-btn {
	padding: 10px 20px;
	font-size: 14px;
	white-space: nowrap
}

/* ===== 签到任务列表（重构：进度条 + 状态化样式） ===== */
.pcgh-uc-signin-tasks {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 10px
}

.pcgh-uc-signin-tasks__item {
	display: grid;
	grid-template-columns: 44px minmax(0,1fr) auto;
	align-items: center;
	gap: 14px;
	padding: 14px 16px;
	background: var(--pcgh-surface-2);
	border: 1px solid var(--pcgh-border);
	border-radius: 10px;
	transition: .18s
}

.pcgh-uc-signin-tasks__item:hover {
	border-color: rgba(124,58,237,.35);
	background: rgba(124,58,237,.04)
}
/* 已完成态：绿色左边框 + 淡绿背景，整行不再淡化（更醒目） */
.pcgh-uc-signin-tasks__item.is-done {
	border-color: rgba(34,197,94,.3);
	background: linear-gradient(90deg, rgba(34,197,94,.06) 0%, var(--pcgh-surface-2) 60%)
}

.pcgh-uc-signin-tasks__item.is-done:hover {
	border-color: rgba(34,197,94,.5)
}

/* 图标（圆形渐变） */
.pcgh-uc-signin-tasks__icon {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	align-self: flex-start;
	margin-top: 2px
}

.pcgh-uc-signin-tasks__icon i[data-lucide] {
	width: 20px;
	height: 20px
}

.pcgh-uc-signin-tasks__item.is-done .pcgh-uc-signin-tasks__icon {
	background: rgba(34,197,94,.15)!important;
	color: #4ade80!important
}

/* body 主体 */
.pcgh-uc-signin-tasks__body {
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 6px
}

.pcgh-uc-signin-tasks__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	min-width: 0
}

.pcgh-uc-signin-tasks__head strong {
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis
}

.pcgh-uc-signin-tasks__reward {
	color: #fbbf24;
	font-size: 13px;
	font-weight: 700;
	white-space: nowrap;
	flex-shrink: 0
}

.pcgh-uc-signin-tasks__item.is-done .pcgh-uc-signin-tasks__reward {
	color: #4ade80
}

.pcgh-uc-signin-tasks__desc {
	color: var(--pcgh-text-3);
	font-size: 12px;
	line-height: 1.45;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis
}

/* 进度条 + 计数 */
.pcgh-uc-signin-tasks__bar {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 2px
}

.pcgh-uc-signin-tasks__bar-track {
	flex: 1;
	height: 6px;
	border-radius: 99px;
	background: rgba(255,255,255,.06);
	overflow: hidden
}

.pcgh-uc-signin-tasks__bar-track > span {
	display: block;
	height: 100%;
	border-radius: 99px;
	background: linear-gradient(90deg, var(--pcgh-primary) 0%, #a78bfa 100%);
	transition: width .35s ease
}

.pcgh-uc-signin-tasks__item.is-done .pcgh-uc-signin-tasks__bar-track > span {
	background: linear-gradient(90deg, #22c55e 0%, #4ade80 100%)
}

.pcgh-uc-signin-tasks__count {
	color: var(--pcgh-text-3);
	font-size: 11px;
	font-weight: 600;
	white-space: nowrap;
	min-width: 36px;
	text-align: right;
	flex-shrink: 0
}

.pcgh-uc-signin-tasks__item.is-done .pcgh-uc-signin-tasks__count {
	color: #4ade80
}

/* 右侧操作 */
.pcgh-uc-signin-tasks__action {
	flex-shrink: 0;
	align-self: center
}

.pcgh-uc-signin-tasks__action .pcgh-btn--sm {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: 7px 14px;
	font-size: 12px;
	font-weight: 500
}

.pcgh-uc-signin-tasks__action .pcgh-btn--sm i[data-lucide] {
	width: 13px;
	height: 13px
}

.pcgh-uc-signin-tasks__action .pcgh-uc-status--ok {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: 6px 12px;
	font-size: 12px;
	background: rgba(34,197,94,.18);
	color: #4ade80;
	border: 1px solid rgba(34,197,94,.4)
}

.pcgh-uc-signin-tasks__action .pcgh-uc-status--ok i[data-lucide] {
	width: 13px;
	height: 13px
}

@media (max-width:1100px) {
	.pcgh-uc-signin-hero__body {
		grid-template-columns: 1fr;
		gap: 16px
	}

	.pcgh-uc-signin-hero__stat {
		padding: 0;
		border: 0;
		text-align: center
	}

	.pcgh-uc-signin-hero__panel {
		max-width: none
	}
}

@media (max-width:720px) {
	.pcgh-uc-signin-hero {
		padding: 14px;
		border-radius: 16px;
	}

	.pcgh-uc-signin-hero .pcgh-uc-card__head {
		margin-bottom: 12px;
	}

	.pcgh-uc-signin-hero__body {
		display: flex;
		flex-direction: column;
		gap: 12px;
		padding: 0;
	}

	.pcgh-uc-signin-hero__panel {
		order: -1;
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 12px;
		min-height: 240px;
		padding: 16px 16px 10px;
		border-radius: 14px;
	}

	.pcgh-uc-signin-hero__stat {
		text-align: center;
	}

	.pcgh-uc-signin-hero__stat-label {
		margin-bottom: 12px;
		font-size: 12px;
	}

	.pcgh-uc-signin-hero__stat-num {
		width: auto;
		height: auto;
		margin: 0 auto 6px;
		font-size: 44px;
	}

	.pcgh-uc-signin-hero__stat-num span {
		font-size: 13px;
	}

	.pcgh-uc-signin-hero__stat-num span:first-child {
		font-size: 48px
	}

	.pcgh-uc-signin-hero__stat-meta {
		margin-top: 4px;
		font-size: 11px;
	}

	.pcgh-uc-signin-hero__stat-tip {
		margin-top: 5px;
		font-size: 11px;
	}

	.pcgh-uc-signin-hero__panel .pcgh-btn {
		width: 100%;
		min-width: 0;
		height: 42px;
		padding: 0 14px;
		border-radius: 8px;
		white-space: nowrap;
	}

	.pcgh-uc-signin-calendar {
		padding: 12px;
		border-radius: 14px;
	}

	.pcgh-uc-signin-calendar__head {
		margin-bottom: 12px;
		gap: 8px
	}

	.pcgh-uc-signin-calendar__head strong {
		font-size: 14px
	}

	.pcgh-uc-signin-calendar__head strong span {
		width: 22px;
		height: 22px
	}

	.pcgh-uc-signin-calendar__head > span {
		font-size: 11px
	}

	.pcgh-uc-signin-calendar__week,
	.pcgh-uc-signin-calendar__days {
		gap: 5px
	}

	.pcgh-uc-signin-calendar__week span {
		font-size: 10px
	}

	.pcgh-uc-signin-calendar__blank,
	.pcgh-uc-signin-calendar__day {
		min-height: 44px;
		border-radius: 8px
	}

	.pcgh-uc-signin-calendar__day b {
		font-size: 12px
	}

	.pcgh-uc-signin-calendar__day small {
		min-height: 10px;
		font-size: 9px
	}

	.pcgh-uc-signin-calendar__mark,
	.pcgh-uc-signin-calendar__gift {
		top: 4px;
		right: 4px
	}

	.pcgh-uc-signin-calendar__mark i[data-lucide],
	.pcgh-uc-signin-calendar__gift i[data-lucide] {
		width: 10px;
		height: 10px
	}

	.pcgh-uc-signin-calendar__legend {
		gap: 12px;
		margin-top: 12px;
		padding-top: 10px;
		flex-wrap: wrap
	}

	.pcgh-uc-signin-calendar__legend span {
		font-size: 11px
	}

	.pcgh-uc-signin-rewards {
		padding: 14px;
		border-radius: 16px
	}

	.pcgh-uc-signin-rewards__grid {
		grid-template-columns: repeat(4,minmax(0,1fr));
		gap: 8px
	}

	.pcgh-uc-signin-reward {
		min-height: 70px;
		padding: 8px 6px
	}

	.pcgh-uc-signin-tasks__item {
		grid-template-columns: 44px minmax(0,1fr);
		gap: 10px;
		row-gap: 10px
	}

	.pcgh-uc-signin-tasks__action {
		grid-column: 1 / -1;
		justify-self: flex-end
	}

	.pcgh-uc-signin-tasks__action .pcgh-btn--sm,
	.pcgh-uc-signin-tasks__action .pcgh-uc-status--ok {
		padding: 8px 16px
	}
}

/* 快捷入口 */
.pcgh-uc-quick {
	display: grid;
	grid-template-columns: repeat(4,1fr);
	gap: 12px
}

.pcgh-uc-quick__item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 14px;
	background: var(--pcgh-surface-2);
	border: 1px solid var(--pcgh-border);
	border-radius: 10px;
	text-decoration: none;
	color: var(--pcgh-text-2);
	transition: .2s
}

.pcgh-uc-quick__item:hover {
	border-color: var(--pcgh-primary);
	transform: translateY(-2px)
}

.pcgh-uc-quick__icon {
	width: 42px;
	height: 42px;
	border-radius: 10px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0
}

.pcgh-uc-quick__icon i[data-lucide] {
	width: 18px;
	height: 18px
}

.pcgh-uc-quick__text strong {
	display: block;
	color: #fff;
	font-size: 14px;
	margin-bottom: 2px
}

.pcgh-uc-quick__text small {
	color: var(--pcgh-text-3);
	font-size: 12px
}

/* 表格 */
.pcgh-uc-table {
	display: flex;
	flex-direction: column;
	font-size: 13px
}

.pcgh-uc-table__head,.pcgh-uc-table__row {
	display: grid;
	grid-template-columns: 2.4fr 1fr 1.2fr 0.8fr 0.8fr 0.6fr;
	align-items: center;
	gap: 10px;
	padding: 10px 4px;
	border-bottom: 1px solid var(--pcgh-border)
}

.pcgh-uc-table__head {
	color: var(--pcgh-text-3);
	font-size: 12px;
	font-weight: 600;
	border-bottom-color: var(--pcgh-border)
}

.pcgh-uc-table__row:last-child {
	border-bottom: 0
}

.pcgh-uc-table__game {
	display: flex;
	align-items: center;
	gap: 10px;
	min-width: 0
}

.pcgh-uc-table__cover {
	width: 54px;
	height: 38px;
	border-radius: 5px;
	background: var(--pcgh-surface-2) center/cover no-repeat;
	flex-shrink: 0
}

.pcgh-uc-table__game a {
	color: var(--pcgh-text);
	text-decoration: none;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap
}

.pcgh-uc-table__game a:hover {
	color: var(--pcgh-primary)
}

.pcgh-uc-status {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 4px;
	padding: 3px 8px;
	border-radius: 99px;
	font-size: 11px;
	font-weight: 600;
	line-height: 1.2;
	vertical-align: middle
}

.pcgh-uc-status i[data-lucide] {
	width: 13px;
	height: 13px;
	flex-shrink: 0
}

.pcgh-uc-status--ok {
	background: rgba(34,197,94,.15);
	color: #4ade80
}

.pcgh-uc-status--err {
	background: rgba(239,68,68,.15);
	color: #fca5a5
}

.pcgh-uc-icon-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border-radius: 6px;
	color: var(--pcgh-text-3);
	text-decoration: none;
	transition: .15s
}

.pcgh-uc-icon-btn:hover {
	background: var(--pcgh-surface-2);
	color: var(--pcgh-primary)
}

.pcgh-uc-icon-btn i[data-lucide] {
	width: 14px;
	height: 14px
}

/* 收藏 tabs（小） */
.pcgh-uc-tabs {
	display: flex;
	gap: 14px;
	font-size: 13px
}

.pcgh-uc-tabs a {
	color: var(--pcgh-text-3);
	text-decoration: none;
	padding: 4px 0
}

.pcgh-uc-tabs a.is-active {
	color: #fff;
	border-bottom: 2px solid var(--pcgh-primary);
	font-weight: 600
}

.pcgh-uc-fav-grid {
	grid-template-columns: repeat(6,minmax(0,1fr))
}
.pcgh-uc-fav-grid .pcgh-game-card__title,
.pcgh-author-grid .pcgh-game-card__title {
	font-size:12px;
	line-height:1.45
}
.pcgh-uc-fav-grid .pcgh-game-card__meta,
.pcgh-author-grid .pcgh-game-card__meta {
	font-size:12px
}
.pcgh-uc .pcgh-game-card__cover {
	aspect-ratio:4/2
}

/* 表单 */
.pcgh-uc-form {
	display: flex;
	flex-direction: column;
	gap: 14px;
	max-width: 680px
}

.pcgh-uc-form--narrow {
	max-width: 420px
}

.pcgh-uc-form .pcgh-form-row label {
	display: block;
	margin-bottom: 6px;
	color: var(--pcgh-text-2);
	font-size: 13px
}

.pcgh-uc-form .pcgh-form-row input,.pcgh-uc-form .pcgh-form-row select,.pcgh-uc-form .pcgh-form-row textarea {
	width: 100%;
	box-sizing: border-box;
	background: var(--pcgh-surface-2);
	border: 1px solid var(--pcgh-border);
	border-radius: 8px;
	padding: 10px 12px;
	color: var(--pcgh-text);
	font-size: 14px;
	outline: none;
	transition: .15s
}

.pcgh-uc-form .pcgh-form-row input:focus,.pcgh-uc-form .pcgh-form-row select:focus,.pcgh-uc-form .pcgh-form-row textarea:focus {
	border-color: var(--pcgh-primary);
	box-shadow: 0 0 0 3px rgba(59,130,246,.18)
}

.pcgh-uc-form .pcgh-form-row--inline {
	display: grid;
	grid-template-columns: repeat(3,1fr);
	gap: 14px
}

.pcgh-form-actions {
	display: flex;
	align-items: center;
	gap: 14px
}

.pcgh-uc-profile-card {
	position: relative;
	overflow: hidden
}

.pcgh-uc-profile-card::before {
	content: "";
	position: absolute;
	inset: 0 0 auto;
	height: 120px;
	background: radial-gradient(circle at 18% 0,rgba(59,130,246,.16),transparent 36%),linear-gradient(135deg,rgba(59,130,246,.08),rgba(255,255,255,0));
	pointer-events: none
}

.pcgh-uc-profile-head {
	position: relative;
	display: grid;
	grid-template-columns: minmax(260px,1fr) minmax(320px,auto);
	align-items: flex-start;
	gap: 18px;
	margin: -2px -4px 18px;
	padding: 2px 4px 18px;
	border-bottom: 1px solid rgba(255,255,255,.08)
}

.pcgh-uc-profile-head__title {
	display: flex;
	align-items: center;
	gap: 12px;
	min-width: 0
}

.pcgh-uc-profile-head__title > div {
	min-width: 0
}

.pcgh-uc-profile-head__icon {
	width: 50px;
	height: 50px;
	border-radius: 14px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg,var(--pcgh-primary),#60a5fa);
	color: #fff;
	box-shadow: 0 10px 26px rgba(59,130,246,.28);
	flex-shrink: 0
}

.pcgh-uc-profile-head__icon i[data-lucide] {
	width: 28px;
	height: 28px
}

.pcgh-uc-profile-head__title h3 {
	display: block;
	margin: 0 0 5px;
	font-size: 18px;
	line-height: 1.2
}

.pcgh-uc-profile-head__title h3 i[data-lucide] {
	display: none
}

.pcgh-uc-profile-head__title p {
	margin: 0;
	color: var(--pcgh-text-3);
	font-size: 13px;
	line-height: 1.5
}

.pcgh-uc-profile-form {
	max-width: none
}

.pcgh-uc-profile-grid {
	display: grid;
	grid-template-columns: repeat(2,minmax(0,1fr));
	gap: 14px;
	align-items: start
}

.pcgh-uc-profile-box {
	padding: 16px;
	background: linear-gradient(135deg,rgba(255,255,255,.045),rgba(255,255,255,.02));
	border: 1px solid rgba(255,255,255,.08);
	border-radius: 14px
}

.pcgh-uc-profile-box--avatar {
	grid-column: 1 / -1
}

.pcgh-uc-profile-box__head {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 14px;
	padding-bottom: 12px;
	border-bottom: 1px solid var(--pcgh-border)
}

.pcgh-uc-profile-box__head > span {
	width: 44px;
	height: 44px;
	border-radius: 12px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: rgba(59,130,246,.12);
	color: var(--pcgh-primary);
	flex-shrink: 0
}

.pcgh-uc-profile-box__head > span i[data-lucide] {
	width: 24px;
	height: 24px
}

.pcgh-uc-profile-box__head strong {
	display: block;
	color: #fff;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.2
}

.pcgh-uc-profile-box__head small {
	display: block;
	margin-top: 3px;
	color: var(--pcgh-text-3);
	font-size: 12px
}

.pcgh-uc-profile-box .pcgh-form-row:last-child {
	margin-bottom: 0
}

.pcgh-uc-profile-box .pcgh-form-row--inline {
	grid-template-columns: repeat(auto-fit,minmax(160px,1fr))
}

.pcgh-uc-profile-box--avatar .pcgh-uc-avatar-row {
	padding: 4px 0
}

.pcgh-uc-profile-form .pcgh-form-actions {
	margin-top: 4px;
	padding-top: 16px;
	border-top: 1px solid var(--pcgh-border)
}

.pcgh-uc-quick-stats {
	display: grid;
	grid-template-columns: repeat(3,minmax(0,1fr));
	justify-content: end;
	gap: 8px;
	font-size: 12px;
	color: var(--pcgh-text-3);
	margin-top: 0;
	max-width: 640px;
	width: 100%
}

.pcgh-uc-quick-stats span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	min-width: 0;
	min-height: 34px;
	padding: 5px 12px;
	background: rgba(15,23,42,.48);
	border: 1px solid rgba(255,255,255,.08);
	border-radius: 999px;
	box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
	white-space: nowrap
}

.pcgh-uc-quick-stats span i[data-lucide] {
	width: 19px;
	height: 19px;
	color: #8fb4ff;
	flex-shrink: 0
}

.pcgh-uc-quick-stats em {
	font-style: normal;
	color: var(--pcgh-text-3);
	overflow: hidden;
	text-overflow: ellipsis
}

.pcgh-uc-quick-stats b {
	color: var(--pcgh-primary);
	font-weight: 800;
	overflow: hidden;
	text-overflow: ellipsis
}

.pcgh-uc-profile-card {
	background: rgba(15,23,42,.58);
	border: 1px solid rgba(148,163,184,.16);
	border-radius: 18px;
	box-shadow: 0 24px 70px rgba(0,0,0,.22),inset 0 1px 0 rgba(255,255,255,.04)
}

.pcgh-uc-profile-card::before {
	height: 180px;
	background: radial-gradient(circle at 12% 4%,rgba(59,130,246,.2),transparent 32%),radial-gradient(circle at 88% 0,rgba(14,165,233,.12),transparent 34%),linear-gradient(180deg,rgba(255,255,255,.045),rgba(255,255,255,0))
}

.pcgh-uc-profile-head {
	grid-template-columns: minmax(260px,1fr) minmax(420px,.9fr);
	align-items: center;
	gap: 18px;
	margin: 0 0 18px;
	padding: 0 0 18px;
	border-bottom: 1px solid rgba(148,163,184,.13)
}

.pcgh-uc-profile-head__icon,
.pcgh-uc-profile-box__head > span {
	background: linear-gradient(135deg,rgba(37,99,235,.95),rgba(59,130,246,.35));
	border: 1px solid rgba(96,165,250,.32);
	box-shadow: 0 12px 32px rgba(37,99,235,.24);
	color: #bfdbfe
}

.pcgh-uc-quick-stats {
	grid-template-columns: repeat(3,minmax(0,1fr));
	max-width: none
}

.pcgh-uc-quick-stats span {
	justify-content: flex-start;
	min-height: 38px;
	padding: 7px 12px;
	background: rgba(2,6,23,.32);
	border-color: rgba(148,163,184,.12);
	border-radius: 12px
}

.pcgh-uc-profile-grid {
	gap: 14px
}

.pcgh-uc-profile-box {
	position: relative;
	background: rgba(15,23,42,.46);
	border: 1px solid rgba(148,163,184,.14);
	border-radius: 18px;
	box-shadow: inset 0 1px 0 rgba(255,255,255,.035)
}

.pcgh-uc-profile-box--avatar {
	padding: 18px
}

.pcgh-uc-profile-box__head {
	border-bottom-color: rgba(148,163,184,.1)
}

.pcgh-uc-profile-box__head strong {
	font-size: 16px
}

.pcgh-uc-avatar-row {
	display: flex;
	align-items: center;
	gap: 18px
}

.pcgh-uc-avatar-row__img {
	width: 84px!important;
	height: 84px!important;
	border-radius: 50%;
	border: 2px solid rgba(96,165,250,.32);
	box-shadow: 0 14px 36px rgba(0,0,0,.3)
}

.pcgh-uc-avatar-row__act {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 9px
}

.pcgh-uc-avatar-row__act small {
	color: var(--pcgh-text-3);
	font-size: 12px
}

.pcgh-uc-avatar-upload {
	cursor: pointer;
	min-height: 38px;
	padding: 8px 16px
}

.pcgh-required {
	color: #ef4444
}

.pcgh-uc-profile-form .pcgh-form-row label {
	color: #dbeafe;
	font-weight: 600
}

.pcgh-uc-profile-form .pcgh-form-row label small {
	float: right;
	color: var(--pcgh-text-3);
	font-weight: 400
}

.pcgh-uc-profile-form .pcgh-form-row input,
.pcgh-uc-profile-form .pcgh-form-row select,
.pcgh-uc-profile-form .pcgh-form-row textarea {
	min-height: 42px;
	background: rgba(2,6,23,.34);
	border-color: rgba(148,163,184,.13);
	border-radius: 10px;
	box-shadow: inset 0 1px 0 rgba(255,255,255,.025)
}

.pcgh-uc-profile-form .pcgh-form-row textarea {
	min-height: 86px;
	resize: vertical
}

.pcgh-uc-profile-form .pcgh-form-actions {
	align-items: center;
	justify-content: flex-start;
	gap: 16px;
	margin-top: 14px;
	padding-top: 16px;
	border-top-color: rgba(148,163,184,.12)
}

.pcgh-uc-profile-form .pcgh-form-actions .pcgh-btn {
	min-width: 128px;
	min-height: 42px;
	justify-content: center;
	box-shadow: 0 12px 28px rgba(37,99,235,.26)
}

.pcgh-uc-profile-form .pcgh-btn i[data-lucide] {
	width: 19px;
	height: 19px
}

.pcgh-uc-profile-save-tip {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: #86efac;
	font-size: 13px
}

.pcgh-uc-profile-save-tip i[data-lucide] {
	width: 18px;
	height: 18px
}

.pcgh-uc-profile-shell {
	width: 100%
}

.pcgh-uc-profile-editor {
	display: grid;
	grid-template-columns: minmax(0,1fr) 276px;
	gap: 12px;
	align-items: start
}

.pcgh-uc-profile-panel {
	background: rgba(15,23,42,.72);
	border: 1px solid rgba(148,163,184,.14);
	border-radius: 12px;
	box-shadow: 0 18px 50px rgba(0,0,0,.18),inset 0 1px 0 rgba(255,255,255,.035)
}

.pcgh-uc-profile-main {
	padding: 22px
}

.pcgh-uc-profile-section-head {
	display: flex;
	flex-direction: column;
	gap: 14px;
	margin-bottom: 16px;
	padding-bottom: 10px;
	border-bottom: 1px solid rgba(148,163,184,.12)
}

.pcgh-uc-profile-section-head h3 {
	margin: 0;
	color: #fff;
	font-size: 18px;
	font-weight: 900
}

.pcgh-uc-profile-section-head span {
	width: max-content;
	color: #fff;
	font-size: 14px;
	font-weight: 800;
	position: relative
}

.pcgh-uc-profile-section-head span::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -11px;
	width: 48px;
	height: 2px;
	border-radius: 999px;
	background: var(--pcgh-primary)
}

.pcgh-uc-profile-section-head--sub {
	margin-top: 18px
}

.pcgh-uc-profile-field {
	display: grid;
	grid-template-columns: 76px minmax(0,1fr);
	align-items: center;
	gap: 12px;
	margin-bottom: 14px
}

.pcgh-uc-profile-field > label {
	color: var(--pcgh-text-3);
	font-size: 13px;
	font-weight: 700
}

.pcgh-uc-profile-field--textarea {
	align-items: start
}

.pcgh-uc-profile-avatar-edit {
	display: flex;
	align-items: center;
	gap: 18px
}

.pcgh-uc-profile-avatar-edit img {
	width: 72px;
	height: 72px;
	border-radius: 50%;
	object-fit: cover;
	border: 2px solid rgba(96,165,250,.22);
}

.pcgh-uc-profile-avatar-edit p {
	margin: 0 0 8px;
	color: var(--pcgh-text-3);
	font-size: 12px;
	line-height: 1.6
}

.pcgh-uc-profile-upload {
	display: inline-flex;
	align-items: center;
	height: 28px;
	padding: 0 12px;
	border-radius: 999px;
	background: rgba(37,99,235,.16);
	color: #60a5fa;
	font-size: 12px;
	font-weight: 800;
	cursor: pointer
}

.pcgh-uc-profile-control {
	position: relative
}

.pcgh-uc-profile-control input,
.pcgh-uc-profile-control textarea {
	width: 100%;
	min-height: 40px;
	padding: 0 40px 0 12px;
	border: 1px solid rgba(148,163,184,.12);
	border-radius: 7px;
	background: rgba(2,6,23,.22);
	color: #e5e7eb;
	font-size: 13px;
	box-shadow: inset 0 1px 0 rgba(255,255,255,.025)
}

.pcgh-uc-profile-control textarea {
	min-height: 84px;
	padding-top: 12px;
	padding-bottom: 24px;
	resize: vertical
}

.pcgh-uc-profile-control small {
	position: absolute;
	right: 10px;
	bottom: 8px;
	color: var(--pcgh-text-3);
	font-size: 11px
}

.pcgh-uc-profile-control--email em {
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	color: #22c55e;
	line-height: 0
}

.pcgh-uc-profile-control--email em i[data-lucide] {
	width: 15px;
	height: 15px
}

.pcgh-uc-profile-gender {
	display: flex;
	align-items: center;
	gap: 18px;
	min-height: 40px
}

.pcgh-uc-profile-gender label {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	color: var(--pcgh-text-2);
	font-size: 13px;
	cursor: pointer
}

.pcgh-uc-profile-gender input {
	width: 14px;
	height: 14px;
	accent-color: var(--pcgh-primary)
}

.pcgh-uc-profile-actions {
	display: flex;
	align-items: center;
	gap: 36px;
	margin-top: 18px;
	padding-top: 16px;
	border-top: 1px solid rgba(148,163,184,.1)
}

.pcgh-uc-profile-actions .pcgh-btn {
	min-width: 146px;
	justify-content: center
}

.pcgh-uc-profile-aside {
	display: grid;
	gap: 12px
}

.pcgh-uc-profile-aside .pcgh-uc-profile-panel {
	padding: 14px
}

.pcgh-uc-profile-aside h3 {
	margin: 0 0 12px;
	color: #fff;
	font-size: 14px;
	font-weight: 900
}

.pcgh-uc-profile-preview {
	overflow: hidden
}

.pcgh-uc-profile-preview__cover {
	height: 112px;
	margin: -14px -14px 0;
	background: radial-gradient(circle at 70% 20%,rgba(148,163,184,.3),transparent 34%),linear-gradient(135deg,rgba(15,23,42,.2),rgba(2,6,23,.8)),url("../images/banner-default.jpg") center/cover
}

.pcgh-uc-profile-preview__body {
	padding: 0 8px 6px;
	display: grid;
	grid-template-columns: 58px minmax(0,1fr);
	gap: 10px;
	align-items: center
}

.pcgh-uc-profile-preview__body > img {
	width: 58px;
	height: 58px;
	margin-top: -24px;
	border-radius: 50%;
	object-fit: cover;
	border: 3px solid rgba(15,23,42,.95);
	box-shadow: 0 10px 26px rgba(0,0,0,.32)
}

.pcgh-uc-profile-preview__body strong {
	display: flex;
	align-items: center;
	gap: 5px;
	color: #fff;
	font-size: 14px;
	font-weight: 900
}

.pcgh-uc-profile-preview__body strong span {
	display: inline-flex
}

.pcgh-uc-profile-preview__body strong i[data-lucide] {
	width: 14px;
	height: 14px
}

.pcgh-uc-profile-preview__body .is-male {
	color: #38bdf8
}

.pcgh-uc-profile-preview__body .is-female {
	color: #fb7185
}

.pcgh-uc-profile-preview__body small {
	display: block;
	margin-top: 4px;
	color: var(--pcgh-text-3);
	font-size: 11px
}

.pcgh-uc-profile-preview__body p {
	grid-column: 1 / -1;
	margin: 8px 0 0;
	color: var(--pcgh-text-3);
	font-size: 12px;
	line-height: 1.6
}

.pcgh-uc-profile-completion__body {
	display: grid;
	grid-template-columns: 76px minmax(0,1fr);
	gap: 14px;
	align-items: center
}

.pcgh-uc-profile-ring {
	width: 72px;
	height: 72px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	background: conic-gradient(var(--pcgh-primary) calc(var(--pcgh-profile-percent) * 1%),rgba(148,163,184,.16) 0);
	position: relative
}

.pcgh-uc-profile-ring::before {
	content: "";
	position: absolute;
	inset: 8px;
	border-radius: inherit;
	background: conic-gradient(var(--pcgh-primary) calc(var(--pcgh-profile-percent) * 1%),rgba(148,163,184,.16) 0);
}

.pcgh-uc-profile-ring span {
	position: relative;
	color: #fff;
	font-size: 20px;
	font-weight: 900
}

.pcgh-uc-profile-completion ul,
.pcgh-uc-profile-tips ul {
	list-style: none;
	margin: 0;
	padding: 0
}

.pcgh-uc-profile-completion li {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	color: var(--pcgh-text-3);
	font-size: 12px;
	line-height: 1.8
}

.pcgh-uc-profile-completion li::before {
	content: "";
	width: 11px;
	height: 11px;
	border-radius: 50%;
	border: 1px solid rgba(148,163,184,.42);
	flex: 0 0 auto
}

.pcgh-uc-profile-completion li.is-done::before {
	background: #22c55e;
	border-color: #22c55e
}

.pcgh-uc-profile-completion li span {
	margin-right: auto
}

.pcgh-uc-profile-completion li.is-done {
	color: #d1fae5
}

.pcgh-uc-profile-completion li em {
	color: var(--pcgh-text-3);
	font-style: normal
}

.pcgh-uc-profile-tips li {
	position: relative;
	padding-left: 12px;
	color: var(--pcgh-text-3);
	font-size: 12px;
	line-height: 1.9
}

.pcgh-uc-profile-tips li::before {
	content: "";
	position: absolute;
	left: 0;
	top: .85em;
	width: 3px;
	height: 3px;
	border-radius: 50%;
	background: var(--pcgh-text-3)
}

/* 任务 / 安全列表 */
.pcgh-uc-task-list,.pcgh-uc-sec-list,.pcgh-uc-msg-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 12px
}

.pcgh-uc-sec-list li {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 14px 16px;
	background: var(--pcgh-surface-2);
	border: 1px solid var(--pcgh-border);
	border-radius: 10px;
	transition: .15s
}

.pcgh-uc-task-list li {
	position: relative;
	display: grid;
	grid-template-columns: auto minmax(0,1fr) auto;
	align-items: center;
	gap: 16px;
	padding: 16px 18px;
	background: linear-gradient(135deg,rgba(255,255,255,.045),rgba(255,255,255,.02));
	border: 1px solid rgba(255,255,255,.08);
	border-radius: 14px;
	overflow: hidden;
	transition: .18s
}

.pcgh-uc-task-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 3px;
	background: transparent;
	opacity: 0
}

.pcgh-uc-task-list li:hover {
	border-color: rgba(255,255,255,.14);
	background: linear-gradient(135deg,rgba(255,255,255,.06),rgba(255,255,255,.025));
	transform: translateY(-1px)
}

.pcgh-uc-sec-list li:hover {
	border-color: rgba(59,130,246,.4);
	background: rgba(59,130,246,.04)
}

.pcgh-uc-task-list__icon,.pcgh-uc-sec-list__icon {
	width: 42px;
	height: 42px;
	border-radius: 10px;
	background: rgba(255,255,255,.05);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0
}

.pcgh-uc-task-list__icon {
	width: 48px;
	height: 48px;
	border-radius: 14px;
	background: rgba(255,255,255,.055);
	color: var(--pcgh-text-2);
	box-shadow: inset 0 0 0 1px rgba(255,255,255,.06)
}

.pcgh-uc-task-list__icon i[data-lucide],.pcgh-uc-sec-list__icon i[data-lucide] {
	width: 18px;
	height: 18px
}

.pcgh-uc-task-list__icon i[data-lucide] {
	width: 21px;
	height: 21px
}

.pcgh-uc-sec-list li > div {
	flex: 1;
	min-width: 0
}

.pcgh-uc-task-list__body {
	min-width: 0
}

.pcgh-uc-task-list strong,.pcgh-uc-sec-list strong {
	display: block;
	color: #fff;
	font-size: 14px;
	margin-bottom: 3px;
	font-weight: 600
}

.pcgh-uc-task-list__title {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
	margin-bottom: 5px
}

.pcgh-uc-task-list__title strong {
	margin: 0;
	font-size: 15px
}

.pcgh-uc-task-list__body p {
	margin: 0 0 10px;
	color: var(--pcgh-text-3);
	font-size: 12px;
	line-height: 1.55
}

.pcgh-uc-task-list small,.pcgh-uc-sec-list small {
	color: var(--pcgh-text-3);
	font-size: 12px;
	display: inline-flex;
	align-items: center;
	gap: 4px;
	flex-wrap: wrap
}

.pcgh-uc-task-list b {
	color: #fbbf24;
	font-weight: 700
}

.pcgh-uc-sec-list b {
	color: var(--pcgh-text);
	font-weight: 600
}

/* 任务奖励 chip */
.pcgh-uc-task-list small {
	padding: 0
}

.pcgh-uc-task-list .pcgh-uc-task-reward {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: 3px 9px;
	background: rgba(255,255,255,.055);
	color: var(--pcgh-text-2);
	border: 1px solid rgba(255,255,255,.08);
	border-radius: 99px;
	font-size: 11px;
	font-weight: 700
}

.pcgh-uc-task-list .pcgh-uc-task-reward i[data-lucide] {
	width: 12px;
	height: 12px
}

.pcgh-uc-card__head--tasks {
	align-items: flex-start
}

.pcgh-uc-task-summary {
	margin: 6px 0 0;
	color: var(--pcgh-text-3);
	font-size: 12px
}

.pcgh-uc-task-total {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	padding: 7px 10px;
	background: rgba(74,222,128,.10);
	border: 1px solid rgba(74,222,128,.22);
	border-radius: 99px;
	color: #86efac;
	font-size: 12px;
	font-weight: 700;
	white-space: nowrap
}

.pcgh-uc-task-total i[data-lucide] {
	width: 13px;
	height: 13px
}

.pcgh-uc-task-progress {
	display: grid;
	grid-template-columns: minmax(0,1fr) auto;
	align-items: center;
	gap: 10px;
	max-width: 360px
}

.pcgh-uc-task-progress > span {
	height: 7px;
	background: rgba(255,255,255,.08);
	border-radius: 99px;
	overflow: hidden
}

.pcgh-uc-task-progress > span i {
	display: block;
	height: 100%;
	background: linear-gradient(90deg,var(--pcgh-text-3),var(--pcgh-text-2));
	border-radius: inherit;
	transition: width .25s
}

.pcgh-uc-task-progress em {
	font-style: normal;
	color: var(--pcgh-text-3);
	font-size: 11px;
	font-weight: 700
}

.pcgh-uc-task-list__action {
	display: flex;
	justify-content: flex-end;
	min-width: 86px
}

.pcgh-uc-task-list__action .pcgh-btn {
	padding: 8px 14px;
	font-size: 12px
}

.pcgh-uc-task-list__action .pcgh-uc-status {
	white-space: nowrap
}

/* 消息列表 */
.pcgh-uc-msg-list li {
	display: flex;
	gap: 12px;
	padding: 12px;
	background: var(--pcgh-surface-2);
	border: 1px solid var(--pcgh-border);
	border-radius: 10px
}

.pcgh-uc-msg-list__icon {
	flex-shrink: 0;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: rgba(59,130,246,.15);
	color: var(--pcgh-primary);
	display: inline-flex;
	align-items: center;
	justify-content: center
}

.pcgh-uc-msg-list__icon i[data-lucide] {
	width: 16px;
	height: 16px
}

.pcgh-uc-msg-list__body {
	flex: 1;
	min-width: 0;
	font-size: 13px;
	color: var(--pcgh-text-2)
}

.pcgh-uc-msg-list__body p {
	margin: 0 0 4px;
	color: var(--pcgh-text)
}

.pcgh-uc-msg-list__body blockquote {
	margin: 0 0 4px;
	padding: 6px 10px;
	background: var(--pcgh-bg);
	border-left: 2px solid var(--pcgh-primary);
	color: var(--pcgh-text-2);
	font-size: 12px;
	border-radius: 0 5px 5px 0
}

.pcgh-uc-msg-list__body small {
	color: var(--pcgh-text-3);
	font-size: 11px
}

/* 空状态 / 分页 */
.pcgh-uc-empty {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	padding: 36px 12px;
	color: var(--pcgh-text-3);
	font-size: 13px
}

.pcgh-uc-empty i[data-lucide] {
	color: var(--pcgh-text-3);
	opacity: .6
}

.pcgh-uc-empty a {
	color: var(--pcgh-primary)
}

.pcgh-uc-pager {
	display: flex;
	justify-content: center;
	gap: 6px;
	margin-top: 18px
}

.pcgh-uc-pager a,.pcgh-uc-pager span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 32px;
	height: 32px;
	padding: 0 8px;
	background: var(--pcgh-surface-2);
	border: 1px solid var(--pcgh-border);
	border-radius: 6px;
	color: var(--pcgh-text-2);
	text-decoration: none;
	font-size: 13px
}

.pcgh-uc-pager .current {
	background: var(--pcgh-primary);
	color: #fff;
	border-color: var(--pcgh-primary)
}

/* 响应式 */
/* ===== UC 补充：表单消息 / 头像行 / 消息已读 / 任务完成 / 月历 ===== */
.pcgh-form-msg {
	font-size: 13px;
	color: var(--pcgh-text-3)
}

.pcgh-form-msg--success {
	color: #4ade80
}

.pcgh-form-msg--error {
	color: #fca5a5
}

.pcgh-form-row--avatar {
	margin-bottom: 6px
}

.pcgh-uc-avatar-row {
	display: flex;
	align-items: center;
	gap: 14px
}

.pcgh-uc-avatar-row__img {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	border: 2px solid var(--pcgh-border);
	background: var(--pcgh-surface-2);
	object-fit: cover
}

.pcgh-uc-avatar-row__act {
	display: flex;
	flex-direction: column;
	gap: 6px
}

.pcgh-uc-msg-list li {
	position: relative;
	border-color: var(--pcgh-border);
	transition: .15s
}

.pcgh-uc-msg-list li.is-unread {
	border-color: var(--pcgh-primary);
	background: rgba(59,130,246,.06)
}

.pcgh-uc-msg-list__body header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 4px;
	color: var(--pcgh-text);
	font-size: 14px
}

.pcgh-uc-msg-list__body header strong {
	font-weight: 600
}

.pcgh-uc-msg-list__body header small {
	color: var(--pcgh-text-3);
	font-size: 11px;
	font-weight: 400
}

.pcgh-uc-msg-list__text {
	font-size: 13px;
	color: var(--pcgh-text-2);
	line-height: 1.6
}

.pcgh-uc-msg-list__text blockquote {
	margin: 4px 0;
	padding: 6px 10px;
	background: var(--pcgh-bg);
	border-left: 2px solid var(--pcgh-primary);
	font-size: 12px;
	border-radius: 0 5px 5px 0
}

.pcgh-uc-msg-list__link {
	display: inline-flex;
	align-items: center;
	gap: 2px;
	margin-top: 4px;
	color: var(--pcgh-primary);
	font-size: 12px
}

.pcgh-uc-card__head button.pcgh-uc-card__more {
	background: transparent;
	border: 0;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	gap: 4px
}

.pcgh-uc-task-list li.is-done {
	opacity: 1;
	border-color: rgba(74,222,128,.24);
	background: linear-gradient(135deg,rgba(74,222,128,.08),rgba(255,255,255,.025))
}

.pcgh-uc-task-list li.is-done::before {
	background: linear-gradient(180deg,#86efac,#22c55e)
}

.pcgh-uc-task-list li.is-done .pcgh-uc-task-list__icon {
	background: linear-gradient(135deg,rgba(74,222,128,.22),rgba(34,197,94,.10));
	color: #86efac;
	box-shadow: inset 0 0 0 1px rgba(74,222,128,.20)
}

.pcgh-uc-task-list li.is-done .pcgh-uc-task-progress > span i {
	background: linear-gradient(90deg,#86efac,#22c55e)
}

.pcgh-uc-card--points-tasks .pcgh-uc-task-list {
	display: grid;
	grid-template-columns: repeat(3,minmax(0,1fr));
	gap: 14px
}

.pcgh-uc-card--points-tasks .pcgh-uc-task-list li {
	grid-template-columns: auto minmax(0,1fr);
	align-items: flex-start;
	min-height: 178px;
	padding: 16px;
	transform: none
}

.pcgh-uc-card--points-tasks .pcgh-uc-task-list li:hover {
	transform: none
}

.pcgh-uc-card--points-tasks .pcgh-uc-task-list__action {
	grid-column: 1 / -1;
	justify-content: flex-start;
	min-width: 0
}

.pcgh-uc-card--points-tasks .pcgh-uc-task-progress {
	max-width: none
}

@media (max-width: 1180px) {
	.pcgh-uc-card--points-tasks .pcgh-uc-task-list {
		grid-template-columns: repeat(2,minmax(0,1fr))
	}
}

@media (max-width: 680px) {
	.pcgh-uc-card--points-tasks .pcgh-uc-task-list {
		grid-template-columns: 1fr
	}
}

/* 月历 — 注意：全限定 .pcgh-uc-card .pcgh-uc-cal，避免与别的地方同名冲突 */
.pcgh-uc-card .pcgh-uc-cal {
	font-size: 13px;
	width: auto;
	height: auto;
	background: transparent;
	border-radius: 0;
	display: block
}

.pcgh-uc-cal__head,.pcgh-uc-cal__grid {
	display: grid;
	grid-template-columns: repeat(7,1fr);
	gap: 6px
}

.pcgh-uc-cal__head {
	margin-bottom: 8px;
	color: var(--pcgh-text-3);
	text-align: center;
	font-size: 12px
}

.pcgh-uc-cal__head span {
	padding: 6px 0;
	font-weight: 500
}

.pcgh-uc-cal__cell {
	position: relative;
	aspect-ratio: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--pcgh-surface-2);
	border: 1px solid var(--pcgh-border);
	border-radius: 8px;
	color: var(--pcgh-text-2);
	font-weight: 500;
	transition: .15s;
	min-height: 38px
}

.pcgh-uc-cal__cell:hover:not(.is-empty) {
	border-color: var(--pcgh-primary);
	transform: translateY(-1px)
}

.pcgh-uc-cal__cell.is-empty {
	visibility: hidden;
	border: 0;
	background: transparent
}

.pcgh-uc-cal__cell.is-signed {
	background: linear-gradient(135deg,rgba(59,130,246,.25),rgba(59,130,246,.10));
	border-color: var(--pcgh-primary);
	color: #fff;
	font-weight: 700
}

.pcgh-uc-cal__cell.is-signed i[data-lucide] {
	position: absolute;
	top: 3px;
	right: 3px;
	width: 11px;
	height: 11px;
	color: var(--pcgh-primary);
	background: #0f1419;
	border-radius: 50%;
	padding: 1px
}

.pcgh-uc-cal__cell.is-today {
	box-shadow: 0 0 0 2px var(--pcgh-primary);
	color: #fff
}

.pcgh-uc-cal__cell.is-today:not(.is-signed) {
	background: rgba(59,130,246,.10)
}

/* 安全设置列表的底部会话列表 */
.pcgh-uc-sec-list li.has-sub {
	flex-wrap: wrap;
	align-items: flex-start
}

.pcgh-uc-sec-list li.has-sub > .pcgh-uc-sec-list__icon {
	margin-top: 2px
}

/* 积分明细表（5 列） */
.pcgh-uc-table--log .pcgh-uc-table__head,.pcgh-uc-table--log .pcgh-uc-table__row {
	grid-template-columns: 1.2fr 0.7fr 1.5fr 0.6fr 0.6fr
}

@media (max-width:1100px) {
	.pcgh-uc__layout {
		grid-template-columns: 1fr
	}

	.pcgh-uc__menu {
		position: static;
		flex-direction: row;
		flex-wrap: wrap;
		gap: 4px
	}

	.pcgh-uc-menu-item {
		flex: 1 0 calc(50% - 4px);
		justify-content: center
	}

	.pcgh-uc-menu-separator {
		display: none
	}

	.pcgh-uc-menu-item:hover {
		transform: none
	}

	.pcgh-uc-menu-item.is-active {
		box-shadow: inset 0 1px 0 rgba(255,255,255,.18)
	}

	.pcgh-uc-menu-item.is-active::after {
		display: none
	}

	.pcgh-uc-stats {
		grid-template-columns: 1fr
	}

	.pcgh-uc-stats--points {
		grid-template-columns: repeat(2, minmax(0, 1fr))
	}

	.pcgh-uc-quick {
		grid-template-columns: repeat(2,1fr)
	}

	.pcgh-uc-fav-grid {
		grid-template-columns: repeat(3,1fr)
	}

	.pcgh-uc-profile-head {
		grid-template-columns: 1fr
	}

	.pcgh-uc-quick-stats {
		max-width: none
	}
}

@media (max-width:720px) {
	.pcgh-uc-signin-grid {
		grid-template-columns: repeat(5,1fr)
	}

	.pcgh-uc-profile-card {
		padding: 16px
	}

	.pcgh-uc-profile-head {
		gap: 14px;
		margin: 0 0 16px;
		padding: 0 0 16px
	}

	.pcgh-uc-profile-head__title {
		min-width: 0;
		width: 100%
	}

	.pcgh-uc-profile-head__icon {
		width: 40px;
		height: 40px;
		border-radius: 12px
	}

	.pcgh-uc-quick-stats {
		grid-template-columns: repeat(2,minmax(0,1fr));
		justify-content: stretch;
		max-width: none;
		width: 100%
	}

	.pcgh-uc-quick-stats span {
		justify-content: center;
		padding: 5px 8px
	}

	.pcgh-uc-profile-grid {
		grid-template-columns: 1fr
	}

	.pcgh-uc-profile-box--avatar {
		grid-column: auto
	}

	.pcgh-uc-profile-box {
		padding: 14px
	}

	.pcgh-uc-avatar-row {
		align-items: flex-start;
		flex-wrap: wrap
	}

	.pcgh-uc-avatar-row__img {
		width: 72px!important;
		height: 72px!important
	}

	.pcgh-uc-profile-form .pcgh-form-actions {
		flex-direction: column;
		align-items: stretch
	}

	.pcgh-uc-profile-save-tip {
		justify-content: center
	}

	.pcgh-uc-cal__head,.pcgh-uc-cal__grid {
		gap: 4px
	}

	.pcgh-uc-cal__cell {
		font-size: 12px;
		min-height: 32px;
		border-radius: 6px
	}

	.pcgh-uc-cal__cell.is-signed i[data-lucide] {
		display: none
	}

	.pcgh-uc-task-list li {
		grid-template-columns: auto minmax(0,1fr);
		align-items: flex-start;
		padding: 14px
	}

	.pcgh-uc-task-list__action {
		grid-column: 2;
		justify-content: flex-start;
		min-width: 0
	}

	.pcgh-uc-task-list__action .pcgh-btn {
		width: 100%;
		justify-content: center
	}

	.pcgh-uc-task-total {
		width: 100%;
		justify-content: center
	}

	.pcgh-uc-sec-list li {
		flex-wrap: wrap
	}

	.pcgh-uc-sec-list li > div {
		flex-basis: calc(100% - 56px)
	}

	.pcgh-uc-sec-list li > .pcgh-btn,.pcgh-uc-sec-list li > .pcgh-uc-status {
		margin-left: 56px
	}

	.pcgh-uc-table__head {
		display: none
	}

	.pcgh-uc-table__row {
		grid-template-columns: 1fr;
		gap: 6px
	}

	.pcgh-uc-table__row > div:not(.pcgh-uc-table__game)::before {
		content: attr(data-label) "：";
		color: var(--pcgh-text-3);
		margin-right: 6px;
		font-size: 12px
	}

	.pcgh-uc-hero__inner {
		flex-direction: column;
		align-items: flex-start;
		gap: 12px
	}

	.pcgh-uc-hero__edit {
		align-self: stretch;
		justify-content: center
	}

	.pcgh-uc-fav-grid {
		grid-template-columns: repeat(2,1fr)
	}

	.pcgh-uc-form .pcgh-form-row--inline {
		grid-template-columns: 1fr
	}
}

@media (max-width:480px) {
	.pcgh-uc-profile-head__title {
		align-items: flex-start
	}

	.pcgh-uc-profile-head__title p {
		font-size: 12px
	}

	.pcgh-uc-quick-stats {
		grid-template-columns: 1fr
	}

	.pcgh-uc-stats--points {
		grid-template-columns: 1fr
	}

	.pcgh-uc-quick-stats span {
		justify-content: flex-start
	}

	.pcgh-uc-avatar-row {
		flex-direction: column
	}

	.pcgh-form-actions {
		flex-direction: column;
		align-items: stretch
	}

	.pcgh-form-actions .pcgh-btn {
		justify-content: center
	}
}

/* 密码眼睛切换 */
.pcgh-uc-pw {
	position: relative;
	display: flex;
	align-items: center
}

.pcgh-uc-pw input {
	padding-right: 40px !important
}

.pcgh-uc-pw__eye {
	position: absolute;
	right: 8px;
	top: 50%;
	transform: translateY(-50%);
	width: 30px;
	height: 30px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--pcgh-text-3);
	background: transparent;
	border: 0;
	cursor: pointer;
	border-radius: 6px;
	transition: .15s
}

.pcgh-uc-pw__eye:hover {
	background: var(--pcgh-bg);
	color: var(--pcgh-primary)
}

.pcgh-uc-pw__eye i[data-lucide] {
	width: 15px;
	height: 15px
}

/* 表单底部提示 */
.pcgh-uc-form__tip {
	margin: 6px 0 0;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 12px;
	color: var(--pcgh-text-3)
}

.pcgh-uc-form__tip i[data-lucide] {
	width: 13px;
	height: 13px;
	color: var(--pcgh-primary)
}

/* 活跃会话列表 */
.pcgh-uc-session-list {
	list-style: none;
	margin: 8px 0 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 6px
}

.pcgh-uc-session-list--full {
	flex-basis: 100%;
	margin-top: 10px
}

.pcgh-uc-session-list li {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 12px;
	background: var(--pcgh-bg);
	border: 1px solid var(--pcgh-border);
	border-radius: 8px;
	font-size: 12px;
	color: var(--pcgh-text-2)
}

.pcgh-uc-session-list i[data-lucide] {
	width: 14px;
	height: 14px;
	color: var(--pcgh-text-3);
	flex-shrink: 0
}

.pcgh-uc-session-list b {
	color: var(--pcgh-text);
	font-weight: 600
}

.pcgh-uc-session-list small {
	color: var(--pcgh-text-3);
	font-size: 11px;
	margin-left: auto
}

.pcgh-uc-session-list .is-current {
	border-color: var(--pcgh-primary);
	background: rgba(59,130,246,.05)
}

.pcgh-uc-session-list .is-current b::after {
	content: '当前';
	margin-left: 6px;
	padding: 1px 6px;
	background: var(--pcgh-primary);
	color: #fff;
	border-radius: 4px;
	font-size: 10px;
	font-weight: 600
}

/* ===== User Center (旧版兼容，已不再使用，但保留以防其他模板引用) ===== */
.pcgh-user {
	padding-bottom: 40px
}

.pcgh-user__hero {
	position: relative;
	background: #0f1419 center/cover no-repeat;
	border-radius: 0 0 var(--pcgh-radius-lg) var(--pcgh-radius-lg);
	overflow: hidden;
	margin-bottom: 18px
}

.pcgh-user__hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg,rgba(15,20,25,.55) 0%,rgba(15,20,25,.75) 70%,rgba(15,20,25,.92) 100%);
	pointer-events: none
}

.pcgh-user__hero-inner {
	position: relative;
	z-index: 1;
	padding: 36px 0 40px
}

.pcgh-user__hero-head h1 {
	font-size: 30px;
	font-weight: 800;
	margin: 0 0 6px;
	color: #fff;
	letter-spacing: .5px
}

.pcgh-user__hero-head p {
	margin: 0 0 30px;
	color: rgba(255,255,255,.78);
	font-size: 14px
}

.pcgh-user__hero-body {
	display: grid;
	grid-template-columns: minmax(0,1fr) auto;
	gap: 32px;
	align-items: center
}

/* 用户档案区 */
.pcgh-user__profile {
	display: flex;
	gap: 18px;
	align-items: flex-start;
	min-width: 0
}

.pcgh-user__avatar {
	flex-shrink: 0
}

.pcgh-user__avatar img,.pcgh-user__avatar-img {
	width: 96px;
	height: 96px;
	border-radius: 50%;
	border: 3px solid rgba(255,255,255,.15);
	box-shadow: 0 8px 24px rgba(0,0,0,.45);
	object-fit: cover
}

.pcgh-user__info {
	min-width: 0
}

.pcgh-user__info h2 {
	font-size: 22px;
	font-weight: 700;
	margin: 0 0 6px;
	display: flex;
	align-items: center;
	gap: 8px;
	color: #fff;
	flex-wrap: wrap
}

.pcgh-user__name {
	color: #fff
}

.pcgh-user-level {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	height: 22px;
	padding: 0 10px;
	font-size: 12px;
	font-weight: 600;
	border-radius: 11px;
	vertical-align: middle;
	backdrop-filter: blur(6px)
}

.pcgh-user-level i[data-lucide],.pcgh-user-level svg {
	width: 12px;
	height: 12px
}

.pcgh-user-gender {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: rgba(255,255,255,.1);
	vertical-align: middle
}

.pcgh-user-gender i[data-lucide],.pcgh-user-gender svg {
	width: 13px;
	height: 13px
}

.pcgh-user__meta {
	margin: 0 0 4px;
	color: rgba(255,255,255,.65);
	font-size: 13px
}

.pcgh-user__bio {
	margin: 0 0 10px;
	color: rgba(255,255,255,.85);
	font-size: 13px;
	line-height: 1.6
}

.pcgh-user__exp-bar {
	position: relative;
	height: 4px;
	background: rgba(255,255,255,.12);
	border-radius: 2px;
	overflow: hidden;
	max-width: 320px;
	margin: 0 0 12px
}

.pcgh-user__exp-bar > span {
	display: block;
	height: 100%;
	border-radius: inherit;
	transition: width .4s ease
}

.pcgh-user__actions {
	display: flex;
	gap: 8px;
	margin-top: 6px;
	flex-wrap: wrap
}

/* 玻璃磨砂按钮（hero 区专用） */
.pcgh-btn--glass {
	background: rgba(255,255,255,.08);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border: 1px solid rgba(255,255,255,.15);
	color: #fff
}

.pcgh-btn--glass:hover {
	background: rgba(255,255,255,.15);
	border-color: rgba(255,255,255,.3);
	color: #fff
}

/* 4 个统计卡 - 玻璃磨砂 */
.pcgh-user__stats {
	display: grid;
	grid-template-columns: repeat(4,minmax(140px,1fr));
	gap: 14px
}

.pcgh-stat-card {
	position: relative;
	padding: 18px 20px;
	background: rgba(15,20,25,.5);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid rgba(255,255,255,.08);
	border-radius: 14px;
	min-height: 96px;
	color: #fff;
	transition: .2s
}

.pcgh-stat-card:hover {
	transform: translateY(-2px);
	background: rgba(15,20,25,.65);
	border-color: rgba(255,255,255,.18)
}

.pcgh-stat-card__head {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 13px;
	color: rgba(255,255,255,.7);
	margin-bottom: 10px
}

.pcgh-stat-card__head i[data-lucide],.pcgh-stat-card__head svg {
	width: 14px;
	height: 14px;
	color: rgba(255,255,255,.45)
}

.pcgh-stat-card__num {
	font-size: 30px;
	font-weight: 700;
	line-height: 1.1;
	color: #fff;
	display: flex;
	align-items: center;
	gap: 6px
}

.pcgh-stat-card__num i[data-lucide],.pcgh-stat-card__num svg {
	width: 16px;
	height: 16px;
	color: #22c55e
}

.pcgh-user__tabs {
	display: flex;
	gap: 6px;
	background: transparent;
	border-bottom: 1px solid var(--pcgh-border);
	border-radius: 0;
	padding: 0;
	margin-bottom: 14px
}

.pcgh-user__tabs .pcgh-tabs__item {
	padding: 10px 18px;
	border-radius: 0;
	display: inline-flex;
	align-items: center;
	gap: 6px
}

.pcgh-user__tabs .pcgh-tabs__item.is-active {
	background: transparent;
	color: var(--pcgh-primary);
	position: relative;
	box-shadow: none
}

.pcgh-user__tabs .pcgh-tabs__item.is-active::after {
	content: '';
	position: absolute;
	left: 18px;
	right: 18px;
	bottom: -1px;
	height: 2px;
	background: var(--pcgh-primary);
	border-radius: 1px
}

.pcgh-user__tabs .pcgh-tabs__item i[data-lucide] {
	width: 14px;
	height: 14px
}

/* user table */
.pcgh-user-table {
	display: flex;
	flex-direction: column
}

.pcgh-user-table__head,.pcgh-user-table__row {
	display: grid;
	grid-template-columns: minmax(280px,2.5fr) 110px 90px 90px 90px;
	align-items: center;
	gap: 14px;
	padding: 14px 4px
}

.pcgh-user-table__head {
	color: var(--pcgh-text-3);
	font-size: 12px;
	border-bottom: 1px solid var(--pcgh-border)
}

.pcgh-user-table__row {
	border-bottom: 1px solid rgba(255,255,255,.04)
}

.pcgh-user-table__row:hover {
	background: rgba(255,255,255,.02)
}

.pcgh-user-table__game {
	display: flex;
	gap: 12px;
	align-items: center;
	min-width: 0
}

.pcgh-user-table__cover {
	flex-shrink: 0;
	width: 88px;
	height: 56px;
	border-radius: 6px;
	background: #0f1419 center/cover no-repeat
}

.pcgh-user-table__meta {
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 4px
}

.pcgh-user-table__title {
	font-size: 14px;
	font-weight: 500;
	color: var(--pcgh-text);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 340px
}

.pcgh-user-table__title:hover {
	color: var(--pcgh-primary)
}

.pcgh-user-table__tags {
	display: flex;
	gap: 6px;
	flex-wrap: wrap
}

.pcgh-user-table__tags span {
	font-size: 10px;
	padding: 1px 6px;
	background: var(--pcgh-surface-2);
	color: var(--pcgh-text-3);
	border-radius: 3px
}

.pcgh-user-table__meta small {
	color: var(--pcgh-text-3);
	font-size: 11px
}

.pcgh-user-table__ops {
	display: inline-flex;
	gap: 4px
}

.pcgh-user-table__empty {
	padding: 60px 20px;
	text-align: center;
	color: var(--pcgh-text-3)
}

.pcgh-user-table__empty i[data-lucide] {
	margin-bottom: 12px;
	opacity: .5
}

.pcgh-user-table__empty p {
	margin: 0
}

.pcgh-user-table__empty a {
	color: var(--pcgh-primary)
}

.pcgh-status {
	display: inline-flex;
	align-items: center;
	height: 22px;
	padding: 0 10px;
	border-radius: 11px;
	font-size: 11px;
	font-weight: 500
}

.pcgh-status--public {
	background: rgba(34,197,94,.15);
	color: #4ade80
}

.pcgh-status--draft {
	background: rgba(245,158,11,.15);
	color: #fbbf24
}

.pcgh-status--pending {
	background: rgba(59,130,246,.15);
	color: #93c5fd
}

.pcgh-status--private {
	background: rgba(255,255,255,.08);
	color: var(--pcgh-text-3)
}

/* user pager */
.pcgh-user-pager {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 18px 0;
	color: var(--pcgh-text-3);
	font-size: 13px;
	flex-wrap: wrap
}

.pcgh-user-pager .page-numbers {
	min-width: 30px;
	height: 30px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0 8px;
	border-radius: 6px;
	background: var(--pcgh-surface);
	border: 1px solid var(--pcgh-border);
	color: var(--pcgh-text-2);
	font-size: 12px
}

.pcgh-user-pager .page-numbers.current {
	background: var(--pcgh-primary);
	color: #fff;
	border-color: var(--pcgh-primary)
}

.pcgh-user-pager .page-numbers:hover {
	color: var(--pcgh-primary);
	border-color: var(--pcgh-primary)
}

.pcgh-user-pager i[data-lucide] {
	width: 14px;
	height: 14px
}

.pcgh-msg-list {
	list-style: none;
	margin: 0;
	padding: 0
}

.pcgh-msg-list li {
	display: flex;
	gap: 10px;
	padding: 14px 0;
	border-bottom: 1px dashed rgba(255,255,255,.06)
}

.pcgh-msg-list li:last-child {
	border-bottom: 0
}

.pcgh-msg-list li i[data-lucide] {
	color: var(--pcgh-primary);
	flex-shrink: 0;
	margin-top: 2px
}

.pcgh-msg-list li p {
	margin: 4px 0;
	color: var(--pcgh-text-2);
	font-size: 13px
}

.pcgh-msg-list li small {
	color: var(--pcgh-text-3);
	font-size: 11px
}

.pcgh-msg-list li a {
	color: var(--pcgh-primary)
}

/* ===== Responsive ===== */
@media (max-width: 1100px) {
	.pcgh-layout {
		grid-template-columns: 1fr
	}

	.pcgh-single__layout {
		grid-template-columns: 1fr
	}

	.pcgh-hero__inner {
		grid-template-columns: 280px 1fr
	}

	.pcgh-hero__safe {
		grid-column: 1 / -1
	}

	.pcgh-game-grid {
		grid-template-columns: repeat(4,1fr)
	}

	.pcgh-special-grid {
		grid-template-columns: repeat(3,1fr)
	}

	.pcgh-specials-grid {
		grid-template-columns: repeat(3,minmax(0,1fr))
	}

	.pcgh-special-detail-grid {
		grid-template-columns: repeat(4,minmax(0,1fr))
	}

	.pcgh-home-specials-section .pcgh-container {
		padding: 0 16px
	}

	.pcgh-entries {
		grid-template-columns: repeat(3,1fr)
	}

	.pcgh-nav {
		display: none
	}

	.pcgh-double {
		grid-template-columns: 1fr
	}

	.pcgh-user__hero-body {
		grid-template-columns: 1fr
	}

	.pcgh-user__stats {
		grid-template-columns: repeat(4,1fr)
	}

	.pcgh-stats-bar {
		grid-template-columns: repeat(2,1fr)
	}

	.pcgh-profile-form__layout {
		grid-template-columns: 1fr
	}

	.pcgh-libgrid {
		grid-template-columns: repeat(var(--pcgh-cat-columns,4),1fr)
	}

	.pcgh-ghero__body {
		grid-template-columns: 260px minmax(0,1fr);
		gap: 20px
	}

	.pcgh-ghero__safety {
		max-width: 240px
	}

	.pcgh-ghero__title {
		font-size: 28px
	}
}

@media (max-width: 720px) {
	.pcgh-header__inner {
		height: 48px;
		padding: 0;
		flex-wrap: nowrap
	}

	.pcgh-banner {
		height: 300px
	}

	.pcgh-banner__content {
		padding: 24px
	}

	.pcgh-banner__title {
		font-size: 28px
	}

	.pcgh-game-grid {
		grid-template-columns: repeat(3,1fr)
	}

	.pcgh-special-grid {
		grid-template-columns: repeat(2,1fr)
	}

	.pcgh-specials-page {
		padding: 24px 0 34px
	}

	.pcgh-specials-head h1 {
		font-size: 26px
	}

	.pcgh-specials-grid {
		grid-template-columns: repeat(2,minmax(0,1fr));
		gap: 12px
	}

	.pcgh-specials-card {
		min-height: 190px;
		padding: 15px
	}

	.pcgh-specials-card__body strong {
		font-size: 18px
	}

	.pcgh-specials-card__body em {
		font-size: 13px
	}

	.pcgh-special-detail-page .pcgh-container {
		padding: 16px
	}

	.pcgh-special-detail-head h1 {
		font-size: 25px
	}

	.pcgh-special-detail-grid {
		grid-template-columns: repeat(2,minmax(0,1fr));
		gap: 12px
	}

	.pcgh-special-game-card__body {
		min-height: 118px
	}

	.pcgh-home-specials .pcgh-special {
		height: 118px
	}

	.pcgh-entries {
		grid-template-columns: repeat(2,1fr)
	}

	.pcgh-news-grid {
		grid-template-columns: 1fr
	}

	.pcgh-game-hero {
		grid-template-columns: 1fr
	}

	.pcgh-libtabs {
		display: flex;
		overflow-x: auto;
		overflow-y: hidden;
		padding: 10px 12px 10px 18px;
		gap: 14px;
		scroll-snap-type: x mandatory;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
		scroll-padding-left: 18px
	}

	.pcgh-libtabs::-webkit-scrollbar {
		display: none
	}

	.pcgh-libtab {
		flex: 0 0 86px;
		aspect-ratio: 1/1;
		padding: 8px 6px;
		scroll-snap-align: start
	}

	.pcgh-libtab__icon {
		width: 30px;
		height: 30px;
		flex: 0 0 30px;
		font-size: 19px;
		margin-bottom: 0
	}

	.pcgh-libtab strong {
		font-size: 12px
	}

	.pcgh-libtab small {
		font-size: 10px
	}

	.pcgh-libgrid {
		grid-template-columns: repeat(2,1fr);
		gap: 12px
	}

	.pcgh-libcard__title {
		font-size: 13px
	}

	.pcgh-libtoolbar {
		flex-direction: column;
		align-items: stretch;
		gap: 10px
	}

	.pcgh-libsort {
		gap: 14px;
		overflow-x: auto;
		white-space: nowrap;
		padding-bottom: 4px
	}

	.pcgh-libsort::-webkit-scrollbar {
		display: none
	}

	.pcgh-libtoolbar__right {
		justify-content: space-between
	}

	.pcgh-libhero__inner {
		padding: 24px 18px;
		min-height: auto
	}

	.pcgh-libhero__text {
		max-width: 100%
	}

	.pcgh-libhero__text h1 {
		font-size: 22px
	}

	.pcgh-libhero__text p {
		font-size: 13px
	}

	.pcgh-ghero__inner {
		padding: 14px
	}

	.pcgh-ghero__body {
		grid-template-columns: 1fr;
		gap: 14px
	}

	.pcgh-ghero__cover {
		aspect-ratio: 4/2.5;
		max-height: 280px;
		width: auto
	}

	.pcgh-ghero__title {
		font-size: 22px
	}

	.pcgh-ghero__stats {
		gap: 12px 20px
	}

	.pcgh-ghero__stat strong {
		font-size: 14px
	}

	.pcgh-ghero__score {
		font-size: 30px!important
	}

	.pcgh-ghero__actions {
		flex-wrap: wrap
	}

	.pcgh-ghero__dl-main,.pcgh-ghero__dl-fav {
		flex: 1 1 auto;
		padding: 11px 16px;
		font-size: 13px
	}
	/* 移动端 safety 卡改为静态块（不浮动） */
	.pcgh-ghero__safety {
		position: static;
		max-width: none;
		margin-top: 14px
	}

	.pcgh-gcarousel__main {
		aspect-ratio: 16/9
	}

	.pcgh-gcarousel__nav {
		width: 32px;
		height: 32px
	}

	.pcgh-gcarousel__thumb {
		flex: 0 0 calc((100% - 24px) / 4);
		max-width: calc((100% - 24px) / 4)
	}

	.pcgh-lightbox__close {
		top: 14px;
		right: 14px;
		width: 36px;
		height: 36px
	}

	.pcgh-lightbox__nav {
		width: 36px;
		height: 36px
	}

	.pcgh-lightbox__nav--prev {
		left: 10px
	}

	.pcgh-lightbox__nav--next {
		right: 10px
	}

	.pcgh-user__stats {
		grid-template-columns: repeat(2,1fr)
	}

	.pcgh-user__hero-head h1 {
		font-size: 22px
	}

	.pcgh-user__hero-head p {
		margin-bottom: 20px
	}

	.pcgh-user__avatar img,.pcgh-user__avatar-img {
		width: 72px;
		height: 72px
	}

	.pcgh-user__info h2 {
		font-size: 18px
	}

	.pcgh-stat-card__num {
		font-size: 24px
	}
}

/* ===== 面包屑导航 ===== */
.pcgh-breadcrumb {
	margin: 14px 0 18px;
	font-size: 13px;
	color: var(--pcgh-text-3)
}

.pcgh-breadcrumb ol {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 6px
}

.pcgh-breadcrumb li {
	display: inline-flex;
	align-items: center;
	gap: 6px
}

.pcgh-breadcrumb li::after {
	content: '?';
	color: var(--pcgh-text-3);
	opacity: .5
}

.pcgh-breadcrumb li:last-child::after {
	content: none
}

.pcgh-breadcrumb a {
	color: var(--pcgh-text-2);
	transition: .15s
}

.pcgh-breadcrumb a:hover {
	color: var(--pcgh-primary)
}

.pcgh-breadcrumb [aria-current=page] {
	color: var(--pcgh-text)
}

/* ===== 评论 meta（UA / IP 归属） ===== */
.pcgh-cmt-meta {
	margin-top: 6px;
	font-size: 11px;
	color: var(--pcgh-text-3);
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center
}

.pcgh-cmt-meta .pcgh-cmt-ua,
.pcgh-cmt-meta .pcgh-cmt-ip {
	display: inline-flex;
	align-items: center;
	gap: 3px;
	padding: 2px 8px;
	background: var(--pcgh-surface-2);
	border-radius: 10px
}

/* ===== 锁定卡片（[hide]/[reply]/[vip]/[pay]） ===== */
.pcgh-locked {
	--pcgh-locked-c: #3b82f6;
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 18px 20px;
	margin: 16px 0;
	background: linear-gradient(135deg, color-mix(in srgb, var(--pcgh-locked-c) 12%, transparent), color-mix(in srgb, var(--pcgh-locked-c) 4%, transparent));
	border: 1px solid color-mix(in srgb, var(--pcgh-locked-c) 30%, transparent);
	border-left: 3px solid var(--pcgh-locked-c);
	border-radius: 10px
}

.pcgh-locked--login {
	--pcgh-locked-c: #3b82f6
}

.pcgh-locked--reply {
	--pcgh-locked-c: #10b981
}

.pcgh-locked--pay {
	--pcgh-locked-c: #f59e0b
}

.pcgh-locked--vip {
	--pcgh-locked-c: #fbbf24
}

.pcgh-locked__icon {
	flex-shrink: 0;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: var(--pcgh-locked-c);
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center
}

.pcgh-locked__icon i[data-lucide] {
	width: 20px;
	height: 20px
}

.pcgh-locked__text {
	flex: 1;
	min-width: 0
}

.pcgh-locked__text strong {
	display: block;
	color: var(--pcgh-text);
	font-size: 14px;
	margin-bottom: 2px
}

.pcgh-locked__text p {
	margin: 0;
	color: var(--pcgh-text-2);
	font-size: 12px;
	line-height: 1.6
}

.pcgh-locked .pcgh-btn {
	flex-shrink: 0;
	white-space: nowrap
}

.pcgh-locked--full {
	padding: 36px 24px;
	flex-direction: column;
	text-align: center;
	margin: 24px 0
}

.pcgh-locked--full .pcgh-locked__icon {
	width: 56px;
	height: 56px
}

.pcgh-locked--full .pcgh-locked__icon i[data-lucide] {
	width: 28px;
	height: 28px
}

.pcgh-locked--full .pcgh-locked__text strong {
	font-size: 16px
}

.pcgh-locked--full .pcgh-locked__text p {
	font-size: 13px
}

/* 付费文章预览：渐隐衔接 */
.pcgh-pay-excerpt {
	position: relative;
	max-height: 280px;
	overflow: hidden;
	color: var(--pcgh-text-2);
	font-size: 14px;
	line-height: 1.8;
	mask-image: linear-gradient(to bottom, #000 60%, transparent 100%);
	-webkit-mask-image: linear-gradient(to bottom, #000 60%, transparent 100%)
}

.pcgh-pay-excerpt p {
	margin: 0
}

@media (max-width:520px) {
	.pcgh-specials-head {
		margin-bottom: 14px
	}

	.pcgh-specials-head h1 {
		font-size: 24px
	}

	.pcgh-specials-grid {
		grid-template-columns: repeat(2,minmax(0,1fr));
		gap: 10px
	}

	.pcgh-specials-card {
		min-height: 150px;
		padding: 12px;
		border-radius: 10px
	}

	.pcgh-specials-card__body {
		gap: 5px;
		margin-bottom: 10px
	}

	.pcgh-specials-card__body strong {
		font-size: 15px
	}

	.pcgh-specials-card__body em {
		display: -webkit-box;
		overflow: hidden;
		font-size: 11px;
		line-height: 1.4;
		line-clamp: 2;
		-webkit-line-clamp: 2;
		-webkit-box-orient: vertical
	}

	.pcgh-specials-card__body small {
		font-size: 11px
	}

	.pcgh-specials-card__btn {
		padding: 6px 8px;
		font-size: 11px
	}

	.pcgh-special-detail-page {
		padding: 14px 0 30px
	}

	.pcgh-special-detail-head {
		margin-bottom: 18px
	}

	.pcgh-special-detail-head h1 {
		font-size: 22px
	}

	.pcgh-special-detail-head p {
		font-size: 13px
	}

	.pcgh-special-detail-grid {
		grid-template-columns: 1fr
	}

	.pcgh-locked {
		flex-direction: column;
		text-align: center;
		padding: 16px
	}

	.pcgh-locked .pcgh-btn {
		width: 100%;
		justify-content: center
	}
}

/* ===== 全站公告条 ===== */
.pcgh-notice {
	--pcgh-notice-c: #3b82f6;
	background: linear-gradient(90deg, var(--pcgh-notice-c), color-mix(in srgb, var(--pcgh-notice-c) 75%, #000 25%));
	color: #fff;
	font-size: 13px
}

.pcgh-notice--topbar {
	position: sticky;
	top: 0;
	z-index: 60
}

.pcgh-notice__inner {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 8px 0;
	min-height: 36px
}

.pcgh-notice__icon {
	flex-shrink: 0;
	width: 16px;
	height: 16px;
	color: #fff
}

.pcgh-notice__track {
	flex: 1;
	min-width: 0;
	overflow: hidden
}

.pcgh-notice__rail {
	display: flex;
	gap: 36px;
	white-space: nowrap;
	animation: pcghNoticeMarquee 30s linear infinite
}

.pcgh-notice__item {
	display: inline-flex;
	align-items: center;
	gap: 6px
}

.pcgh-notice__item a {
	color: #fff;
	text-decoration: underline;
	text-underline-offset: 2px
}

.pcgh-notice__item a:hover {
	opacity: .85
}

.pcgh-notice__close {
	flex-shrink: 0;
	width: 24px;
	height: 24px;
	border: 0;
	background: rgba(255,255,255,.18);
	border-radius: 50%;
	color: #fff;
	font-size: 16px;
	line-height: 1;
	cursor: pointer;
	transition: .15s
}

.pcgh-notice__close:hover {
	background: rgba(255,255,255,.32);
	transform: scale(1.08)
}

@keyframes pcghNoticeMarquee {
	0% {
		transform: translateX(0)
	}

	100% {
		transform: translateX(-50%)
	}
}

@media (max-width:520px) {
	.pcgh-notice__rail {
		animation-duration: 18s
	}
}

/* ===== 等级徽章 ===== */
.pcgh-level-badge {
	display: inline-flex;
	align-items: center;
	gap: 3px;
	padding: 1px 7px;
	margin-left: 3px;
	background: color-mix(in srgb, var(--pcgh-lv-c) 16%, transparent);
	border: 1px solid color-mix(in srgb, var(--pcgh-lv-c) 50%, transparent);
	border-radius: 10px;
	color: var(--pcgh-lv-c);
	font-size: 11px;
	font-weight: 600;
	line-height: 1.4;
	vertical-align: middle
}

.pcgh-level-badge i[data-lucide],
.pcgh-level-badge svg {
	width: 11px;
	height: 11px;
	color: var(--pcgh-lv-c);
	stroke: var(--pcgh-lv-c)
}

.pcgh-level-badge span {
	color: var(--pcgh-lv-c)
}

/* ===== 页脚备案链接 ===== */
.pcgh-footer__bottom a {
	color: inherit;
	opacity: .85
}

.pcgh-footer__bottom a:hover {
	opacity: 1;
	color: var(--pcgh-primary)
}

.pcgh-beian-ico {
	display: inline-block;
	width: 12px;
	height: 12px
}

/* ============================================================
 * VIP 整套样式
 * ============================================================ */

/* VIP 角标（评论旁、用户中心 hero） */
.pcgh-vip-badge {
	display: inline-flex;
	align-items: center;
	gap: 3px;
	padding: 1px 7px;
	margin-left: 6px;
	background: linear-gradient(135deg, color-mix(in srgb, var(--pcgh-vip-c) 28%, transparent), color-mix(in srgb, var(--pcgh-vip-c) 12%, transparent));
	border: 1px solid color-mix(in srgb, var(--pcgh-vip-c) 60%, transparent);
	border-radius: 10px;
	color: var(--pcgh-vip-c);
	font-size: 11px;
	font-weight: 700;
	line-height: 1.4;
	vertical-align: middle
}

.pcgh-vip-badge i[data-lucide],
.pcgh-vip-badge svg {
	width: 12px;
	height: 12px;
	color: var(--pcgh-vip-c);
	stroke: var(--pcgh-vip-c)
}

.pcgh-vip-badge span {
	color: var(--pcgh-vip-c)
}

/* 头像右下角徽章（顶栏） */
.pcgh-avatar--has-badge {
	position: relative;
	overflow: visible
}

.pcgh-avatar--has-badge .pcgh-avatar__img,.pcgh-avatar--has-badge img {
	border-radius: 50%
}

.pcgh-avatar__badge {
	position: absolute;
	right: -3px;
	bottom: -3px;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 10px;
	font-weight: 700;
	line-height: 1;
	border: 2px solid var(--pcgh-bg);
	box-shadow: 0 2px 6px rgba(0,0,0,.3)
}

.pcgh-avatar__badge--vip {
	background: var(--pcgh-vip-c);
	color: #fff
}

.pcgh-avatar__badge--vip i[data-lucide] {
	width: 10px;
	height: 10px
}

.pcgh-avatar__badge--lv {
	background: var(--pcgh-lv-c);
	color: #fff;
	font-size: 9px
}

/* 用户中心 VIP 状态条（dashboard 顶部） */
.pcgh-uc-vip-strip {
	--pcgh-vip-c: #94a3b8;
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 14px 18px;
	background: linear-gradient(135deg, color-mix(in srgb, var(--pcgh-vip-c) 14%, transparent), color-mix(in srgb, var(--pcgh-vip-c) 6%, transparent));
	border-radius: 12px
}

.pcgh-uc-vip-strip__icon {
	flex-shrink: 0;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: var(--pcgh-vip-c);
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center
}

.pcgh-uc-vip-strip__icon i[data-lucide] {
	width: 28px;
	height: 28px
}

.pcgh-uc-vip-strip__text {
	flex: 1;
	min-width: 0
}

.pcgh-uc-vip-strip__text strong {
	display: block;
	color: var(--pcgh-text);
	font-size: 14px
}

.pcgh-uc-vip-strip__text span {
	display: block;
	color: var(--pcgh-text-2);
	font-size: 12px;
	margin-top: 2px
}

.pcgh-uc-vip-strip .pcgh-btn {
	flex-shrink: 0;
	white-space: nowrap
}

/* /vip/ 升级页 */
.pcgh-vip-page {
	padding: 24px 0 60px
}

.pcgh-vip-hero {
	text-align: center;
	padding: 40px 20px 30px
}

.pcgh-vip-hero__crown {
	display: inline-block;
	width: 60px;
	height: 60px;
	color: #fbbf24;
	margin-bottom: 14px;
	filter: drop-shadow(0 4px 12px rgba(251,191,36,.5))
}

.pcgh-vip-hero h1 {
	margin: 0 0 10px;
	font-size: 32px;
	font-weight: 700;
	background: linear-gradient(135deg,#fbbf24 0%,#f59e0b 50%,#fb7185 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent
}

.pcgh-vip-hero__sub {
	margin: 0;
	color: var(--pcgh-text-2);
	font-size: 14px
}

.pcgh-vip-current {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 18px;
	padding: 10px 18px;
	background: var(--pcgh-surface-2);
	border: 1px solid var(--pcgh-border);
	border-radius: 999px;
	font-size: 13px;
	color: var(--pcgh-text)
}

.pcgh-vip-current i[data-lucide] {
	width: 24px;
	height: 24px;
	flex-shrink: 0
}

.pcgh-vip-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit,minmax(240px,1fr));
	gap: 18px;
	margin: 30px 0 40px
}

.pcgh-vip-card {
	--pcgh-vip-c: #fbbf24;
	display: flex;
	flex-direction: column;
	align-items: stretch;
	padding: 26px 20px 22px;
	background: var(--pcgh-surface);
	border: 1px solid var(--pcgh-border);
	border-radius: 16px;
	transition: .25s;
	position: relative;
	overflow: hidden
}

.pcgh-vip-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: var(--pcgh-vip-c)
}

.pcgh-vip-card:hover {
	transform: translateY(-4px);
	border-color: var(--pcgh-vip-c);
	box-shadow: 0 14px 40px color-mix(in srgb, var(--pcgh-vip-c) 25%, transparent)
}

.pcgh-vip-card.is-current {
	background: linear-gradient(135deg, color-mix(in srgb, var(--pcgh-vip-c) 14%, var(--pcgh-surface)), var(--pcgh-surface));
	border-color: var(--pcgh-vip-c)
}

.pcgh-vip-card.is-current::after {
	content: '当前等级';
	position: absolute;
	top: 14px;
	right: 14px;
	padding: 2px 10px;
	background: var(--pcgh-vip-c);
	color: #fff;
	border-radius: 999px;
	font-size: 11px;
	font-weight: 700
}

.pcgh-vip-card__head {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 14px
}

.pcgh-vip-card__head i[data-lucide] {
	width: 36px;
	height: 36px;
	color: var(--pcgh-vip-c)
}

.pcgh-vip-card__head h3 {
	margin: 0;
	font-size: 18px;
	font-weight: 700;
	color: var(--pcgh-text)
}

.pcgh-vip-card__prices {
	display: flex;
	align-items: baseline;
	flex-wrap: wrap;
	gap: 6px 10px;
	margin-bottom: 4px
}

.pcgh-vip-card__price {
	display: flex;
	align-items: baseline;
	gap: 4px;
	color: var(--pcgh-vip-c)
}

.pcgh-vip-card__price small {
	font-size: 13px;
	font-weight: 500;
	opacity: .85
}

.pcgh-vip-card__price strong {
	font-size: 36px;
	font-weight: 800;
	line-height: 1
}

.pcgh-vip-card__price--cny {
	color: #10b981
}

.pcgh-vip-card__price--cny small {
	font-size: 18px;
	font-weight: 700
}

.pcgh-vip-card__or {
	color: var(--pcgh-text-3);
	font-size: 12px;
	align-self: center
}

.pcgh-vip-card__dur {
	color: var(--pcgh-text-3);
	font-size: 12px;
	margin-bottom: 14px
}

.pcgh-vip-card__perks {
	list-style: none;
	margin: 0 0 18px;
	padding: 0;
	flex: 1
}

.pcgh-vip-card__perks li {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	padding: 6px 0;
	color: var(--pcgh-text-2);
	font-size: 13px;
	line-height: 1.5;
	border-bottom: 1px dashed var(--pcgh-border)
}

.pcgh-vip-card__perks li:last-child {
	border-bottom: 0
}

.pcgh-vip-card__perks i[data-lucide] {
	width: 22px;
	height: 22px;
	color: var(--pcgh-vip-c);
	flex-shrink: 0;
	margin-top: 2px
}

/* 操作按钮区：多支付方式纵向堆叠 */
.pcgh-vip-card__actions {
	display: flex;
	flex-direction: column;
	gap: 6px
}

.pcgh-vip-card__actions .pcgh-btn {
	width: 100%;
	justify-content: center;
	border: 0
}

.pcgh-vip-btn--points {
	background: var(--pcgh-primary);
	color: #fff
}

.pcgh-vip-btn--points:hover {
	filter: brightness(1.1);
	box-shadow: 0 6px 14px -4px rgba(124,58,237,.5)
}

.pcgh-vip-btn--alipay {
	background: #1677ff;
	color: #fff
}

.pcgh-vip-btn--alipay:hover {
	background: #0e63db;
	box-shadow: 0 6px 14px -4px rgba(22,119,255,.5)
}

.pcgh-vip-btn--wechat {
	background: #07c160;
	color: #fff
}

.pcgh-vip-btn--wechat:hover {
	background: #06ad55;
	box-shadow: 0 6px 14px -4px rgba(7,193,96,.5)
}

/* VIP 升级页 FAQ */
.pcgh-vip-faq {
	max-width: 760px;
	margin: 30px auto 0
}

.pcgh-vip-faq h2 {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 18px;
	margin: 0 0 16px;
	color: var(--pcgh-text)
}

.pcgh-vip-faq h2 i[data-lucide] {
	width: 28px;
	height: 28px;
	color: var(--pcgh-primary)
}

.pcgh-vip-faq details {
	padding: 14px 16px;
	background: var(--pcgh-surface);
	border: 1px solid var(--pcgh-border);
	border-radius: 10px;
	margin-bottom: 10px
}

.pcgh-vip-faq summary {
	cursor: pointer;
	font-weight: 600;
	color: var(--pcgh-text);
	list-style: none
}

.pcgh-vip-faq summary::-webkit-details-marker {
	display: none
}

.pcgh-vip-faq summary::before {
	content: '+';
	display: inline-block;
	width: 18px;
	color: var(--pcgh-primary);
	font-weight: 700
}

.pcgh-vip-faq details[open] summary::before {
	content: '?'
}

.pcgh-vip-faq p {
	margin: 10px 0 0 18px;
	color: var(--pcgh-text-2);
	font-size: 13px
}

.pcgh-vip-new {
	min-height: calc(100vh - 60px);
	color: var(--pcgh-text)
}
.pcgh-vip-new-hero {
	position: relative;
	padding: 58px 0 46px;
	background-color: transparent;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	overflow: hidden
}
.pcgh-vip-new-hero:before {
	content: "";
	position: absolute;
	inset: 0;
	display: block;
	background:
		linear-gradient(180deg,rgba(5,9,20,.58) 0%,rgba(5,9,20,.52) 58%,rgba(5,9,20,.18) 86%,rgba(5,9,20,0) 100%),
		linear-gradient(90deg,rgba(5,9,20,.38),rgba(5,9,20,.12),rgba(5,9,20,.38))
}
.pcgh-vip-new-hero:after {
	content: "";
	position: absolute;
	left: -12%;
	right: -12%;
	bottom: -96px;
	height: 190px;
	background:
		radial-gradient(ellipse at center,rgba(139,92,246,.22),rgba(5,9,20,.42) 45%,rgba(5,9,20,0) 76%),
		linear-gradient(180deg,rgba(5,9,20,0),var(--pcgh-bg));
	filter: blur(42px);
	pointer-events: none
}
.pcgh-vip-new-hero__inner {
	position: relative;
	z-index: 2;
	max-width: 780px;
	margin: 0 auto;
	text-align: center
}
.pcgh-vip-new-hero__crown {
	width: 38px;
	height: 38px;
	margin: 0 auto 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fbbf24;
	filter: drop-shadow(0 0 18px rgba(251,191,36,.45))
}
.pcgh-vip-new-hero__crown i[data-lucide] {
	width: 34px;
	height: 34px;
	fill: currentColor
}
.pcgh-vip-new-hero h1 {
	font-size: clamp(32px,4.4vw,48px);
	line-height: 1.18;
	color: var(--pcgh-text);
	background: linear-gradient(90deg,#fff,#c4b5fd,#a78bfa);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent
}
.pcgh-vip-new-hero__sub {
	margin: 14px 0 0;
	color: #c9c9c9;
	font-size: 16px
}
.pcgh-vip-new-hero__sub.is-error {
	color: #fca5a5
}
.pcgh-vip-new-hero__badges {
	margin-top: 24px;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 12px
}
.pcgh-vip-new-hero__badges span,
.pcgh-vip-new-current {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 8px 12px;
	border-radius: 999px;
	background: var(--pcgh-surface);
	border: 1px solid var(--pcgh-border);
	color: var(--pcgh-text-2)
}
.pcgh-vip-new-hero__badges i[data-lucide] {
	color: #8b5cf6
}
.pcgh-vip-new-hero__badges i[data-lucide],
.pcgh-vip-new-current i[data-lucide] {
	width: 28px;
	height: 28px;
	flex-shrink: 0
}
.pcgh-vip-new-current {
	margin-top: 18px
}
.pcgh-vip-new__body {
	padding-top: 26px;
	padding-bottom: 54px
}
.pcgh-vip-new .pcgh-container {
	max-width: var(--pcgh-container-w);
	width: 100%
}
.pcgh-vip-new-section {
	margin-bottom: 30px
}
.pcgh-vip-new-head {
	margin-bottom: 18px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px
}
.pcgh-vip-new-head h2 {
	color: var(--pcgh-text);
	font-size: 22px
}
.pcgh-vip-new-head p {
	margin: 4px 0 0;
	color: var(--pcgh-text-3)
}
.pcgh-vip-new-head > a {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 14px;
	border-radius: 8px;
	color: var(--pcgh-primary);
	border: 1px solid var(--pcgh-border);
	background: var(--pcgh-surface)
}
.pcgh-vip-new-head > a i[data-lucide] {
	width: 26px;
	height: 26px;
	flex-shrink: 0
}
.pcgh-vip-new-plans {
	display: grid;
	grid-template-columns: repeat(4,minmax(0,1fr));
	gap: 18px
}
.pcgh-vip-new-plan {
	--pcgh-vip-c: #8b5cf6;
	position: relative;
	min-height: 330px;
	padding: 28px 24px 22px;
	display: flex;
	flex-direction: column;
	border-radius: 14px;
	background: var(--pcgh-surface);
	border: 1px solid var(--pcgh-border);
	box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
	overflow: hidden
}
.pcgh-vip-new-plan:before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 50% 0,color-mix(in srgb,var(--pcgh-vip-c),transparent 82%),transparent 34%);
	pointer-events: none
}
.pcgh-vip-new-plan:hover,
.pcgh-vip-new-plan.is-current {
	border-color: color-mix(in srgb,var(--pcgh-vip-c),#fff 12%);
	box-shadow: 0 0 0 1px color-mix(in srgb,var(--pcgh-vip-c),transparent 70%),0 22px 50px rgba(0,0,0,.28)
}
.pcgh-vip-new-plan.is-forever {
	background: linear-gradient(180deg,rgba(251,191,36,.08),var(--pcgh-surface))
}
.pcgh-vip-new-plan__tag {
	position: absolute;
	top: 0;
	right: 18px;
	padding: 6px 12px;
	border-radius: 0 0 8px 8px;
	background: linear-gradient(135deg,#7c3aed,#2563eb);
	color: #fff;
	font-size: 12px;
	font-weight: 800
}
.pcgh-vip-new-plan__top {
	position: relative;
	display: flex;
	align-items: center;
	gap: 8px
}
.pcgh-vip-new-plan__top i[data-lucide] {
	color: var(--pcgh-vip-c);
	width: 42px;
	height: 42px;
	flex-shrink: 0;
	filter: drop-shadow(0 0 12px color-mix(in srgb,var(--pcgh-vip-c),transparent 55%))
}
.pcgh-vip-new-plan__top h3 {
	color: var(--pcgh-text);
	font-size: 18px
}
.pcgh-vip-new-plan__price {
	position: relative;
	margin-top: 18px;
	display: flex;
	align-items: baseline;
	gap: 5px;
	color: var(--pcgh-text)
}
.pcgh-vip-new-plan__price small {
	font-size: 20px
}
.pcgh-vip-new-plan__price strong {
	font-size: 38px;
	line-height: 1;
	font-weight: 900
}
.pcgh-vip-new-plan__price span,
.pcgh-vip-new-plan__alt {
	color: var(--pcgh-text-3)
}
.pcgh-vip-new-plan__alt {
	margin: 6px 0 0;
	font-size: 12px
}
.pcgh-vip-new-plan__actions {
	position: relative;
	margin-top: 20px;
	display: flex;
	flex-direction: column;
	gap: 8px
}
.pcgh-vip-new-buy {
	width: 100%;
	height: 42px;
	border-radius: 8px;
	background: linear-gradient(135deg,#7c3aed,var(--pcgh-primary));
	color: #fff;
	font-weight: 800;
	box-shadow: 0 12px 24px rgba(var(--pcgh-primary-rgb),.26)
}
.pcgh-vip-new-buy--ghost {
	background: var(--pcgh-surface-2);
	border: 1px solid rgba(var(--pcgh-primary-rgb),.45);
	color: var(--pcgh-primary)
}
.pcgh-vip-new-buy:disabled {
	opacity: .55;
	cursor: not-allowed
}
.pcgh-vip-new-plan__perks {
	position: relative;
	margin-top: 18px;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
	color: var(--pcgh-text-2);
	font-size: 13px
}
.pcgh-vip-new-plan__perks li {
	display: flex;
	align-items: flex-start;
	gap: 7px
}
.pcgh-vip-new-plan__perks i[data-lucide] {
	margin-top: 0;
	width: 24px;
	height: 24px;
	color: var(--pcgh-vip-c);
	flex-shrink: 0
}
.pcgh-vip-new-privileges {
	display: grid;
	grid-template-columns: repeat(6,minmax(0,1fr));
	gap: 12px
}
.pcgh-vip-new-privilege {
	min-height: 118px;
	padding: 20px 14px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	border-radius: 10px;
	background: var(--pcgh-surface);
	border: 1px solid var(--pcgh-border)
}
.pcgh-vip-new-privilege i[data-lucide] {
	width: 68px;
	height: 68px;
	color: #8b5cf6;
	margin-bottom: 12px;
	filter: drop-shadow(0 0 12px rgba(139,92,246,.35))
}
.pcgh-vip-new-privilege strong {
	color: var(--pcgh-text)
}
.pcgh-vip-new-privilege span {
	margin-top: 4px;
	color: var(--pcgh-text-3);
	font-size: 12px
}
.pcgh-modal-open {
	overflow: hidden
}
.pcgh-vip-pay-modal {
	--pcgh-vip-pay-c: var(--pcgh-primary);
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 24px
}
.pcgh-vip-pay-modal.is-open {
	display: flex
}
.pcgh-vip-pay-modal__mask {
	position: absolute;
	inset: 0;
	background: rgba(2,6,23,.78);
	backdrop-filter: blur(10px)
}
.pcgh-vip-pay-modal__panel {
	position: relative;
	width: min(960px,calc(100vw - 32px));
	max-height: calc(100vh - 48px);
	overflow: auto;
	padding: 28px;
	border-radius: 14px;
	background: linear-gradient(180deg,rgba(15,23,42,.98),rgba(8,13,28,.98));
	border: 1px solid rgba(148,163,184,.22);
	box-shadow: 0 34px 110px rgba(0,0,0,.62),inset 0 1px 0 rgba(255,255,255,.05)
}
.pcgh-vip-pay-modal__close {
	position: absolute;
	right: 18px;
	top: 18px;
	width: 34px;
	height: 34px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 0;
	border-radius: 10px;
	background: transparent;
	color: var(--pcgh-text-3)
}
.pcgh-vip-pay-modal__close i[data-lucide] {
	width: 28px;
	height: 28px
}
.pcgh-vip-pay-modal__close:hover {
	background: rgba(255,255,255,.06);
	color: #fff
}
.pcgh-vip-pay-modal__head {
	text-align: center;
	margin-bottom: 22px
}
.pcgh-vip-pay-modal__head h2 {
	margin: 0;
	color: #fff;
	font-size: 28px
}
.pcgh-vip-pay-modal__head p {
	margin: 8px 0 0;
	color: var(--pcgh-text-3)
}
.pcgh-vip-pay-modal__grid {
	display: grid;
	grid-template-columns: 1fr 1.15fr;
	gap: 16px
}
.pcgh-vip-pay-modal__summary,
.pcgh-vip-pay-modal__perks {
	min-height: 138px
}
.pcgh-vip-pay-modal__summary,
.pcgh-vip-pay-modal__perks,
.pcgh-vip-pay-modal__methods,
.pcgh-vip-pay-modal__order {
	border-radius: 12px;
	background: rgba(15,23,42,.72);
	border: 1px solid rgba(148,163,184,.12)
}
.pcgh-vip-pay-modal__summary {
	min-height: 138px;
	padding: 24px;
	display: flex;
	align-items: center;
	gap: 22px
}
.pcgh-vip-pay-modal__icon {
	width: 104px;
	height: 104px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: radial-gradient(circle at center,color-mix(in srgb,var(--pcgh-vip-pay-c),transparent 24%),color-mix(in srgb,var(--pcgh-vip-pay-c),transparent 82%) 56%,rgba(255,255,255,.04));
	color: #fff;
	box-shadow: 0 0 32px color-mix(in srgb,var(--pcgh-vip-pay-c),transparent 38%)
}
.pcgh-vip-pay-modal__icon i[data-lucide] {
	width: 78px;
	height: 78px;
	fill: currentColor
}
.pcgh-vip-pay-modal__summary h3 {
	margin: 0 0 10px;
	color: #fff
}
.pcgh-vip-pay-modal__summary strong {
	display: flex;
	align-items: baseline;
	gap: 3px;
	color: #fff
}
.pcgh-vip-pay-modal__summary strong span {
	font-size: 18px
}
.pcgh-vip-pay-modal__summary strong em {
	font-style: normal;
	font-size: 34px;
	line-height: 1;
	font-weight: 900
}
.pcgh-vip-pay-modal__summary p {
	margin: 10px 0 0;
	color: var(--pcgh-text-3)
}
.pcgh-vip-pay-modal__perks {
	padding: 20px
}
.pcgh-vip-pay-modal__perks h3,
.pcgh-vip-pay-modal__methods h3,
.pcgh-vip-pay-modal__order h3 {
	margin: 0 0 16px;
	color: #fff;
	font-size: 16px
}
.pcgh-vip-pay-modal__perks > div {
	display: grid;
	grid-template-columns: repeat(3,minmax(0,1fr));
	gap: 16px 18px
}
.pcgh-vip-pay-modal__perks span {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	color: var(--pcgh-text-2);
	font-size: 13px
}
.pcgh-vip-pay-modal__perks span:before {
	content: "?";
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background: color-mix(in srgb,var(--pcgh-vip-pay-c),transparent 84%);
	color: var(--pcgh-vip-pay-c);
	flex-shrink: 0
}
.pcgh-vip-pay-modal__methods,
.pcgh-vip-pay-modal__order {
	padding: 20px
}
.pcgh-vip-pay-modal__methods > div {
	display: flex;
	flex-direction: column;
	gap: 10px
}
.pcgh-vip-pay-modal__methods button {
	width: 100%;
	min-height: 54px;
	padding: 0 12px;
	display: grid;
	grid-template-columns: 44px minmax(0,1fr) auto;
	align-items: center;
	gap: 12px;
	border-radius: 10px;
	background: rgba(15,23,42,.72);
	border: 1px solid rgba(148,163,184,.12);
	color: var(--pcgh-text-2);
	text-align: left
}
.pcgh-vip-pay-modal__method-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: rgba(255,255,255,.06);
	overflow: hidden;
	flex-shrink: 0
}
.pcgh-vip-pay-modal__method-icon img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block
}
.pcgh-vip-pay-modal__method-icon i[data-lucide] {
	width: 28px;
	height: 28px;
	color: var(--pcgh-vip-pay-c)
}
.pcgh-vip-pay-modal__method-text {
	display: flex;
	flex-direction: column;
	gap: 4px;
	min-width: 0
}
.pcgh-vip-pay-modal__methods button.is-active {
	background: color-mix(in srgb,var(--pcgh-vip-pay-c),transparent 88%);
	border-color: var(--pcgh-vip-pay-c);
	box-shadow: 0 0 0 1px color-mix(in srgb,var(--pcgh-vip-pay-c),transparent 60%)
}
.pcgh-vip-pay-modal__methods button strong {
	display: block;
	color: #fff
}
.pcgh-vip-pay-modal__methods button small {
	display: block;
	color: var(--pcgh-text-3);
	font-size: 12px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis
}
.pcgh-vip-pay-modal__methods button em {
	color: var(--pcgh-text-2);
	font-style: normal;
	font-weight: 800
}
.pcgh-vip-pay-modal__methods p {
	margin: 14px 0 0;
	display: flex;
	align-items: center;
	gap: 7px;
	color: var(--pcgh-text-3);
	font-size: 12px
}
.pcgh-vip-pay-modal__methods p i[data-lucide] {
	width: 24px;
	height: 24px;
	color: var(--pcgh-vip-pay-c);
	flex-shrink: 0
}
.pcgh-vip-pay-modal__order dl {
	margin: 0 0 18px;
	padding: 0
}
.pcgh-vip-pay-modal__order dl div {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	padding: 9px 0;
	color: var(--pcgh-text-3);
	border-bottom: 1px solid rgba(148,163,184,.08)
}
.pcgh-vip-pay-modal__order dt {
	font-weight: 400
}
.pcgh-vip-pay-modal__order dd {
	margin: 0;
	color: var(--pcgh-text-2)
}
.pcgh-vip-pay-modal__order .is-total span {
	color: var(--pcgh-vip-pay-c);
	font-size: 28px;
	font-weight: 900
}
.pcgh-vip-pay-modal__submit {
	width: 100%;
	height: 52px;
	border: 0;
	border-radius: 10px;
	background: linear-gradient(135deg,var(--pcgh-vip-pay-c),var(--pcgh-primary));
	color: #fff;
	font-weight: 900;
	box-shadow: 0 16px 30px color-mix(in srgb,var(--pcgh-vip-pay-c),transparent 72%)
}
.pcgh-vip-pay-modal__submit:disabled {
	opacity: .65;
	cursor: wait
}
.pcgh-vip-pay-modal__agree {
	margin-top: 12px;
	display: flex;
	align-items: center;
	gap: 7px;
	color: var(--pcgh-text-3);
	font-size: 12px
}
.pcgh-vip-pay-modal__agree input {
	width: 16px;
	height: 16px
}
.pcgh-vip-pay-modal__foot {
	margin-top: 16px;
	padding: 16px 18px;
	display: grid;
	grid-template-columns: repeat(4,minmax(0,1fr));
	gap: 12px;
	border-radius: 12px;
	background: rgba(15,23,42,.62);
	border: 1px solid rgba(148,163,184,.1)
}
.pcgh-vip-pay-modal__foot span {
	display: flex;
	align-items: center;
	gap: 8px;
	color: var(--pcgh-text-2);
	font-size: 13px
}
.pcgh-vip-pay-modal__foot i[data-lucide] {
	width: 32px;
	height: 32px;
	color: var(--pcgh-vip-pay-c)
}
@media (max-width: 860px) {
	.pcgh-vip-pay-modal {
		padding: 12px
	}
	.pcgh-vip-pay-modal__panel {
		width: calc(100vw - 24px);
		max-height: calc(100vh - 24px);
		padding: 20px
	}
	.pcgh-vip-pay-modal__grid {
		grid-template-columns: 1fr
	}
	.pcgh-vip-pay-modal__perks > div {
		grid-template-columns: repeat(2,minmax(0,1fr))
	}
	.pcgh-vip-pay-modal__foot {
		grid-template-columns: repeat(2,minmax(0,1fr))
	}
}
@media (max-width: 520px) {
	.pcgh-vip-pay-modal__summary {
		align-items: flex-start;
		flex-direction: column
	}
	.pcgh-vip-pay-modal__icon {
		width: 86px;
		height: 86px
	}
	.pcgh-vip-pay-modal__icon i[data-lucide] {
		width: 56px;
		height: 56px
	}
	.pcgh-vip-pay-modal__perks > div,
	.pcgh-vip-pay-modal__foot {
		grid-template-columns: 1fr
	}
}
.pcgh-vip-new-table {
	overflow-x: auto;
	border-radius: 12px;
	background: var(--pcgh-surface);
	border: 1px solid var(--pcgh-border)
}
.pcgh-vip-new-table table {
	width: 100%;
	border-collapse: collapse;
	min-width: 720px
}
.pcgh-vip-new-table th,
.pcgh-vip-new-table td {
	padding: 12px 14px;
	border-bottom: 1px solid rgba(99,102,241,.12);
	text-align: center
}
.pcgh-vip-new-table th:first-child,
.pcgh-vip-new-table td:first-child {
	text-align: left
}
.pcgh-vip-new-table th {
	color: var(--pcgh-text);
	background: var(--pcgh-surface-2)
}
.pcgh-vip-new-table td {
	color: var(--pcgh-text-2)
}
.pcgh-vip-new-table .is-yes {
	color: #a78bfa;
	font-weight: 900
}
.pcgh-vip-new-table .is-no {
	color: rgba(148,163,184,.48)
}
.pcgh-vip-new-faqs {
	display: grid;
	grid-template-columns: repeat(3,minmax(0,1fr));
	gap: 14px
}
.pcgh-vip-new-faqs details {
	padding: 16px;
	border-radius: 10px;
	background: var(--pcgh-surface);
	border: 1px solid var(--pcgh-border)
}
.pcgh-vip-new-faqs summary {
	display: flex;
	align-items: center;
	gap: 8px;
	color: var(--pcgh-text);
	font-weight: 700;
	cursor: pointer;
	list-style: none
}
.pcgh-vip-new-faqs summary::-webkit-details-marker {
	display: none
}
.pcgh-vip-new-faqs summary i[data-lucide] {
	width: 28px;
	height: 28px;
	color: #8b5cf6;
	flex-shrink: 0
}
.pcgh-vip-new-faqs p {
	margin: 10px 0 0;
	color: var(--pcgh-text-3)
}

/* 我的购买页面 */
.pcgh-uc-purchase-block {
	margin-top: 18px
}

.pcgh-uc-purchase-block:first-child {
	margin-top: 6px
}

.pcgh-uc-purchase-block__title {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	font-weight: 600;
	color: var(--pcgh-text);
	margin: 0 0 12px
}

.pcgh-uc-purchase-block__title i[data-lucide] {
	width: 16px;
	height: 16px;
	color: var(--pcgh-primary)
}

.pcgh-uc-purchase-block__title small {
	color: var(--pcgh-text-3);
	font-weight: 400;
	font-size: 12px
}

.pcgh-uc-vip-status {
	--pcgh-vip-c: #94a3b8;
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 14px 18px;
	background: linear-gradient(135deg, color-mix(in srgb, var(--pcgh-vip-c) 14%, transparent), transparent);
	border: 1px solid color-mix(in srgb, var(--pcgh-vip-c) 30%, transparent);
	border-radius: 10px;
	margin-bottom: 14px
}

.pcgh-uc-vip-status i[data-lucide] {
	width: 24px;
	height: 24px;
	color: var(--pcgh-vip-c);
	flex-shrink: 0
}

.pcgh-uc-vip-status > div {
	flex: 1;
	min-width: 0
}

.pcgh-uc-vip-status strong {
	display: block;
	color: var(--pcgh-text);
	font-size: 14px
}

.pcgh-uc-vip-status span {
	display: block;
	color: var(--pcgh-text-2);
	font-size: 12px;
	margin-top: 2px
}

.pcgh-uc-sub {
	margin: 14px 0 8px;
	font-size: 12px;
	color: var(--pcgh-text-3);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: .5px
}

.pcgh-uc-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 13px
}

.pcgh-uc-table th,.pcgh-uc-table td {
	padding: 8px 12px;
	border-bottom: 1px solid var(--pcgh-border);
	text-align: left
}

.pcgh-uc-table th {
	background: var(--pcgh-surface-2);
	color: var(--pcgh-text-3);
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase
}

.pcgh-uc-paid-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 8px
}

.pcgh-uc-paid-list li {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 8px;
	background: var(--pcgh-surface-2);
	border-radius: 8px;
	transition: .15s
}

.pcgh-uc-paid-list li:hover {
	background: color-mix(in srgb, var(--pcgh-primary) 10%, var(--pcgh-surface-2))
}

.pcgh-uc-paid-cover {
	flex-shrink: 0;
	width: 60px;
	height: 40px;
	border-radius: 6px;
	overflow: hidden
}

.pcgh-uc-paid-cover img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block
}

.pcgh-uc-paid-meta {
	flex: 1;
	min-width: 0
}

.pcgh-uc-paid-meta a {
	display: block;
	color: var(--pcgh-text);
	font-size: 13px;
	font-weight: 600;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis
}

.pcgh-uc-paid-meta a:hover {
	color: var(--pcgh-primary)
}

.pcgh-uc-paid-meta small {
	color: var(--pcgh-text-3);
	font-size: 11px
}

.pcgh-uc-empty {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 24px;
	border-radius: 8px;
	color: var(--pcgh-text-3);
	font-size: 13px;
	justify-content: center
}

.pcgh-uc-empty i[data-lucide] {
	width: 18px;
	height: 18px
}

@media (max-width:520px) {
	.pcgh-uc-vip-strip {
		flex-direction: column;
		align-items: flex-start;
		gap: 10px
	}

	.pcgh-uc-vip-strip .pcgh-btn {
		width: 100%;
		justify-content: center
	}

	.pcgh-vip-grid {
		grid-template-columns: 1fr
	}

	.pcgh-uc-paid-list li {
		flex-wrap: wrap
	}
}

/* ============ Single Page – Hero chips 变体 ============ */
.pcgh-chip {
	display: inline-flex;
	align-items: center;
	gap: 4px
}

.pcgh-chip i[data-lucide] {
	width: 12px;
	height: 12px
}

.pcgh-chip--top {
	background: linear-gradient(135deg,#ef4444,#f97316);
	color: #fff;
	border-color: transparent;
	font-weight: 600
}

.pcgh-chip--hot {
	background: linear-gradient(135deg,#f59e0b,#ef4444);
	color: #fff;
	border-color: transparent;
	font-weight: 600
}

.pcgh-chip--badge {
	font-weight: 600;
	border-color: transparent;
	color: #fff
}

.pcgh-chip--badge.pcgh-chip--new {
	background: linear-gradient(135deg,#10b981,#059669)
}

.pcgh-chip--badge.pcgh-chip--hot {
	background: linear-gradient(135deg,#ef4444,#dc2626)
}

.pcgh-chip--badge.pcgh-chip--rec {
	background: linear-gradient(135deg,#3b82f6,#2563eb)
}

/* ============ Single Page – 评论/日志单列回退 ============ */
.pcgh-single-col {
	display: block
}

.pcgh-single-col .pcgh-card-section {
	margin-bottom: 24px
}

.pcgh-single-related {
	padding: 16px;
	background: #101820
}

.pcgh-single-related .pcgh-card-section__head {
	margin-bottom: 14px
}

.pcgh-single-related .pcgh-card-section__head h2 {
	font-size: 18px;
	color: #fff
}

.pcgh-single-related .pcgh-card-section__head h2 :where(i[data-lucide],svg[data-lucide],.lucide) {
	width: 22px!important;
	height: 22px!important;
	color: #f59e0b
}

.pcgh-single-related__wrap {
	position: relative
}

.pcgh-single-related__nav {
	position: absolute;
	top: 50%;
	z-index: 3;
	width: 34px;
	height: 34px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(148,163,184,.18);
	border-radius: 999px;
	background: rgba(15,23,42,.92);
	color: #fff;
	box-shadow: 0 12px 26px rgba(0,0,0,.28);
	transform: translateY(-50%);
	cursor: pointer;
	transition: .18s
}

.pcgh-single-related__nav:hover {
	background: var(--pcgh-primary);
	border-color: var(--pcgh-primary)
}

.pcgh-single-related__nav[hidden] {
	display: none
}

.pcgh-single-related__nav--prev {
	left: -12px
}

.pcgh-single-related__nav--next {
	right: -12px
}

.pcgh-single-related__nav i[data-lucide] {
	width: 18px;
	height: 18px
}

.pcgh-single-related__grid {
	display: flex;
	gap: 10px;
	overflow-x: auto;
	overflow-y: hidden;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	scrollbar-width: none;
	padding: 2px 2px 4px
}

.pcgh-single-related__grid::-webkit-scrollbar {
	display: none
}

.pcgh-single-related__item {
	flex: 0 0 168px;
	display: block;
	overflow: hidden;
	border-radius: 6px;
	background: #17212b;
	color: #fff;
	transition: .18s;
	scroll-snap-align: start
}

.pcgh-single-related__item:hover {
	transform: translateY(-2px);
	color: #fff
}

.pcgh-single-related__cover {
	display: block;
	aspect-ratio: 2/1;
	background: #0f172a center/cover no-repeat
}

.pcgh-single-related__body {
	display: block;
	padding: 7px 8px 8px
}

.pcgh-single-related__body strong {
	display: block;
	margin-bottom: 4px;
	font-size: 12px;
	line-height: 1.35;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis
}

.pcgh-single-related__body span {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	min-width: 0
}

.pcgh-single-related__body em,
.pcgh-single-related__body small {
	font-style: normal;
	font-size: 11px;
	line-height: 1.2;
	color: rgba(148,163,184,.9);
	white-space: nowrap
}

.pcgh-single-related__body em {
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis
}

.pcgh-single-related__body small {
	margin-left: auto;
	color: #94a3b8
}

/* ============ Gutenberg 下载块 ============ */
.pcgh-dl-block {
	display: flex;
	align-items: stretch;
	gap: 18px;
	padding: 18px;
	margin: 24px 0;
	background: linear-gradient(135deg,var(--pcgh-surface) 0%,var(--pcgh-surface-2) 100%);
	border: 1px solid var(--pcgh-border);
	border-radius: 14px;
	position: relative;
	overflow: hidden
}

.pcgh-dl-block::before {
	content: "";
	position: absolute;
	inset: 0 auto 0 0;
	width: 4px;
	background: linear-gradient(180deg,var(--pcgh-primary),#8b5cf6)
}

.pcgh-dl-block__cover {
	flex-shrink: 0;
	width: 90px;
	height: 90px;
	border-radius: 10px;
	background-size: cover;
	background-position: center;
	background-color: var(--pcgh-surface-3)
}

.pcgh-dl-block__main {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 8px
}

.pcgh-dl-block__head {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap
}

.pcgh-dl-block__title {
	margin: 0;
	font-size: 16px;
	font-weight: 700;
	color: var(--pcgh-text);
	display: inline-flex;
	align-items: center;
	gap: 8px
}

.pcgh-dl-block__title i[data-lucide] {
	width: 18px;
	height: 18px;
	color: var(--pcgh-primary)
}

.pcgh-dl-block__badge {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: 3px 10px;
	font-size: 11px;
	font-weight: 600;
	border-radius: 999px;
	background: color-mix(in srgb,var(--c) 18%,transparent);
	color: var(--c);
	border: 1px solid color-mix(in srgb,var(--c) 40%,transparent)
}

.pcgh-dl-block__sub {
	margin: 0;
	font-size: 13px;
	color: var(--pcgh-text-3);
	line-height: 1.6
}

.pcgh-dl-block__meta {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 6px 18px;
	font-size: 12px;
	color: var(--pcgh-text-3)
}

.pcgh-dl-block__meta li {
	display: inline-flex;
	align-items: center;
	gap: 4px
}

.pcgh-dl-block__meta i[data-lucide] {
	width: 13px;
	height: 13px
}

.pcgh-dl-block__meta strong {
	color: var(--pcgh-text-2);
	font-weight: 600;
	margin-left: 2px
}

.pcgh-dl-block__cta {
	display: flex;
	align-items: center;
	flex-shrink: 0
}

.pcgh-dl-block__btn {
	white-space: nowrap
}

/* 横幅样式 */
.pcgh-dl-block--banner {
	flex-direction: column;
	align-items: flex-start;
	background: linear-gradient(135deg,#1e293b 0%,#0f172a 100%);
	border-color: transparent;
	color: #fff;
	padding: 24px
}

.pcgh-dl-block--banner::before {
	display: none
}

.pcgh-dl-block--banner .pcgh-dl-block__title {
	color: #fff;
	font-size: 18px
}

.pcgh-dl-block--banner .pcgh-dl-block__sub {
	color: rgba(255,255,255,.7)
}

.pcgh-dl-block--banner .pcgh-dl-block__meta {
	color: rgba(255,255,255,.6)
}

.pcgh-dl-block--banner .pcgh-dl-block__meta strong {
	color: #fff
}

.pcgh-dl-block--banner .pcgh-dl-block__cta {
	width: 100%;
	margin-top: 12px
}

.pcgh-dl-block--banner .pcgh-dl-block__btn {
	width: 100%;
	justify-content: center
}

@media (max-width:640px) {
	.pcgh-dl-block {
		flex-wrap: wrap;
		padding: 14px
	}

	.pcgh-dl-block__cover {
		width: 60px;
		height: 60px
	}

	.pcgh-dl-block__cta {
		width: 100%;
		margin-top: 8px
	}

	.pcgh-dl-block__btn {
		width: 100%;
		justify-content: center
	}
}

/* 编辑器内 placeholder */
.pcgh-block-empty,.pcgh-block-fallback {
	padding: 18px;
	border: 1px dashed var(--pcgh-border,#cbd5e1);
	border-radius: 10px;
	color: #64748b;
	font-size: 13px;
	text-align: center
}

/* ============ Toast 全局通知 ============ */
.pcgh-toast-host {
	position: fixed;
	top: 20px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 10000;
	display: flex;
	flex-direction: column;
	gap: 8px;
	pointer-events: none
}

.pcgh-toast {
	min-width: 200px;
	max-width: 90vw;
	padding: 10px 18px;
	background: var(--pcgh-surface,#1f2937);
	color: #fff;
	border: 1px solid var(--pcgh-border,#334155);
	border-radius: 10px;
	box-shadow: 0 8px 24px -8px rgba(0,0,0,.5);
	font-size: 13px;
	line-height: 1.5;
	opacity: 0;
	transform: translateY(-12px);
	transition: opacity .2s ease,transform .2s ease;
	pointer-events: auto
}

.pcgh-toast.is-show {
	opacity: 1;
	transform: translateY(0)
}

.pcgh-toast--success {
	background: rgba(6,95,70,.96);
	border-color: rgba(16,185,129,.7);
	color: #ecfdf5
}

.pcgh-toast--success:before {
	content: "?";
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 16px;
	height: 16px;
	margin-right: 8px;
	border-radius: 50%;
	background: #22c55e;
	color: #fff;
	font-size: 11px;
	font-weight: 800;
	line-height: 1
}

.pcgh-toast--error {
	background: #7f1d1d;
	border-color: #ef4444;
	color: #fee2e2
}

.pcgh-toast--info {
	background: #1e293b;
	border-color: #475569;
	color: #e2e8f0
}

html[data-pcgh-theme-resolved="light"] .pcgh-toast--success {
	background: #f0fdf4;
	border-color: #bbf7d0;
	color: #16a34a;
	box-shadow: 0 10px 26px rgba(21,128,61,.12)
}

html:not([data-pcgh-theme-resolved="light"]) .pcgh-toast--success {
	box-shadow: 0 12px 30px rgba(0,0,0,.34)
}

@media (max-width:720px) {
	.pcgh-toast-host {
		top: 14px;
		left: 12px;
		right: 12px;
		transform: none;
		align-items: center
	}

	.pcgh-toast {
		min-width: 0;
		width: fit-content;
		max-width: calc(100vw - 24px);
		padding: 9px 14px;
		font-size: 13px
	}
}

/* ============ 小屏（≤720px）补充微调 ============ */
@media (max-width:720px) {
	/* Single Hero：纵向单列 */
	.pcgh-hero__crumb {
		padding: 8px 14px
	}

	.pcgh-hero__inner {
		grid-template-columns: 1fr;
		padding: 14px;
		gap: 12px
	}

	.pcgh-hero__cover {
		aspect-ratio: 4/2.5;
		max-height: 240px
	}

	.pcgh-hero__title {
		font-size: 20px;
		line-height: 1.35
	}

	.pcgh-hero__sub {
		font-size: 12px
	}

	.pcgh-hero__stats {
		gap: 14px 18px;
		margin-bottom: 14px;
		padding-bottom: 10px
	}

	.pcgh-stat strong {
		font-size: 16px
	}

	.pcgh-stat__score {
		font-size: 22px!important
	}

	.pcgh-hero__btns {
		flex-direction: row
	}

	.pcgh-hero__btns .pcgh-btn {
		flex: 1;
		justify-content: center;
		padding: 10px 18px;
		font-size: 13px
	}

	.pcgh-hero__safe {
		padding: 10px 12px
	}

	.pcgh-shots {
		grid-template-columns: repeat(2,1fr);
		gap: 8px
	}
}

@media (max-width:520px) {
	/* 用户中心：分页和按钮排版收紧 */
	.pcgh-user__hero-head {
		padding: 18px 14px
	}

	.pcgh-user__avatar-img {
		width: 64px;
		height: 64px
	}

	.pcgh-uc-quick {
		grid-template-columns: repeat(2,1fr)
	}
}

/* ===========================================================================
 * 首页（重构版）
 * =======================================================================*/
/* Hero + 签到 双列 */
.pcgh-home-hero-section {
	padding-top: 18px
}

.pcgh-home-top {
	display: grid;
	grid-template-columns: minmax(0,1.55fr) minmax(0,1fr);
	gap: 18px;
	align-items: stretch
}
.pcgh-home-top.is-single {
	grid-template-columns: 1fr
}

.pcgh-home-hero {
	position: relative;
	border-radius: var(--pcgh-radius-lg);
	overflow: hidden;
	min-height: 380px;
	background: #0f1419
}

.pcgh-home-hero__slides {
	position: relative;
	width: 100%;
	height: 100%;
	min-height: 380px
}

.pcgh-home-hero__slide {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: flex-end;
	opacity: 0;
	transition: opacity .55s ease
}

.pcgh-home-hero__slide.is-active {
	opacity: 1
}

.pcgh-home-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg,rgba(15,20,25,.1) 0%,rgba(15,20,25,.3) 50%,rgba(15,20,25,.92) 100%)
}

.pcgh-home-hero__content {
	position: relative;
	z-index: 1;
	padding: 32px 36px;
	color: #fff;
	max-width: 560px
}

.pcgh-home-hero__title {
	margin: 0 0 4px;
	font-size: 32px;
	font-weight: 800;
	line-height: 1.2
}

.pcgh-home-hero__sub {
	margin: 0 0 12px;
	font-size: 14px;
	color: #8b8b8b;
	letter-spacing: .5px
}

.pcgh-home-hero__desc {
	margin: 0 0 14px;
	font-size: 13px;
	color: var(--pcgh-text-2);
	line-height: 1.6;
	max-width: 480px
}

.pcgh-home-hero__meta {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 10px;
	font-size: 13px
}

.pcgh-home-hero__score {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: var(--pcgh-text-2)
}

.pcgh-home-hero__score strong {
	font-size: 22px;
	font-weight: 800
}

.pcgh-home-hero__score i[data-lucide] {
	width: 14px;
	height: 14px;
	color: #fbbf24;
	fill: #fbbf24
}

.pcgh-home-hero__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-bottom: 14px
}

.pcgh-home-hero__tags .pcgh-tag {
	background: rgba(124,58,237,.18);
	border-color: rgba(124,58,237,.35);
	color: #c4b5fd
}

.pcgh-home-hero__btns {
	display: flex;
	gap: 10px
}

.pcgh-home-hero__dots {
	position: absolute;
	bottom: 16px;
	right: 20px;
	display: flex;
	gap: 6px;
	z-index: 2
}

.pcgh-home-hero__dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: rgba(255,255,255,.4);
	border: 0;
	cursor: pointer;
	transition: .18s;
	padding: 0
}

.pcgh-home-hero__dot.is-active {
	background: #fff;
	width: 22px;
	border-radius: 4px
}

/* 签到面板（widget 样式做局部适配） */
.pcgh-home-signin {
	background: var(--pcgh-surface);
	border: 1px solid var(--pcgh-border);
	border-radius: var(--pcgh-radius-lg);
	padding: 18px 20px;
	display: flex;
	flex-direction: column;
	min-height: 380px
}

.pcgh-home-signin__inner {
	display: flex;
	flex-direction: column;
	height: 100%
}

.pcgh-home-signin__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 14px
}

.pcgh-home-signin__head h3 {
	margin: 0;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 16px;
	font-weight: 600;
	color: var(--pcgh-text)
}

.pcgh-home-signin__more {
	font-size: 12px;
	color: var(--pcgh-text-3);
	display: inline-flex;
	align-items: center;
	gap: 2px
}

.pcgh-home-signin__more i[data-lucide] {
	width: 12px;
	height: 12px
}

.pcgh-home-signin__more:hover {
	color: var(--pcgh-primary)
}

/* 分类入口 */
.pcgh-home-cats-section {
	padding-top: 0
}

.pcgh-home-cats {
	display: grid;
	grid-template-columns: repeat(var(--pcgh-cats-cols,8),1fr);
	gap: 12px
}

.pcgh-home-cat {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 18px 8px;
	background: var(--pcgh-surface);
	border: 1px solid var(--pcgh-border);
	border-radius: var(--pcgh-radius-lg);
	transition: .18s;
	color: var(--pcgh-text)
}

.pcgh-home-cat:hover {
	transform: translateY(-3px);
	border-color: var(--pcgh-primary);
	box-shadow: 0 10px 22px -10px rgba(124,58,237,.4);
	color: var(--pcgh-text)
}

.pcgh-home-cat.is-active {
	background: linear-gradient(135deg,var(--pcgh-primary),#60a5fa);
	border-color: var(--pcgh-primary);
	color: #fff;
	box-shadow: 0 12px 28px -16px rgba(var(--pcgh-primary-rgb),.95),inset 0 1px 0 rgba(255,255,255,.22)
}

.pcgh-home-cat__icon {
	width: 58px;
	height: 58px;
	border-radius: 16px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 10px;
	background: color-mix(in srgb,var(--c) 20%,transparent);
	color: var(--c,var(--pcgh-primary));
	font-size: 34px;
	transition: .18s
}

.pcgh-home-cat__icon i[data-lucide],.pcgh-home-cat__icon svg {
	width: 1em!important;
	height: 1em!important;
	stroke-width: 1.8
}

.pcgh-home-cat.is-active .pcgh-home-cat__icon {
	background: transparent!important;
	border: 0!important;
	color: #fff;
	text-shadow: 0 0 18px rgba(var(--pcgh-primary-rgb),.55)
}

.pcgh-home-cat strong {
	font-size: 14px;
	font-weight: 600;
	line-height: 1.2;
	margin-bottom: 4px;
	color: var(--pcgh-text)
}

.pcgh-home-cat small {
	font-size: 11px;
	color: var(--pcgh-text-3)
}

.pcgh-home-cat.is-active strong {
	color: #fff
}

.pcgh-home-cat.is-active small {
	color: rgba(255,255,255,.88);
	font-weight: 600
}

/* 新游推荐 横向滚动 */
.pcgh-home-new-section {
	padding-top: 0
}

.pcgh-home-new {
	position: relative
}

.pcgh-home-new__track {
	display: flex;
	gap: 14px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	padding: 4px 2px;
	scrollbar-width: none
}

.pcgh-home-new__track::-webkit-scrollbar {
	display: none
}

.pcgh-home-new__card {
	flex: 0 0 calc((100% - 14px*4)/5);
	scroll-snap-align: start;
	background: var(--pcgh-surface);
	border: 1px solid var(--pcgh-border);
	border-radius: var(--pcgh-radius-lg);
	overflow: hidden;
	color: var(--pcgh-text);
	transition: .18s
}

.pcgh-home-new__card:hover {
	transform: translateY(-3px);
	border-color: var(--pcgh-primary);
	color: var(--pcgh-text)
}

.pcgh-home-new__cover {
	position: relative;
	width: 100%;
	aspect-ratio: var(--pcgh-cover-ratio,4/2);
	background: #0f1419 center/cover no-repeat
}

.pcgh-home-new__cover .pcgh-badge {
	position: absolute;
	top: 8px;
	left: 8px
}

.pcgh-home-new__body {
	padding: 10px 12px
}

.pcgh-home-new__body strong {
	display: block;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.3;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	margin-bottom: 6px
}

.pcgh-home-new__meta {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 12px;
	color: var(--pcgh-text-3);
	margin-bottom: 0
}

.pcgh-home-new__score {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-size: 12px;
	line-height: 1;
	font-weight: 700;
	flex-shrink: 0
}

.pcgh-home-new__stars {
	display: inline-flex;
	align-items: center;
	gap: 1px
}

.pcgh-home-new__star {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--pcgh-text-3);
	opacity: .45
}

.pcgh-home-new__star.is-active {
	color: inherit;
	opacity: 1
}

.pcgh-home-new__star i[data-lucide] {
	width: 14px;
	height: 14px;
	stroke-width: 2.2;
	fill: currentColor
}

.pcgh-home-new__score-num {
	font-size: 12px;
	line-height: 12px
}
/* 主分类 chip（紫色淡底） */
.pcgh-home-new__cat {
	display: inline-block;
	padding: 2px 8px;
	border-radius: 4px;
	background: rgba(var(--pcgh-primary-rgb),.16);
	color: var(--pcgh-primary);
	font-size: 12px;
	font-weight: 500;
	line-height: 1.35;
	min-width: 0;
	flex: 0 1 auto;
	max-width: 100%;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis
}
/* 文件大小（右对齐） */
.pcgh-home-new__size {
	margin-left: auto;
	font-style: normal;
	font-size: 12px;
	line-height: 1.35;
	color: var(--pcgh-text-2);
	font-weight: 600;
	flex-shrink: 0
}

.pcgh-home-new__nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: rgba(0,0,0,.6);
	color: #fff;
	border: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 2;
	transition: .18s;
	opacity: 0
}

.pcgh-home-new:hover .pcgh-home-new__nav {
	opacity: .95
}

.pcgh-home-new__nav:hover {
	background: var(--pcgh-primary);
	transform: translateY(-50%) scale(1.05)
}

.pcgh-home-new__nav i[data-lucide] {
	width: 18px;
	height: 18px
}

.pcgh-home-new__nav--prev {
	left: -10px
}

.pcgh-home-new__nav--next {
	right: -10px
}

/* 全部游戏 tabs + 视图切换 + 数字分页 */
.pcgh-home-all-section {
	padding-top: 0
}

.pcgh-home-all-section .pcgh-card-section__head {
	flex-wrap: wrap;
	gap: 12px
}

.pcgh-home-all.pcgh-game-grid {
	grid-template-columns: repeat(var(--pcgh-cat-columns,4),minmax(0,1fr))
}

.pcgh-home-all-section .pcgh-tabs {
	margin-left: auto
}

.pcgh-home-all__view {
	display: inline-flex;
	border: 1px solid var(--pcgh-border);
	border-radius: 8px;
	overflow: hidden;
	background: var(--pcgh-surface)
}

.pcgh-home-all__view-btn {
	padding: 6px 10px;
	background: transparent;
	border: 0;
	color: var(--pcgh-text-3);
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: .15s
}

.pcgh-home-all__view-btn i[data-lucide] {
	width: 16px;
	height: 16px
}

.pcgh-home-all__view-btn:hover {
	color: var(--pcgh-text)
}

.pcgh-home-all__view-btn.is-active {
	background: var(--pcgh-primary);
	color: #fff
}

.pcgh-home-all__pager {
	margin-top: 20px
}

.pcgh-home-all__pager.is-loading {
	opacity: .58;
	pointer-events: none
}

/* 全部游戏 列表视图：覆盖 .pcgh-game-grid */
.pcgh-home-all.is-list {
	display: grid;
	grid-template-columns: repeat(2,minmax(0,1fr));
	gap: 12px
}

.pcgh-home-all.is-list .pcgh-game-card {
	display: grid;
	grid-template-columns: 128px minmax(0,1fr);
	align-items: center;
	gap: 12px;
	padding: 10px;
	background: var(--pcgh-surface);
	border: 1px solid var(--pcgh-border);
	border-radius: 10px
}

.pcgh-home-all.is-list .pcgh-game-card__cover {
	width: 128px;
	aspect-ratio: 4/2.5;
	height: auto
}

.pcgh-home-all.is-list .pcgh-game-card__body {
	padding: 0
}

.pcgh-home-all.is-list .pcgh-game-card__title {
	font-size: 15px
}

@media (max-width:720px) {
	.pcgh-home-all-section .pcgh-card-section__head {
		align-items: flex-start
	}

	.pcgh-home-all-section .pcgh-tabs {
		margin-left: 0
	}

	.pcgh-home-all__view {
		margin-left: auto
	}

	.pcgh-home-all.is-list {
		grid-template-columns: 1fr;
		gap: 10px
	}

	.pcgh-home-all.is-list .pcgh-game-card {
		grid-template-columns: 104px minmax(0,1fr);
		gap: 10px;
		padding: 8px
	}

	.pcgh-home-all.is-list .pcgh-game-card__cover {
		width: 104px
	}

	.pcgh-home-all__pager {
		flex-wrap: wrap;
		padding-top: 18px
	}
}

/* 返回顶部按钮 */
.pcgh-back-to-top {
	position: fixed;
	right: 24px;
	bottom: 24px;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: var(--pcgh-primary);
	color: #fff;
	border: 0;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 10px 24px -8px color-mix(in srgb,var(--pcgh-primary) 60%,transparent),inset 0 1px 0 rgba(255,255,255,.18);
	z-index: 90;
	opacity: 0;
	transform: translateY(8px);
	pointer-events: none;
	transition: .25s
}

.pcgh-back-to-top.is-show {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto
}

.pcgh-back-to-top:hover {
	transform: translateY(-3px);
	box-shadow: 0 14px 32px rgba(124,58,237,.35)
}

.pcgh-back-to-top i[data-lucide] {
	width: 20px;
	height: 20px
}

.pcgh-mobile-tabbar {
	display: none
}

/* ===========================================================================
 * Footer（极简版 — 一行品牌+横排链接 / 一行版权+备案）
 * =======================================================================*/
.pcgh-footer {
	margin-top: clamp(32px,5vw,72px);
	margin-bottom: 0;
	background: var(--pcgh-surface);
	border: 1px solid var(--pcgh-border);
	border-radius: 0;
	overflow: hidden
}

.pcgh-main:has(.pcgh-specials-page) + .pcgh-footer,
.pcgh-main:has(.pcgh-special-detail-page) + .pcgh-footer,
.pcgh-main:has(.pcgh-special-tax-page) + .pcgh-footer {
	margin-top: 24px
}

.pcgh-footer__inner {
	display: flex !important;
	align-items: center;
	flex-wrap: wrap;
	gap: 24px 32px;
	padding-top: clamp(20px,2.4vw,30px);
	padding-bottom: clamp(20px,2.4vw,30px);
	grid-template-columns: none;
}

.pcgh-footer__brand {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	color: var(--pcgh-text);
	text-decoration: none;
	flex-shrink: 0
}

.pcgh-footer__brand:hover {
	color: var(--pcgh-text)
}

.pcgh-footer__logo {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-weight: 700;
	font-size: 16px;
	color: var(--pcgh-text)
}

.pcgh-footer__logo-icon {
	width: 22px;
	height: 22px;
	color: var(--pcgh-primary)
}

.pcgh-footer__logo-img {
	height: 28px;
	width: auto;
	display: block
}

.pcgh-footer__subtitle {
	color: var(--pcgh-text-3);
	font-size: 12px;
	line-height: 1.4
}

.pcgh-footer__links {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px 26px;
	flex: 1;
	min-width: 0
}

.pcgh-footer__links a {
	color: var(--pcgh-text-2);
	font-size: 13px;
	transition: .15s
}

.pcgh-footer__links a:hover {
	color: var(--pcgh-primary)
}

.pcgh-footer__bottom {
	border-top: 1px solid var(--pcgh-border);
	padding-top: clamp(12px,1.5vw,18px);
	padding-bottom: clamp(12px,1.5vw,18px);
	color: var(--pcgh-text-3);
	font-size: 12px
}

.pcgh-footer__bottom-inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 18px
}

.pcgh-footer__bottom a {
	color: var(--pcgh-text-3)
}

.pcgh-footer__bottom a:hover {
	color: var(--pcgh-primary)
}

.pcgh-footer__icp {
	display: inline-flex;
	align-items: center;
	gap: 4px
}

/* 响应式 */
@media (max-width:1100px) {
	.pcgh-home-top {
		grid-template-columns: 1fr
	}

	.pcgh-home-cats {
		grid-template-columns: repeat(4,1fr) !important
	}

	.pcgh-home-new__card {
		flex-basis: calc((100% - 14px*2)/3)
	}
}

@media (max-width:720px) {
	.pcgh-home-hero {
		min-height: 280px
	}

	.pcgh-home-hero__title {
		font-size: 24px
	}

	.pcgh-home-hero__content {
		padding: 18px 22px
	}

	.pcgh-home-cats {
		grid-template-columns: repeat(4,1fr) !important;
		gap: 8px
	}

	.pcgh-home-new__card {
		flex-basis: calc((100% - 14px)/2)
	}

	.pcgh-back-to-top {
		right: 14px;
		bottom: 14px;
		width: 40px;
		height: 40px
	}

	.pcgh-footer__inner {
		flex-direction: column;
		align-items: flex-start;
		gap: 14px;
		padding: 20px 0 18px
	}

	.pcgh-footer__links {
		gap: 14px 20px
	}
}

/* ===========================================================================
 * 评论 UI（美化版）
 * =======================================================================*/
.pcgh-comments {
	margin-top: 8px
}

/* —— 评分总结条 —— */
.pcgh-comments__summary {
	display: flex;
	align-items: center;
	gap: 18px;
	padding: 18px 22px;
	margin-bottom: 18px;
	background: linear-gradient(135deg,var(--pcgh-surface) 0%,var(--pcgh-surface-2) 100%);
	border: 1px solid var(--pcgh-border);
	border-radius: 12px
}

.pcgh-comments__score {
	display: flex;
	align-items: baseline;
	gap: 2px;
	flex-shrink: 0
}

.pcgh-comments__score strong {
	font-size: 42px;
	font-weight: 800;
	line-height: 1
}

.pcgh-comments__score small {
	font-size: 14px;
	color: var(--pcgh-text-3)
}

.pcgh-comments__score-meta {
	display: flex;
	flex-direction: column;
	gap: 4px;
	flex: 1;
	min-width: 0
}
/* 顶部评分总结：双层 SVG 叠加实现满/半/空星 */
.pcgh-comments__stars {
	display: inline-flex;
	gap: 3px;
	line-height: 1
}

.pcgh-comments__star {
	position: relative;
	display: inline-block;
	width: 18px;
	height: 18px;
	line-height: 0
}
/* 同时命中两种状态：
   ① lucide 替换前的 <i data-lucide>（防 JS 未加载时的样式）
   ② lucide 替换后的 <svg>（实际渲染的元素，data-lucide 已被移除） */
.pcgh-comments__star-bg,
.pcgh-comments__star-fg {
	position: absolute;
	inset: 0;
	width: 18px;
	height: 18px;
	stroke-width: 1.6
}
/* 空星（背景层） */
.pcgh-comments__star-bg {
	color: rgba(255,255,255,.14);
	stroke: currentColor;
	fill: transparent
}
/* 满星（前景层）：默认隐藏，is-on 显示满，is-half 显示半（clip-path 截一半） */
.pcgh-comments__star-fg {
	color: #facc15;
	stroke: currentColor;
	fill: #facc15;
	clip-path: inset(0 100% 0 0);
	transition: clip-path .2s;
	filter: drop-shadow(0 0 4px rgba(250,204,21,.45))
}

.pcgh-comments__star.is-on   .pcgh-comments__star-fg {
	clip-path: inset(0 0 0 0)
}

.pcgh-comments__star.is-half .pcgh-comments__star-fg {
	clip-path: inset(0 50% 0 0)
}

.pcgh-comments__score-meta span {
	color: var(--pcgh-text-3);
	font-size: 12px
}

.pcgh-comments__write {
	flex-shrink: 0;
	padding: 8px 18px;
	font-size: 13px
}

.pcgh-comments__write i[data-lucide] {
	width: 14px;
	height: 14px
}

/* —— 空态 —— */
.pcgh-comments__empty {
	text-align: center;
	padding: 36px 20px;
	color: var(--pcgh-text-3);
	background: var(--pcgh-surface);
	border: 1px dashed var(--pcgh-border);
	border-radius: 12px;
	margin-bottom: 18px
}

.pcgh-comments__empty i[data-lucide] {
	width: 36px;
	height: 36px;
	color: var(--pcgh-text-3);
	margin-bottom: 8px
}

.pcgh-comments__empty p {
	margin: 0;
	font-size: 13px
}

.pcgh-comments__empty a {
	color: var(--pcgh-primary);
	font-weight: 500
}

/* —— 必须登录才能评论 —— */
.pcgh-comments__login-required {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 18px 22px;
	margin-top: 18px;
	background: linear-gradient(135deg,rgba(124,58,237,.1),rgba(124,58,237,.03));
	border: 1px solid rgba(124,58,237,.3);
	border-radius: 12px
}

.pcgh-comments__login-required > i[data-lucide] {
	flex-shrink: 0;
	width: 38px;
	height: 38px;
	padding: 9px;
	background: rgba(124,58,237,.18);
	color: #c4b5fd;
	border-radius: 10px
}

.pcgh-comments__login-required-text {
	flex: 1;
	min-width: 0
}

.pcgh-comments__login-required-text strong {
	display: block;
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 2px
}

.pcgh-comments__login-required-text p {
	margin: 0;
	color: var(--pcgh-text-3);
	font-size: 12px;
	line-height: 1.55
}

.pcgh-comments__login-required .pcgh-btn {
	flex-shrink: 0;
	padding: 9px 18px;
	font-size: 13px
}

.pcgh-comments__login-required .pcgh-btn i[data-lucide] {
	width: 14px;
	height: 14px
}

@media (max-width:560px) {
	.pcgh-comments__login-required {
		flex-wrap: wrap;
		padding: 14px
	}

	.pcgh-comments__login-required .pcgh-btn {
		width: 100%;
		justify-content: center
	}
}

/* —— 评论列表（外层 ol） —— */
.pcgh-comments__list {
	list-style: none;
	padding: 0;
	margin: 0 0 18px
}

.pcgh-comments__list .children {
	list-style: none;
	padding-left: 38px;
	margin: 14px 0 0;
}

/* —— 单条评论 —— */
.pcgh-cmt {
	padding: 0;
	margin-bottom: 14px
}

.pcgh-cmt:last-child {
	margin-bottom: 0
}

.pcgh-cmt__inner {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 14px 16px;
	background: var(--pcgh-surface);
	border: 1px solid var(--pcgh-border);
	border-radius: 10px;
	transition: .18s
}

.pcgh-cmt:hover .pcgh-cmt__inner {
	border-color: var(--pcgh-primary-soft,rgba(124,58,237,.4))
}

.pcgh-cmt--admin .pcgh-cmt__inner {
	background: linear-gradient(135deg,rgba(124,58,237,.06) 0%,var(--pcgh-surface) 100%);
	border-color: rgba(124,58,237,.35)
}

.pcgh-cmt__avatar {
	flex-shrink: 0
}

.pcgh-cmt__avatar img {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 2px solid var(--pcgh-surface-2);
	background: var(--pcgh-surface-2)
}

.pcgh-cmt__body {
	flex: 1;
	min-width: 0
}

.pcgh-cmt__head {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	margin-bottom: 6px;
	line-height: 1.3
}

.pcgh-cmt__name {
	font-size: 14px;
	font-weight: 600;
	color: var(--pcgh-text)
}

.pcgh-cmt__name a {
	color: inherit
}

.pcgh-cmt__name a:hover {
	color: var(--pcgh-primary)
}

.pcgh-cmt__tag {
	font-size: 10px;
	font-weight: 600;
	padding: 2px 6px;
	border-radius: 4px;
	background: var(--pcgh-surface-2);
	color: var(--pcgh-text-3)
}

.pcgh-cmt__tag--admin {
	background: rgba(124,58,237,.15);
	color: #a78bfa
}

.pcgh-cmt__rating {
	display: inline-flex;
	gap: 3px;
	align-items: center;
	padding: 4px 9px;
	border-radius: 99px;
	background: rgba(250,204,21,.08);
	border: 1px solid rgba(250,204,21,.2)
}

.pcgh-cmt__rating i[data-lucide],
.pcgh-cmt__rating svg {
	width: 15px;
	height: 15px;
	color: rgba(255,255,255,.18);
	stroke: currentColor;
	stroke-width: 1.6;
	fill: transparent
}

.pcgh-cmt__rating i[data-lucide].is-on,
.pcgh-cmt__rating svg.is-on {
	color: #facc15;
	fill: #facc15;
	filter: drop-shadow(0 0 3px rgba(250,204,21,.5))
}

#review .pcgh-card-section__head h2 > :where(i[data-lucide],svg[data-lucide],.lucide) {
	width: 1.25em!important;
	height: 1.25em!important;
	stroke-width: 2.2
}

.pcgh-cmt__time {
	margin-left: auto;
	color: var(--pcgh-text-3);
	font-size: 11px
}

.pcgh-cmt__content {
	color: var(--pcgh-text-2);
	font-size: 13px;
	line-height: 1.65;
	word-break: break-word
}

.pcgh-cmt__content p {
	margin: 0 0 6px
}

.pcgh-cmt__content p:last-child {
	margin-bottom: 0
}

.pcgh-cmt__content a {
	color: var(--pcgh-primary)
}

.pcgh-cmt__content blockquote {
	margin: 6px 0;
	padding: 6px 12px;
	background: var(--pcgh-surface-2);
	border-left: 3px solid var(--pcgh-primary);
	border-radius: 4px;
	color: var(--pcgh-text-3);
	font-size: 12px
}

.pcgh-cmt__content code {
	background: var(--pcgh-surface-2);
	padding: 1px 6px;
	border-radius: 3px;
	font-size: 12px
}

.pcgh-cmt__pending {
	margin: 0 0 6px;
	padding: 6px 10px;
	background: rgba(245,158,11,.12);
	border: 1px dashed rgba(245,158,11,.4);
	color: #fbbf24;
	font-size: 12px;
	border-radius: 6px
}

.pcgh-cmt__foot {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-top: 8px;
	font-size: 11px
}

.pcgh-cmt__reply a,.pcgh-cmt__edit a {
	display: inline-flex;
	align-items: center;
	gap: 3px;
	color: var(--pcgh-text-3);
	transition: .15s
}

.pcgh-cmt__reply a:hover,.pcgh-cmt__edit a:hover {
	color: var(--pcgh-primary)
}

.pcgh-cmt__reply i[data-lucide],.pcgh-cmt__edit i[data-lucide] {
	width: 12px;
	height: 12px
}

/* 兼容 wordpress 默认 .comment-respond 在嵌套回复时的位置（紧邻评论） */
.comment-respond {
	margin-top: 14px
}

/* —— 评论表单 —— */
.pcgh-cmt-form {
	background: var(--pcgh-surface);
	border: 1px solid var(--pcgh-border);
	border-radius: 12px;
	padding: 18px 20px;
	margin-top: 18px
}

.comment-reply-title {
	margin: 0 0 14px;
	font-size: 15px;
	font-weight: 600;
	color: var(--pcgh-text);
	display: flex;
	align-items: center;
	gap: 6px
}

.comment-reply-title i[data-lucide] {
	width: 16px;
	height: 16px;
	color: var(--pcgh-primary)
}

.comment-reply-title small {
	margin-left: auto;
	font-weight: 400;
	font-size: 12px
}

.comment-reply-title small a {
	color: var(--pcgh-text-3)
}

.comment-reply-title small a:hover {
	color: var(--pcgh-primary)
}

.pcgh-cmt-form__textarea {
	width: 100%;
	min-height: 110px;
	padding: 12px 14px;
	background: var(--pcgh-bg);
	border: 1px solid var(--pcgh-border);
	border-radius: 8px;
	color: var(--pcgh-text);
	font-size: 13px;
	line-height: 1.6;
	resize: vertical;
	transition: .15s;
	font-family: inherit;
	box-sizing: border-box
}

.pcgh-cmt-form__textarea:focus {
	outline: 0;
	border-color: var(--pcgh-primary);
	box-shadow: 0 0 0 3px rgba(124,58,237,.15)
}

.pcgh-cmt-quick-replies {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
	margin: 0
}

.pcgh-cmt-quick-replies__label {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	color: var(--pcgh-text-3);
	font-size: 12px;
	line-height: 1
}

.pcgh-cmt-quick-replies__label i[data-lucide] {
	width: 13px;
	height: 13px;
	color: #facc15
}

.pcgh-cmt-quick-replies__items {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap
}

.pcgh-cmt-quick-replies__item {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 24px;
	padding: 0 12px;
	background: transparent;
	border: 1px solid rgba(255,255,255,.72);
	border-radius: 999px;
	color: var(--pcgh-text);
	font-size: 12px;
	line-height: 1;
	cursor: pointer;
	transition: .15s
}

.pcgh-cmt-quick-replies__item:hover {
	border-color: var(--pcgh-primary);
	color: #fff;
	background: rgba(124,58,237,.16)
}

.pcgh-cmt-form__toolbar {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
	min-width: 0
}

.pcgh-emoji-pack {
	position: relative;
	display: inline-flex;
	align-items: center;
	flex-shrink: 0
}

.pcgh-emoji-pack__toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
	min-height: 28px;
	padding: 0 12px;
	background: rgba(15,23,42,.38);
	border: 1px solid rgba(148,163,184,.24);
	border-radius: 999px;
	color: var(--pcgh-text);
	font-size: 12px;
	line-height: 1;
	cursor: pointer;
	transition: .15s
}

.pcgh-emoji-pack__toggle:hover,
.pcgh-emoji-pack.is-open .pcgh-emoji-pack__toggle {
	border-color: var(--pcgh-primary);
	color: #fff;
	background: rgba(124,58,237,.18)
}

.pcgh-emoji-pack__toggle i[data-lucide],
.pcgh-emoji-pack__toggle .ti {
	font-size: 1.08em;
	color: #facc15
}

.pcgh-emoji-pack__panel {
	position: absolute;
	left: 0;
	bottom: calc(100% + 10px);
	z-index: 20;
	width: 352px;
	max-width: calc(100vw - 32px);
	padding: 0;
	background: rgba(15,23,42,.96);
	border: 1px solid rgba(148,163,184,.22);
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 0 18px 50px rgba(0,0,0,.34);
	-webkit-backdrop-filter: blur(14px);
	backdrop-filter: blur(14px)
}

.pcgh-emoji-pack__picker {
	width: 100%;
	height: 382px;
	background: rgba(15,23,42,.98);
	color: var(--pcgh-text)
}

.pcgh-emoji-pack__picker em-emoji-picker {
	width: 100%;
	height: 100%;
	--rgb-background: 15,23,42;
	--rgb-color: 226,232,240;
	--rgb-accent: var(--pcgh-primary-rgb);
	--color-border: rgba(148,163,184,.18);
	--shadow: none
}

.pcgh-cmt-form .comment-form-author,
.pcgh-cmt-form .comment-form-email,
.pcgh-cmt-form .comment-form-url,
.pcgh-cmt-form .comment-form-cookies-consent {
	margin: 10px 0;
	font-size: 12px;
	color: var(--pcgh-text-3)
}

.pcgh-cmt-form .comment-form-author input,
.pcgh-cmt-form .comment-form-email input,
.pcgh-cmt-form .comment-form-url input {
	margin-left: 6px;
	padding: 6px 10px;
	background: var(--pcgh-bg);
	border: 1px solid var(--pcgh-border);
	border-radius: 6px;
	color: var(--pcgh-text);
	font-size: 12px;
	min-width: 160px
}

.pcgh-cmt-form__submit {
	padding: 10px 26px;
	font-size: 13px
}

.pcgh-cmt-form__actions {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	margin-top: 10px
}

.pcgh-cmt-form .form-submit {
	display: flex;
	justify-content: flex-end;
	margin: 0;
	flex-shrink: 0
}

.pcgh-cmt-form__submit:disabled {
	cursor: not-allowed;
	opacity: .72
}

.logged-in-as {
	margin: 0 0 12px;
	font-size: 12px;
	color: var(--pcgh-text-3)
}

.logged-in-as a {
	color: var(--pcgh-primary)
}

/* —— 评论分页 —— */
.pcgh-comments .pagination,
.pcgh-comments .navigation {
	display: flex;
	justify-content: center;
	gap: 6px;
	margin: 16px 0;
	flex-wrap: wrap
}

.pcgh-comments .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 32px;
	height: 32px;
	padding: 0 10px;
	background: var(--pcgh-surface);
	border: 1px solid var(--pcgh-border);
	color: var(--pcgh-text-2);
	font-size: 12px;
	border-radius: 6px;
	transition: .15s
}

.pcgh-comments .page-numbers:hover {
	border-color: var(--pcgh-primary);
	color: var(--pcgh-primary)
}

.pcgh-comments .page-numbers.current {
	background: var(--pcgh-primary);
	border-color: var(--pcgh-primary);
	color: #fff
}

.pcgh-comments .page-numbers i[data-lucide] {
	width: 14px;
	height: 14px
}

@media (max-width:720px) {
	.pcgh-comments__summary {
		flex-wrap: wrap;
		gap: 14px;
		padding: 14px
	}

	.pcgh-comments__write {
		margin-left: auto
	}

	.pcgh-cmt__inner {
		padding: 12px 14px;
		gap: 10px
	}

	.pcgh-cmt__avatar img {
		width: 34px;
		height: 34px
	}

	.pcgh-comments__list .children {
		padding-left: 18px
	}

	.pcgh-cmt-form {
		padding: 14px
	}

	.pcgh-cmt-form__actions {
		align-items: stretch;
		flex-direction: column
	}

	.pcgh-cmt-form__toolbar {
		width: 100%;
		align-items: flex-start;
		gap: 10px
	}

	.pcgh-cmt-quick-replies {
		width: 100%;
		gap: 8px
	}

	.pcgh-cmt-quick-replies__items {
		width: 100%;
		overflow-x: auto;
		flex-wrap: nowrap;
		padding-bottom: 2px;
		-webkit-overflow-scrolling: touch
	}

	.pcgh-cmt-quick-replies__item {
		flex: 0 0 auto
	}

	.pcgh-emoji-pack {
		width: 100%
	}

	.pcgh-emoji-pack__toggle {
		width: 100%;
		height: 34px
	}

	.pcgh-emoji-pack__panel {
		left: 0;
		right: 0;
		width: auto;
		max-width: calc(100vw - 56px)
	}

	.pcgh-emoji-pack__picker {
		height: 360px
	}

	.pcgh-cmt-form .form-submit,
	.pcgh-cmt-form__submit {
		width: 100%
	}
}

i.ti,.ti,[class^="ti-"],[class*=" ti-"] {
	font-size: 1em!important;
	line-height: 1
}

.pcgh-btn,.pcgh-more,.pcgh-card-section__head h2,.pcgh-uc-card__head h3,.pcgh-uc-menu-item,.pcgh-uc-status,.pcgh-uc-quick-stats span,.pcgh-uc-task-total,.pcgh-cmt__reply a,.pcgh-cmt__edit a,.comment-reply-title {
	align-items: center
}

.pcgh-logo__icon {
	font-size: 1.25rem
}

.pcgh-nav__list > li > a {
	display: inline-flex;
	align-items: center;
	gap: .45em
}

.pcgh-nav__list > li > a :where(i[data-lucide],svg[data-lucide],.lucide,.ti,[class^="ti-"],[class*=" ti-"]) {
	font-size: 1.15em
}

.pcgh-nav__icon {
	flex-shrink: 0;
	color: currentColor
}

.pcgh-search__icon {
	font-size: 1.15rem
}

.pcgh-icon-btn {
	font-size: 1.25rem
}

.pcgh-header__login-btn :where(i[data-lucide],svg[data-lucide],.lucide,.ti,[class^="ti-"],[class*=" ti-"]) {
	font-size: 1.15em
}

.pcgh-btn :where(i[data-lucide],svg[data-lucide],.lucide,.ti,[class^="ti-"],[class*=" ti-"]),
.pcgh-more :where(i[data-lucide],svg[data-lucide],.lucide,.ti,[class^="ti-"],[class*=" ti-"]),
.pcgh-card-section__head :where(i[data-lucide],svg[data-lucide],.lucide,.ti,[class^="ti-"],[class*=" ti-"]),
.pcgh-side-card__head :where(i[data-lucide],svg[data-lucide],.lucide,.ti,[class^="ti-"],[class*=" ti-"]),
.pcgh-update-list__head :where(i[data-lucide],svg[data-lucide],.lucide,.ti,[class^="ti-"],[class*=" ti-"]),
.pcgh-uc-card__head :where(i[data-lucide],svg[data-lucide],.lucide,.ti,[class^="ti-"],[class*=" ti-"]),
.pcgh-uc-menu-item :where(i[data-lucide],svg[data-lucide],.lucide,.ti,[class^="ti-"],[class*=" ti-"]),
.pcgh-uc-status :where(i[data-lucide],svg[data-lucide],.lucide,.ti,[class^="ti-"],[class*=" ti-"]),
.pcgh-uc-quick-stats :where(i[data-lucide],svg[data-lucide],.lucide,.ti,[class^="ti-"],[class*=" ti-"]),
.pcgh-cmt__foot :where(i[data-lucide],svg[data-lucide],.lucide,.ti,[class^="ti-"],[class*=" ti-"]),
.comment-reply-title :where(i[data-lucide],svg[data-lucide],.lucide,.ti,[class^="ti-"],[class*=" ti-"]) {
	font-size: 1em!important
}

.pcgh-author-page {
	background:var(--pcgh-bg);
	color:var(--pcgh-text-2);
	padding:14px 0 42px;
	min-height:calc(100vh - 80px)
}
.pcgh-author-page .pcgh-container {
	max-width:var(--pcgh-container-w)
}
.pcgh-author-hero {
	height:250px;
	border-radius:var(--pcgh-radius-lg) var(--pcgh-radius-lg) 0 0;
	background-size:cover;
	background-position:center;
	position:relative;
	overflow:hidden
}
.pcgh-author-hero::after {
	content:"";
	position:absolute;
	inset:0;
	background:linear-gradient(180deg,rgba(0,0,0,.12),rgba(0,0,0,.58))
}
.pcgh-author-card {
	min-height:96px;
	background:var(--pcgh-surface);
	border:1px solid var(--pcgh-border);
	border-top:0;
	border-radius:0 0 var(--pcgh-radius-lg) var(--pcgh-radius-lg);
	display:flex;
	align-items:center;
	justify-content:space-between;
	gap:16px;
	padding:0 30px 18px 34px;
	margin-bottom:10px;
	position:relative;
	z-index:2
}
.pcgh-author-card__main {
	display:flex;
	align-items:flex-end;
	gap:18px;
	min-width:0;
	position:relative;
	z-index:3
}
.pcgh-author-card__main > a {
	position:relative;
	z-index:4;
	flex:0 0 auto
}
.pcgh-author-card__avatar {
	width:112px;
	height:112px;
	border-radius:18px;
	border:0;
	box-shadow:0 14px 32px rgba(0,0,0,.36);
	margin-top:-76px;
	position:relative;
	z-index:5;
	flex:0 0 auto
}
.pcgh-author-card__info {
	min-width:0;
	padding:8px 0
}
.pcgh-author-card__info h1 {
	display:flex;
	align-items:center;
	gap:6px;
	color:#fff;
	font-size:22px;
	font-weight:700;
	line-height:1.3
}
.pcgh-author-gender {
	display:inline-flex;
	align-items:center;
	justify-content:center;
	width:auto;
	height:auto;
	border:0;
	background:none;
	font-size:14px;
	line-height:1
}
.pcgh-author-gender.is-male {
	color:#38bdf8
}
.pcgh-author-gender.is-female {
	color:#fb7185
}
.pcgh-author-gender i {
	width:1em;
	height:1em
}
.pcgh-author-card__info p {
	margin:8px 0 0;
	color:var(--pcgh-text-3);
	font-size:14px;
	white-space:nowrap;
	overflow:hidden;
	text-overflow:ellipsis
}
.pcgh-author-card__actions {
	display:flex;
	align-items:center;
	gap:10px;
	flex:0 0 auto
}
.pcgh-author-btn {
	height:30px;
	border-radius:4px;
	padding:0 14px;
	display:inline-flex;
	align-items:center;
	justify-content:center;
	gap:5px;
	font-size:13px;
	font-weight:700;
	border:1px solid transparent
}
.pcgh-author-btn--green {
	background:var(--pcgh-primary);
	color:#fff
}
.pcgh-author-btn--green:hover {
	background:var(--pcgh-primary-2);
	color:#fff
}
.pcgh-author-btn.is-followed {
	background:rgba(var(--pcgh-primary-rgb),.12);
	border-color:rgba(var(--pcgh-primary-rgb),.45);
	color:var(--pcgh-primary)
}
.pcgh-author-edit-icon {
	width:12px;
	height:12px;
	font-size:12px;
	flex:0 0 auto
}
.pcgh-author-layout {
	display:grid;
	grid-template-columns:minmax(0,1fr) 270px;
	gap:10px
}
.pcgh-author-main {
	min-width:0
}
.pcgh-author-tabs {
	height:40px;
	background:var(--pcgh-surface);
	border:1px solid var(--pcgh-border);
	border-radius:var(--pcgh-radius-lg);
	display:flex;
	align-items:center;
	padding:0 4px;
	margin-bottom:10px;
	box-shadow:none
}
.pcgh-author-tabs a {
	min-width:76px;
	height:30px;
	border-radius:4px;
	display:inline-flex;
	align-items:center;
	justify-content:center;
	gap:4px;
	color:var(--pcgh-text-3);
	font-size:15px
}
.pcgh-author-tabs a.is-active {
	background:rgba(var(--pcgh-primary-rgb),.12);
	color:var(--pcgh-primary);
	font-weight:700
}
.pcgh-author-tabs small {
	font-size:12px;
	color:var(--pcgh-text-3)
}
.pcgh-author-content {
	background:var(--pcgh-surface);
	border:1px solid var(--pcgh-border);
	border-radius:var(--pcgh-radius-lg);
	min-height:305px;
	padding:18px;
	box-shadow:none
}
.pcgh-author-grid {
	grid-template-columns:repeat(4,minmax(0,1fr))
}
.pcgh-author-empty {
	min-height:265px;
	display:flex;
	flex-direction:column;
	align-items:center;
	justify-content:center;
	gap:14px;
	color:var(--pcgh-text-3);
	font-size:14px;
	text-align:center
}
.pcgh-author-empty span {
	width:144px;
	height:118px;
	position:relative;
	display:block
}
.pcgh-author-empty span::before {
	content:"";
	position:absolute;
	left:35px;
	top:25px;
	width:72px;
	height:72px;
	background:var(--pcgh-surface-2);
	clip-path:polygon(12% 20%,70% 0,100% 24%,82% 100%,15% 100%,0 50%);
	transform:rotate(18deg)
}
.pcgh-author-empty span::after {
	content:"";
	position:absolute;
	left:46px;
	top:44px;
	width:54px;
	height:64px;
	background:rgba(255,255,255,.06);
	box-shadow:-27px 20px 0 -12px rgba(255,255,255,.08),37px 23px 0 -14px rgba(255,255,255,.06)
}
.pcgh-author-empty p {
	margin:0
}
.pcgh-author-side {
	min-width:0
}
.pcgh-author-widget {
	background:var(--pcgh-surface);
	border:1px solid var(--pcgh-border);
	border-radius:var(--pcgh-radius-lg);
	padding:14px;
	box-shadow:none
}
.pcgh-author-widget h3 {
	color:#fff;
	font-size:17px;
	font-weight:800;
	padding-bottom:12px;
	border-bottom:1px solid var(--pcgh-border);
	margin-bottom:10px
}
.pcgh-author-widget ul {
	display:flex;
	flex-direction:column;
	gap:11px
}
.pcgh-author-widget li a {
	display:grid;
	grid-template-columns:42px minmax(0,1fr) auto;
	align-items:center;
	gap:9px
}
.pcgh-author-widget li a > span {
	min-width:0
}
.pcgh-author-widget img,
.pcgh-author-users img {
	border-radius:4px
}
.pcgh-author-widget b {
	display:flex;
	align-items:center;
	gap:5px;
	min-width:0;
	color:var(--pcgh-text);
	font-size:14px;
	line-height:1.2
}
.pcgh-author-widget__name {
	display:block;
	min-width:0;
	overflow:hidden;
	text-overflow:ellipsis;
	white-space:nowrap
}
.pcgh-author-widget em {
	flex:0 0 auto;
	color:#f2bc43;
	border:1px solid rgba(242,188,67,.55);
	border-radius:3px;
	font-style:normal;
	font-size:10px;
	padding:0 3px
}
.pcgh-author-widget small {
	display:block;
	color:var(--pcgh-text-3);
	font-size:12px;
	white-space:nowrap;
	overflow:hidden;
	text-overflow:ellipsis;
	max-width:130px
}
.pcgh-author-widget time {
	color:var(--pcgh-text-3);
	font-size:12px;
	white-space:nowrap
}
.pcgh-author-widget__empty {
	color:var(--pcgh-text-3);
	text-align:center;
	padding:28px 0
}
.pcgh-author-comments {
	display:flex;
	flex-direction:column;
	gap:10px
}
.pcgh-author-comments a {
	border:1px solid var(--pcgh-border);
	border-radius:8px;
	padding:12px;
	background:var(--pcgh-bg)
}
.pcgh-author-comments strong {
	display:block;
	color:var(--pcgh-text);
	margin-bottom:6px
}
.pcgh-author-comments p {
	margin:0 0 7px;
	color:var(--pcgh-text-2)
}
.pcgh-author-comments time {
	color:var(--pcgh-text-3);
	font-size:12px
}
.pcgh-author-users {
	display:grid;
	grid-template-columns:repeat(3,minmax(0,1fr));
	gap:12px
}
.pcgh-author-users a {
	display:grid;
	grid-template-columns:48px minmax(0,1fr);
	gap:10px;
	align-items:center;
	border:1px solid var(--pcgh-border);
	border-radius:8px;
	padding:12px;
	background:var(--pcgh-bg)
}
.pcgh-author-users strong,
.pcgh-author-users small {
	display:block;
	white-space:nowrap;
	overflow:hidden;
	text-overflow:ellipsis
}
.pcgh-author-users strong {
	color:var(--pcgh-text)
}
.pcgh-author-users small {
	color:var(--pcgh-text-3)
}
.pcgh-author-pager {
	margin-top:22px;
	display:flex;
	align-items:center;
	justify-content:center;
	flex-wrap:wrap;
	gap:7px
}
.pcgh-author-pager .page-numbers {
	min-width:34px;
	height:34px;
	padding:0 11px;
	display:inline-flex;
	align-items:center;
	justify-content:center;
	border:1px solid var(--pcgh-border);
	border-radius:8px;
	background:var(--pcgh-bg);
	color:var(--pcgh-text-2);
	font-size:13px;
	font-weight:700;
	line-height:1;
	transition:background .16s ease,border-color .16s ease,color .16s ease,box-shadow .16s ease,transform .16s ease
}
.pcgh-author-pager .page-numbers:hover {
	transform:translateY(-1px);
	border-color:rgba(var(--pcgh-primary-rgb),.55);
	color:var(--pcgh-primary);
	box-shadow:0 10px 22px -16px rgba(var(--pcgh-primary-rgb),.65)
}
.pcgh-author-pager .page-numbers.current {
	background:var(--pcgh-primary);
	border-color:var(--pcgh-primary);
	color:#fff;
	box-shadow:0 10px 24px -14px rgba(var(--pcgh-primary-rgb),.9)
}
.pcgh-author-pager .page-numbers.dots {
	min-width:24px;
	border-color:transparent;
	background:transparent;
	color:var(--pcgh-text-3);
	box-shadow:none;
	transform:none
}
.pcgh-author-pager .prev,
.pcgh-author-pager .next {
	padding:0 13px
}

@media (max-width:900px) {
	.pcgh-uc-profile-editor {
		grid-template-columns:1fr
	}

	.pcgh-uc-profile-field {
		grid-template-columns:1fr;
		gap:8px
	}

	.pcgh-uc-profile-actions {
		gap:12px;
		flex-wrap:wrap
	}

	.pcgh-uc-profile-actions .pcgh-btn {
		flex:1 1 140px
	}

	.pcgh-author-layout {
		grid-template-columns:1fr
	}
	.pcgh-author-card {
		align-items:flex-start;
		flex-direction:column;
		padding:0 16px 14px
	}
	.pcgh-author-card__actions {
		width:100%
	}
	.pcgh-author-btn {
		flex:1
	}
	.pcgh-author-tabs {
		overflow-x:auto;
		justify-content:flex-start
	}
	.pcgh-author-tabs a {
		flex:0 0 auto
	}
	.pcgh-author-grid {
		grid-template-columns:repeat(2,minmax(0,1fr))
	}
	.pcgh-author-side {
		display:none
	}
	.pcgh-author-users {
		grid-template-columns:1fr
	}
}

@media (max-width:520px) {
	.pcgh-author-page {
		padding-top:0
	}
	.pcgh-author-hero {
		height:170px;
		border-radius:0
	}
	.pcgh-author-card__avatar {
		width:88px;
		height:88px;
		margin-top:-58px
	}
	.pcgh-author-card__info h1 {
		font-size:18px
	}
	.pcgh-author-content {
		padding:12px
	}
	.pcgh-author-grid {
		grid-template-columns:repeat(2,minmax(0,1fr))
	}
	.pcgh-author-side {
		display:none
	}
}

.pcgh-uc-tabs em {
	min-width:16px;
	height:16px;
	border-radius:999px;
	background:#ef4444;
	color:#fff;
	display:inline-flex;
	align-items:center;
	justify-content:center;
	font-size:10px;
	font-style:normal;
	line-height:1;
	padding:0 5px;
	margin-left:4px
}
.pcgh-uc-message-card .pcgh-uc-card__head {
	align-items:center
}
.pcgh-uc-notice-filter {
	margin-bottom:14px
}
.pcgh-uc-pm {
	display:grid;
	grid-template-columns:280px minmax(0,1fr);
	border:1px solid var(--pcgh-border);
	border-radius:14px;
	overflow:hidden;
	min-height:560px;
	background:var(--pcgh-bg)
}
.pcgh-uc-pm__threads {
	border-right:1px solid var(--pcgh-border);
	background:rgba(255,255,255,.02);
	overflow:auto
}
.pcgh-uc-pm-thread {
	display:grid;
	grid-template-columns:42px minmax(0,1fr) auto;
	gap:10px;
	align-items:center;
	padding:12px;
	border-bottom:1px solid var(--pcgh-border);
	color:var(--pcgh-text)
}
.pcgh-uc-pm-thread:hover,
.pcgh-uc-pm-thread.is-active {
	background:rgba(var(--pcgh-primary-rgb),.1);
	color:var(--pcgh-text)
}
.pcgh-uc-pm-thread img {
	border-radius:10px
}
.pcgh-uc-pm-thread span,
.pcgh-uc-pm-thread strong,
.pcgh-uc-pm-thread small {
	min-width:0
}
.pcgh-uc-pm-thread strong {
	display:flex;
	align-items:center;
	gap:6px;
	font-size:13px
}
.pcgh-uc-pm-thread strong em {
	min-width:16px;
	height:16px;
	border-radius:999px;
	background:#ef4444;
	color:#fff;
	display:inline-flex;
	align-items:center;
	justify-content:center;
	font-size:10px;
	font-style:normal;
	padding:0 5px
}
.pcgh-uc-pm-thread small {
	display:block;
	color:var(--pcgh-text-3);
	font-size:12px;
	white-space:nowrap;
	overflow:hidden;
	text-overflow:ellipsis;
	margin-top:2px
}
.pcgh-uc-pm-thread time {
	color:var(--pcgh-text-3);
	font-size:11px;
	white-space:nowrap
}
.pcgh-uc-pm__empty {
	color:var(--pcgh-text-3);
	text-align:center;
	padding:38px 12px;
	font-size:13px
}
.pcgh-uc-pm__chat {
	display:grid;
	grid-template-rows:auto minmax(0,1fr) auto;
	min-width:0;
	background:var(--pcgh-surface)
}
.pcgh-uc-pm__chat-head {
	display:flex;
	align-items:center;
	gap:10px;
	padding:12px 14px;
	border-bottom:1px solid var(--pcgh-border);
	background:rgba(255,255,255,.02)
}
.pcgh-uc-pm__chat-head img {
	border-radius:10px
}
.pcgh-uc-pm__chat-head div {
	min-width:0;
	flex:1
}
.pcgh-uc-pm__chat-head strong,
.pcgh-uc-pm__chat-head small {
	display:block;
	white-space:nowrap;
	overflow:hidden;
	text-overflow:ellipsis
}
.pcgh-uc-pm__chat-head small {
	color:var(--pcgh-text-3);
	font-size:12px
}
.pcgh-uc-pm__chat-head a {
	color:var(--pcgh-primary);
	display:inline-flex;
	align-items:center;
	gap:4px;
	font-size:12px
}
.pcgh-uc-pm__messages {
	padding:16px;
	overflow:auto;
	display:flex;
	flex-direction:column;
	gap:14px
}
.pcgh-uc-pm-msg {
	display:flex;
	gap:9px;
	align-items:flex-start;
	max-width:78%
}
.pcgh-uc-pm-msg.is-me {
	align-self:flex-end;
	flex-direction:row-reverse
}
.pcgh-uc-pm-msg img {
	border-radius:50%;
	flex:0 0 auto
}
.pcgh-uc-pm-msg div {
	min-width:0
}
.pcgh-uc-pm-msg p {
	margin:0;
	background:var(--pcgh-bg);
	border:1px solid var(--pcgh-border);
	border-radius:12px 12px 12px 4px;
	padding:9px 11px;
	color:var(--pcgh-text);
	font-size:13px;
	line-height:1.6;
	word-break:break-word
}
.pcgh-uc-pm-msg.is-me p {
	background:var(--pcgh-primary);
	border-color:var(--pcgh-primary);
	color:#fff;
	border-radius:12px 12px 4px 12px
}
.pcgh-uc-pm-msg time {
	display:block;
	color:var(--pcgh-text-3);
	font-size:11px;
	margin-top:4px
}
.pcgh-uc-pm-msg.is-me time {
	text-align:right
}
.pcgh-uc-pm__form {
	border-top:1px solid var(--pcgh-border);
	padding:12px;
	background:rgba(255,255,255,.02)
}
.pcgh-uc-pm__form textarea {
	width:100%;
	resize:none;
	border:1px solid var(--pcgh-border);
	border-radius:10px;
	background:var(--pcgh-bg);
	color:var(--pcgh-text);
	padding:10px 12px;
	outline:none
}
.pcgh-uc-pm__form textarea:focus {
	border-color:var(--pcgh-primary)
}
.pcgh-uc-pm__form > div {
	display:flex;
	align-items:center;
	justify-content:space-between;
	gap:10px;
	margin-top:10px
}

@media (max-width:900px) {
	.pcgh-uc-pm {
		grid-template-columns:1fr;
		min-height:auto
	}
	.pcgh-uc-pm__threads {
		border-right:0;
		border-bottom:1px solid var(--pcgh-border);
		max-height:240px
	}
	.pcgh-uc-pm__messages {
		min-height:340px
	}
}


.pcgh-signin-days {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 8px;
	margin: 14px 0
}

.pcgh-signin-day {
	display: grid;
	place-items: center;
	gap: 4px;
	min-height: 58px;
	padding: 8px 4px;
	border: 1px solid var(--pcgh-border);
	border-radius: 10px;
	background: rgba(255,255,255,.03);
	text-align: center
}

.pcgh-signin-day small {
	color: var(--pcgh-text-3);
	font-size: 11px
}

.pcgh-signin-day b {
	color: var(--pcgh-text);
	font-size: 13px;
	font-weight: 800
}

.pcgh-signin-day.is-done {
	border-color: rgba(var(--pcgh-primary-rgb), .38);
	background: rgba(var(--pcgh-primary-rgb), .12)
}

.pcgh-signin-day.is-done b,
.pcgh-signin-day.is-active b {
	color: var(--pcgh-primary)
}

.pcgh-signin-day.is-active {
	border-color: rgba(var(--pcgh-primary-rgb), .55);
	box-shadow: 0 0 0 3px rgba(var(--pcgh-primary-rgb), .08)
}

.pcgh-signin-day.is-big {
	background: linear-gradient(135deg, rgba(var(--pcgh-primary-rgb), .18), rgba(251,191,36,.12));
	border-color: rgba(251,191,36,.32)
}

.pcgh-signin-recent__empty {
	padding: 10px 0;
	color: var(--pcgh-text-3);
	font-size: 12px;
	text-align: center
}

.pcgh-home-search-section:before {
	z-index: 1;
	background:
		linear-gradient(90deg, rgba(5,9,20,.86), rgba(5,9,20,.54), rgba(5,9,20,.86)),
		linear-gradient(180deg, rgba(0,0,0,.36) 0%, rgba(0,0,0,.28) 48%, rgba(0,0,0,.58) 100%)
}

.pcgh-home-search-section:after {
	z-index: 1;
	left: -18%;
	right: -18%;
	bottom: -92px;
	height: 230px;
	background:
		radial-gradient(ellipse at center, rgba(255,255,255,.18), rgba(124,58,237,.18) 30%, rgba(15,20,25,.62) 56%, rgba(15,20,25,0) 78%),
		linear-gradient(180deg, rgba(15,20,25,0), var(--pcgh-bg) 72%);
	filter: blur(42px)
}

.pcgh-home-search-section__video {
	filter: saturate(1.04) brightness(.78)
}

.pcgh-home-search-cards {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
	max-width: 960px;
	margin: 24px auto 0
}

.pcgh-home-search-card {
	position: relative;
	display: grid;
	grid-template-columns: 36px minmax(0, 1fr) 28px;
	align-items: center;
	gap: 10px;
	min-height: 64px;
	padding: 12px 12px;
	border: 1px solid rgba(255,255,255,.08);
	border-radius: 10px;
	background: rgba(20,24,31,.78);
	box-shadow: 0 12px 32px rgba(0,0,0,.24);
	backdrop-filter: blur(12px);
	text-align: left;
	overflow: hidden;
	transition: transform .18s ease, border-color .18s ease, background .18s ease
}

.pcgh-home-search-card:hover {
	transform: translateY(-2px);
	border-color: rgba(var(--pcgh-primary-rgb), .38);
	background: rgba(25,30,39,.9)
}

.pcgh-home-search-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: rgba(14,165,233,.16);
	color: #38bdf8
}

.pcgh-home-search-card__icon i,
.pcgh-home-search-card__icon svg {
	width: 17px;
	height: 17px
}

.pcgh-home-search-card__body {
	display: grid;
	gap: 3px;
	min-width: 0
}

.pcgh-home-search-card__body strong {
	display: flex;
	align-items: center;
	gap: 6px;
	min-width: 0;
	color: #f8fafc;
	font-size: 14px;
	font-weight: 900;
	line-height: 1.15
}

.pcgh-home-search-card__body strong em {
	padding: 1px 5px;
	border-radius: 999px;
	background: #ef4444;
	color: #fff;
	font-size: 12px;
	font-style: normal;
	font-weight: 900;
	line-height: 1.35
}

.pcgh-home-search-card__body small {
	color: rgba(203,213,225,.72);
	font-size: 11px;
	line-height: 1.35;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis
}

.pcgh-home-search-card__tag {
	position: relative;
	width: 22px;
	height: 28px;
	border-radius: 4px 4px 6px 6px;
	background: linear-gradient(135deg, #fb7185, #f43f5e);
	transform: rotate(-18deg);
	box-shadow: 0 7px 16px rgba(244,63,94,.28)
}

.pcgh-home-search-card__tag:before {
	content: '';
	position: absolute;
	left: 7px;
	top: 5px;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: rgba(255,255,255,.85)
}

@media (max-width: 980px) {
	.pcgh-home-search-cards {
		grid-template-columns: repeat(2, minmax(0, 1fr))
	}
}

@media (max-width: 640px) {
	.pcgh-home-search-cards {
		grid-template-columns: 1fr;
		margin-top: 18px
	}

	.pcgh-home-search-card {
		min-height: 58px
	}
}

.pcgh-home-signin,
.pcgh-side-card:has(.pcgh-signin-days) {
	background: #121922;
	border-color: rgba(148,163,184,.08);
	box-shadow: none
}

.pcgh-home-signin__head h3,
.pcgh-side-card:has(.pcgh-signin-days) .pcgh-side-card__head h3 {
	color: #f8fafc
}

.pcgh-home-signin__head h3 i,
.pcgh-home-signin__head h3 svg,
.pcgh-side-card:has(.pcgh-signin-days) .pcgh-side-card__head i,
.pcgh-side-card:has(.pcgh-signin-days) .pcgh-side-card__head svg {
	color: #fff
}

.pcgh-signin-foot {
	margin: 16px 0 14px;
	color: #89a3c2;
	font-size: 13px
}

.pcgh-signin-foot b {
	color: #60a5fa;
	font-weight: 900
}

.pcgh-signin-foot span:last-child i,
.pcgh-signin-foot span:last-child svg {
	width: 15px;
	height: 15px;
	color: #fbbf24
}

.pcgh-signin-days {
	grid-template-columns: repeat(7, minmax(0, 1fr));
	gap: 8px;
	margin: 14px 0 16px
}

.pcgh-signin-day {
	min-height: 78px;
	padding: 10px 6px 9px;
	border-radius: 7px;
	border: 1px solid rgba(148,163,184,.1);
	background: #19222c;
	box-shadow: none
}

.pcgh-signin-day small {
	color: #728196;
	font-size: 12px;
	line-height: 1
}

.pcgh-signin-day__icon {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: transparent;
	color: #e5edf8
}

.pcgh-signin-day__icon i,
.pcgh-signin-day__icon svg {
	width: 28px;
	height: 28px;
	stroke-width: 2.3
}

.pcgh-signin-day b {
	color: #dbeafe;
	font-size: 13px;
	font-weight: 700
}

.pcgh-signin-day.is-done,
.pcgh-signin-day.is-active {
	background: #122842;
	border-color: #3b82f6;
	box-shadow: none
}

.pcgh-signin-day.is-done .pcgh-signin-day__icon,
.pcgh-signin-day.is-active .pcgh-signin-day__icon {
	background: transparent;
	color: #3b82f6
}

.pcgh-signin-day.is-done b,
.pcgh-signin-day.is-active b {
	color: #e0f2fe
}

.pcgh-signin-day.is-big .pcgh-signin-day__icon,
.pcgh-signin-day.is-big.is-done .pcgh-signin-day__icon {
	background: transparent;
	color: #ef4444
}

.pcgh-signin-day.is-big {
	background: #19222c;
	border-color: rgba(148,163,184,.1)
}

.pcgh-signin-day.is-big.is-done,
.pcgh-signin-day.is-big.is-active {
	background: #122842;
	border-color: #3b82f6
}

@media (max-width: 760px) {
	.pcgh-signin-days {
		grid-template-columns: repeat(2, minmax(0, 1fr))
	}
}


.pcgh-signin-widget .pcgh-side-card__head h3,
.pcgh-signin-widget .widget-title,
.pcgh-signin-widget h3 {
	color: #f8fafc
}

.pcgh-signin-widget .pcgh-side-card__head i,
.pcgh-signin-widget .pcgh-side-card__head svg,
.pcgh-signin-widget .widget-title i,
.pcgh-signin-widget .widget-title svg {
	color: #fff
}

.pcgh-signin-widget .pcgh-home-signin-rewards {
	margin: 0px 0 14px;
	padding: 18px;
	background: rgba(15,23,42,.58);
	border: 1px solid rgba(148,163,184,.1);
	border-radius: 18px;
	box-shadow: inset 0 1px 0 rgba(255,255,255,.04)
}

.pcgh-home-signin-points {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	color: var(--pcgh-text-3);
	font-size: 12px;
	font-weight: 700
}

.pcgh-home-signin-points i,
.pcgh-home-signin-points svg {
	width: 15px;
	height: 15px;
	color: #fbbf24
}

.pcgh-home-signin-points b {
	color: #fbbf24;
	font-weight: 900
}

.pcgh-signin-widget .pcgh-uc-signin-rewards__grid {
	grid-template-columns: repeat(7, minmax(0, 1fr));
	gap: 8px
}

.pcgh-signin-widget .pcgh-uc-signin-reward {
	min-height: 76px;
	padding: 10px 6px
}

@media (max-width: 760px) {
	.pcgh-signin-widget .pcgh-uc-signin-rewards__head {
		align-items: flex-start;
		gap: 10px;
		flex-direction: column
	}

	.pcgh-signin-widget .pcgh-uc-signin-rewards__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr))
	}
}

.pcgh-home-search-section:before {
	background:
		linear-gradient(90deg, rgba(5,9,20,.58), rgba(5,9,20,.24), rgba(5,9,20,.58)),
		linear-gradient(180deg, rgba(0,0,0,.18) 0%, rgba(0,0,0,.12) 48%, rgba(0,0,0,.2) 100%)
}

.pcgh-home-search-section:after {
	display: none
}

.pcgh-home-search-section__video {
	filter: saturate(1.04) brightness(.92)
}

.pcgh-home-search-section .pcgh-home-search-cards {
	width: 100%;
	max-width: none;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
	margin: 46px 0 0
}

.pcgh-home-search-section .pcgh-home-search-card {
	grid-template-columns: 46px minmax(0, 1fr) 34px;
	gap: 14px;
	min-height: 82px;
	padding: 16px 18px;
	border-radius: 12px
}

.pcgh-home-search-section .pcgh-home-search-card__icon {
	width: 40px;
	height: 40px
}

.pcgh-home-search-section .pcgh-home-search-card__icon i,
.pcgh-home-search-section .pcgh-home-search-card__icon svg {
	width: 21px;
	height: 21px
}

.pcgh-home-search-section .pcgh-home-search-card__body strong {
	font-size: 16px
}

.pcgh-home-search-section .pcgh-home-search-card__body small {
	font-size: 12px
}

.pcgh-home-search-section .pcgh-home-search-card__tag {
	width: 26px;
	height: 32px
}

.pcgh-signin-widget .pcgh-home-signin-rewards .pcgh-uc-signin-reward span {
	width: 20px;
	height: 20px
}

.pcgh-signin-widget .pcgh-home-signin-rewards .pcgh-uc-signin-reward span i[data-lucide],
.pcgh-signin-widget .pcgh-home-signin-rewards .pcgh-uc-signin-reward span svg {
	width: 12px;
	height: 12px
}

.pcgh-signin-widget .pcgh-home-signin-rewards .pcgh-uc-signin-reward.is-big span i[data-lucide],
.pcgh-signin-widget .pcgh-home-signin-rewards .pcgh-uc-signin-reward.is-big span svg {
	width: 13px;
	height: 13px
}

@media (max-width: 980px) {
	.pcgh-home-search-section .pcgh-home-search-cards {
		grid-template-columns: repeat(2, minmax(0, 1fr))
	}
}

@media (max-width: 640px) {
	.pcgh-home-search-section .pcgh-home-search-cards {
		grid-template-columns: 1fr;
		gap: 12px;
		margin-top: 22px
	}

	.pcgh-home-search-section .pcgh-home-search-card {
		min-height: 72px;
		padding: 14px 16px
	}
}

.pcgh-home-top {
	--pcgh-home-hero-signin-height: 380px
}

.pcgh-home-top .pcgh-home-hero,
.pcgh-home-top .pcgh-home-signin {
	min-height: var(--pcgh-home-hero-signin-height)
}

.pcgh-home-top .pcgh-home-hero__slides {
	min-height: var(--pcgh-home-hero-signin-height)
}

.pcgh-home-search-section:before {
	background:
		linear-gradient(90deg, rgba(5,9,20,var(--pcgh-home-search-mask,.42)), rgba(5,9,20,calc(var(--pcgh-home-search-mask,.42) * .46)), rgba(5,9,20,var(--pcgh-home-search-mask,.42))),
		linear-gradient(180deg, rgba(0,0,0,calc(var(--pcgh-home-search-mask,.42) * .55)) 0%, rgba(0,0,0,calc(var(--pcgh-home-search-mask,.42) * .32)) 48%, rgba(0,0,0,calc(var(--pcgh-home-search-mask,.42) * .62)) 100%)
}

.pcgh-home-search-section__video {
	filter: saturate(1.04)
}

.pcgh-uc-content {
	padding: 0;
	overflow: hidden;
	background: rgba(10,16,26,.92)
}

.pcgh-uc-content__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 0 18px;
	border-bottom: 1px solid rgba(148,163,184,.12)
}

.pcgh-uc-content-tabs {
	display: flex;
	align-items: center;
	gap: 26px;
	overflow-x: auto
}

.pcgh-uc-content-tabs a {
	position: relative;
	padding: 18px 0 15px;
	color: var(--pcgh-text-3);
	font-size: 14px;
	white-space: nowrap
}

.pcgh-uc-content-tabs a small {
	font-size: 12px;
	color: inherit
}

.pcgh-uc-content-tabs a.is-active {
	color: #3b82f6;
	font-weight: 800
}

.pcgh-uc-content-tabs a.is-active:after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 2px;
	border-radius: 999px;
	background: #3b82f6;
	box-shadow: 0 0 16px rgba(59,130,246,.55)
}

.pcgh-uc-content-sort {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	color: var(--pcgh-text-3);
	font-size: 13px;
	white-space: nowrap
}

.pcgh-uc-content-sort i,
.pcgh-uc-content-sort svg {
	width: 14px;
	height: 14px
}

.pcgh-uc-content-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 16px;
	padding: 18px
}

.pcgh-uc-content-card {
	overflow: hidden;
	border-radius: 10px;
	background: rgba(17,25,38,.94);
	border: 1px solid rgba(148,163,184,.1);
	box-shadow: 0 14px 34px rgba(0,0,0,.18);
	transition: transform .18s ease, border-color .18s ease
}

.pcgh-uc-content-card:hover {
	transform: translateY(-3px);
	border-color: rgba(59,130,246,.35)
}

.pcgh-uc-content-card__cover {
	position: relative;
	display: block;
	padding-top: 58%;
	background: #0f172a center/cover no-repeat
}

.pcgh-uc-content-card__cover span {
	position: absolute;
	left: 10px;
	top: 10px;
	padding: 4px 8px;
	border-radius: 6px;
	background: rgba(37,99,235,.92);
	color: #dbeafe;
	font-size: 11px;
	font-weight: 800
}

.pcgh-uc-content-card__body {
	padding: 11px 12px 12px
}

.pcgh-uc-content-card__body h3 {
	margin: 0 0 8px;
	font-size: 14px;
	line-height: 1.4;
	font-weight: 700
}

.pcgh-uc-content-card__body h3 a {
	color: #e5edf8;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	overflow: hidden
}

.pcgh-uc-content-card__desc {
	display: flex;
	justify-content: space-between;
	gap: 8px;
	color: #8190a7;
	font-size: 12px
}

.pcgh-uc-content-card__desc em {
	font-style: normal;
	color: #9aa8bd
}

.pcgh-uc-content-card__rating {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	color: #f59e0b;
	font-weight: 800
}

.pcgh-uc-content-card__rating i,
.pcgh-uc-content-card__rating svg {
	width: 13px;
	height: 13px;
	fill: currentColor
}

.pcgh-uc-content-card footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 12px;
	color: #7b879a;
	font-size: 12px
}

.pcgh-uc-content-card footer span {
	display: inline-flex;
	align-items: center;
	gap: 5px
}

.pcgh-uc-content-card footer i,
.pcgh-uc-content-card footer svg {
	width: 13px;
	height: 13px
}

.pcgh-uc-content-subtabs {
	display: flex;
	gap: 10px;
	padding: 16px 18px 0
}

.pcgh-uc-content-subtabs a {
	padding: 8px 12px;
	border-radius: 999px;
	background: rgba(15,23,42,.72);
	border: 1px solid rgba(148,163,184,.12);
	color: var(--pcgh-text-3);
	font-size: 13px
}

.pcgh-uc-content-subtabs a.is-active {
	color: #fff;
	background: rgba(37,99,235,.25);
	border-color: rgba(59,130,246,.48)
}

.pcgh-uc-comment-list {
	display: grid;
	gap: 12px;
	padding: 18px
}

.pcgh-uc-comment-list a {
	display: block;
	padding: 14px 16px;
	border-radius: 12px;
	background: rgba(15,23,42,.72);
	border: 1px solid rgba(148,163,184,.1)
}

.pcgh-uc-comment-list strong {
	color: #e5edf8;
	font-size: 14px
}

.pcgh-uc-comment-list p {
	margin: 8px 0;
	color: var(--pcgh-text-2);
	font-size: 13px;
	line-height: 1.7
}

.pcgh-uc-comment-list time {
	color: var(--pcgh-text-3);
	font-size: 12px
}

.pcgh-uc-user-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
	padding: 18px
}

.pcgh-uc-user-chip {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 14px;
	border-radius: 12px;
	background: rgba(15,23,42,.72);
	border: 1px solid rgba(148,163,184,.1)
}

.pcgh-uc-user-chip img {
	width: 48px;
	height: 48px;
	border-radius: 50%
}

.pcgh-uc-user-chip span {
	display: grid;
	gap: 4px;
	min-width: 0
}

.pcgh-uc-user-chip strong {
	color: #e5edf8
}

.pcgh-uc-user-chip small {
	color: var(--pcgh-text-3);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis
}

.pcgh-uc-content .pcgh-uc-pager {
	padding: 0 18px 22px
}

@media (max-width: 1100px) {
	.pcgh-uc-content-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr))
	}
}

@media (max-width: 760px) {
	.pcgh-uc-content__head {
		align-items: flex-start;
		flex-direction: column;
		padding: 0 14px 12px
	}

	.pcgh-uc-content-grid,
	.pcgh-uc-user-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 10px;
		padding: 14px
	}
}

@media (max-width: 520px) {
	.pcgh-uc-content-grid,
	.pcgh-uc-user-grid {
		grid-template-columns: 1fr
	}
}


.pcgh-signin-widget .pcgh-widget-signin-summary {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
	margin: 12px 0 14px
}

.pcgh-signin-widget .pcgh-widget-signin-summary__item {
	display: grid;
	grid-template-columns: 34px minmax(0, 1fr);
	grid-template-areas: 'icon label' 'icon value';
	align-items: center;
	column-gap: 10px;
	min-width: 0;
	padding: 12px;
	border-radius: 14px;
	background: rgba(15,23,42,.58);
	border: 1px solid rgba(148,163,184,.1)
}

.pcgh-signin-widget .pcgh-widget-signin-summary__item span {
	grid-area: icon;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 12px;
	color: #fbbf24;
	background: rgba(251,191,36,.12)
}

.pcgh-signin-widget .pcgh-widget-signin-summary__item span i,
.pcgh-signin-widget .pcgh-widget-signin-summary__item span svg {
	width: 17px;
	height: 17px
}

.pcgh-signin-widget .pcgh-widget-signin-summary__item small {
	grid-area: label;
	min-width: 0;
	color: #94a3b8;
	font-size: 12px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis
}

.pcgh-signin-widget .pcgh-widget-signin-summary__item strong {
	grid-area: value;
	min-width: 0;
	color: #f8fafc;
	font-size: clamp(14px, 4vw, 18px);
	line-height: 1.2;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis
}

.pcgh-signin-widget .pcgh-widget-signin-summary__item b {
	color: #fbbf24;
	font-weight: 900
}

.pcgh-signin-widget .pcgh-uc-signin-rewards__grid {
	display: none
}

@container (max-width: 280px) {
	.pcgh-signin-widget .pcgh-widget-signin-summary {
		grid-template-columns: 1fr
	}
}

@media (max-width: 420px) {
	.pcgh-signin-widget .pcgh-widget-signin-summary {
		grid-template-columns: 1fr
	}
}

.pcgh-signin-widget.pcgh-signin-widget--home .pcgh-uc-signin-rewards__grid {
	display: grid
}

.pcgh-signin-widget.pcgh-signin-widget--home .pcgh-widget-signin-summary {
	display: none
}

.pcgh-home-signin .pcgh-signin-recent__list {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	grid-template-columns: none;
	overflow-x: auto;
	overflow-y: hidden;
	padding-bottom: 2px;
	scrollbar-width: thin;
	scrollbar-color: rgba(148,163,184,.5) transparent
}

.pcgh-home-signin .pcgh-signin-recent__item {
	flex: 1 0 0;
	min-width: 54px;
	max-width: 72px
}

.pcgh-home-signin .pcgh-signin-recent__avatar {
	width: clamp(30px, 3.2vw, 36px);
	height: clamp(30px, 3.2vw, 36px)
}

.pcgh-home-signin .pcgh-signin-recent__item:hover .pcgh-signin-recent__avatar {
	transform: none
}

.pcgh-home-signin .pcgh-signin-recent__name {
	width: 100%
}

html[data-pcgh-theme-resolved="light"] .pcgh-home-signin .pcgh-signin-recent__list {
	scrollbar-color: rgba(148,163,184,.55) transparent
}

.pcgh-home-hero__nav {
	position: absolute;
	top: 50%;
	z-index: 3;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border: 1px solid rgba(255,255,255,.2);
	border-radius: 50%;
	color: #fff;
	background: rgba(15,23,42,.42);
	box-shadow: 0 10px 24px rgba(0,0,0,.18);
	backdrop-filter: blur(10px);
	transform: translateY(-50%);
	cursor: pointer;
	transition: .18s
}

.pcgh-home-hero__nav:hover {
	background: rgba(59,130,246,.86);
	border-color: rgba(147,197,253,.72)
}

.pcgh-home-hero__nav--prev {
	left: 16px
}

.pcgh-home-hero__nav--next {
	right: 16px
}

.pcgh-home-hero__nav i,
.pcgh-home-hero__nav svg {
	width: 19px;
	height: 19px
}

.pcgh-home-new-section .pcgh-home-new__star i[data-lucide],
.pcgh-home-new-section .pcgh-home-new__star svg {
	width: 14px;
	height: 14px;
	stroke-width: 2
}

@media (max-width: 720px) {
	.pcgh-home-new-section .pcgh-home-new__track {
		gap: 10px;
		padding: 3px 1px
	}

	.pcgh-home-new-section .pcgh-home-new__card {
		flex-basis: calc((100% - -150px)/3);
		border-radius: 12px
	}

	.pcgh-home-new-section .pcgh-home-new__body {
		padding: 7px 8px
	}

	.pcgh-home-new-section .pcgh-home-new__body strong {
		font-size: 12px;
		margin-bottom: 5px
	}

	.pcgh-home-new-section .pcgh-home-new__meta {
		gap: 5px;
		font-size: 10px
	}

	.pcgh-home-new-section .pcgh-home-new__score,
	.pcgh-home-new-section .pcgh-home-new__score-num {
		font-size: 10px;
		line-height: 10px
	}

	.pcgh-home-new-section .pcgh-home-new__cat {
		display: none
	}

	.pcgh-home-new-section .pcgh-home-new__cover .pcgh-badge {
		font-size: 10px;
		padding: 3px 6px;
		top: 6px;
		left: 6px
	}

	.pcgh-home-new-section .pcgh-home-new__nav {
		display: none
	}

	.pcgh-home-hero__nav {
		width: 32px;
		height: 32px
	}

	.pcgh-home-hero__nav--prev {
		left: 10px
	}

	.pcgh-home-hero__nav--next {
		right: 10px
	}
}

.pcgh-home-new-section .pcgh-home-new__size,
.pcgh-home-new-section .pcgh-home-new__score,
.pcgh-game-card .pcgh-game-card__size,
.pcgh-game-card .pcgh-score,
.pcgh-libcard .pcgh-libcard__size,
.pcgh-libcard .pcgh-libcard__score {
	display: inline-flex;
	align-items: center
}

.pcgh-home-new-section .pcgh-home-new__size,
.pcgh-game-card .pcgh-game-card__size,
.pcgh-libcard .pcgh-libcard__size {
	gap: 4px;
	white-space: nowrap
}

.pcgh-home-new-section .pcgh-home-new__size-icon,
.pcgh-game-card .pcgh-game-card__size-icon,
.pcgh-libcard .pcgh-libcard__size-icon,
.pcgh-game-card .pcgh-game-card__score-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	line-height: 1
}

.pcgh-home-new-section .pcgh-home-new__size-icon i,
.pcgh-home-new-section .pcgh-home-new__size-icon svg,
.pcgh-game-card .pcgh-game-card__size-icon i,
.pcgh-game-card .pcgh-game-card__size-icon svg,
.pcgh-libcard .pcgh-libcard__size-icon i,
.pcgh-libcard .pcgh-libcard__size-icon svg {
	width: 12px;
	height: 12px;
	stroke-width: 2
}

.pcgh-game-card .pcgh-game-card__score-icon i,
.pcgh-game-card .pcgh-game-card__score-icon svg {
	width: 12px;
	height: 12px;
	fill: currentColor;
	stroke-width: 2
}

.pcgh-libcard .pcgh-libcard__score i.ti {
	font-size: 11px
}

@media (max-width: 720px) {
	.pcgh-home-new-section .pcgh-home-new__cat {
		display: none
	}

	.pcgh-home-new-section .pcgh-home-new__size {
		display: inline-flex;
		font-size: 10px;
		line-height: 10px;
		margin-left: 0
	}

	.pcgh-home-new-section .pcgh-home-new__size-icon i,
	.pcgh-home-new-section .pcgh-home-new__size-icon svg,
	.pcgh-home-new-section .pcgh-home-new__star i[data-lucide],
	.pcgh-home-new-section .pcgh-home-new__star svg {
		width: 10px;
		height: 10px
	}
}

@media (max-width: 720px) {
	.pcgh-home-new-section .pcgh-home-new__meta {
		flex-wrap: wrap
	}

	.pcgh-home-new-section .pcgh-home-new__score,
	.pcgh-home-new-section .pcgh-home-new__size {
		max-width: 100%;
		overflow: hidden;
		text-overflow: ellipsis
	}
}

.pcgh-growth-hero {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr) 190px 220px;
	gap: 22px;
	align-items: center;
	padding: 28px;
	border: 1px solid rgba(148,163,184,.12);
	border-radius: 20px;
	background: radial-gradient(circle at 58% 18%, rgba(59,130,246,.2), transparent 34%), linear-gradient(135deg, rgba(15,23,42,.96), rgba(2,6,23,.96));
	overflow: hidden
}

.pcgh-growth-hero__user {
	display: flex;
	align-items: center;
	gap: 20px;
	min-width: 0
}

.pcgh-growth-hero__avatar {
	width: 96px;
	height: 96px;
	border-radius: 50%;
	object-fit: cover;
	border: 3px solid rgba(255,255,255,.22);
}

.pcgh-growth-hero__name {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 8px;
	color: #f8fafc
}

.pcgh-growth-hero__name strong {
	font-size: 22px;
	font-weight: 800
}

.pcgh-growth-hero__name span,
.pcgh-growth-hero__rule a {
	display: inline-flex;
	align-items: center;
	gap: 5px
}

.pcgh-growth-hero__name span {
	padding: 3px 9px;
	border-radius: 999px;
	color: var(--lv-c);
	background: color-mix(in srgb, var(--lv-c) 16%, transparent);
	border: 1px solid color-mix(in srgb, var(--lv-c) 42%, transparent);
	font-size: 12px;
	font-weight: 700
}

.pcgh-growth-hero__name span i,
.pcgh-growth-hero__name span svg,
.pcgh-growth-hero__rule a i,
.pcgh-growth-hero__rule a svg {
	width: 13px;
	height: 13px
}

.pcgh-growth-hero__exp,
.pcgh-growth-hero p,
.pcgh-growth-hero__rule p {
	color: #94a3b8;
	font-size: 13px
}

.pcgh-growth-hero p {
	margin: 8px 0 0
}

.pcgh-growth-hero p b {
	color: #60a5fa
}

.pcgh-growth-progress {
	width: min(430px, 100%);
	height: 8px;
	margin-top: 9px;
	border-radius: 999px;
	background: rgba(148,163,184,.18);
	overflow: hidden
}

.pcgh-growth-progress span {
	display: block;
	height: 100%;
	border-radius: inherit;
	box-shadow: 0 0 18px currentColor
}

.pcgh-growth-hero__badge {
	display: grid;
	justify-items: center;
	gap: 10px;
	padding: 0 18px;
	border-left: 1px solid rgba(148,163,184,.12);
	border-right: 1px solid rgba(148,163,184,.12);
	color: var(--lv-c)
}

.pcgh-growth-hero__badge span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 82px;
	height: 52px;
}

.pcgh-growth-hero__badge span i,
.pcgh-growth-hero__badge span svg {
	width: 42px;
	height: 42px
}

.pcgh-growth-hero__badge strong {
	font-size: 15px
}

.pcgh-growth-hero__rule strong,
.pcgh-growth-card h3 {
	color: #f8fafc
}

.pcgh-growth-hero__rule p {
	margin: 8px 0 12px;
	line-height: 1.7
}

.pcgh-growth-hero__rule a {
	color: #60a5fa;
	font-size: 13px;
	font-weight: 700
}

.pcgh-growth-layout {
	display: grid;
	grid-template-columns: minmax(0, 1.32fr) minmax(300px, .68fr);
	gap: 16px
}

.pcgh-growth-main,
.pcgh-growth-side {
	display: grid;
	gap: 16px;
	align-content: start
}

.pcgh-growth-card {
	padding: 22px;
	border: 1px solid rgba(148,163,184,.12);
	border-radius: 18px;
	background: linear-gradient(180deg, rgba(15,23,42,.92), rgba(2,6,23,.94));
	box-shadow: 0 18px 44px rgba(0,0,0,.18)
}

.pcgh-growth-card header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 18px
}

.pcgh-growth-card h3 {
	margin: 0;
	font-size: 16px
}

.pcgh-growth-card header a {
	display: inline-flex;
	align-items: center;
	gap: 2px;
	color: #60a5fa;
	font-size: 12px
}

.pcgh-growth-card header a i,
.pcgh-growth-card header a svg {
	width: 13px;
	height: 13px
}

.pcgh-growth-timeline {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	position: relative;
	gap: 12px
}

.pcgh-growth-timeline:before {
	content: '';
	position: absolute;
	left: 8%;
	right: 8%;
	top: 30px;
	height: 2px;
	background: linear-gradient(90deg, #334155, #64748b, #334155)
}

.pcgh-growth-step {
	position: relative;
	z-index: 1;
	display: grid;
	justify-items: center;
	gap: 7px;
	text-align: center;
	color: #94a3b8
}

.pcgh-growth-step span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 58px;
	height: 58px;
	border-radius: 50%;
	background: #0f172a;
	border: 2px solid #334155;
	box-shadow: 0 0 0 6px rgba(15,23,42,.9)
}

.pcgh-growth-step span i,
.pcgh-growth-step span svg {
	width: 24px;
	height: 24px
}

.pcgh-growth-step.is-active span,
.pcgh-growth-step.is-done span {
	color: var(--lv-c);
	border-color: var(--lv-c);
	box-shadow: 0 0 0 6px rgba(15,23,42,.9), 0 0 22px color-mix(in srgb, var(--lv-c) 42%, transparent)
}

.pcgh-growth-step strong {
	color: #e2e8f0;
	font-size: 13px
}

.pcgh-growth-step.is-active strong {
	color: var(--lv-c)
}

.pcgh-growth-step small {
	font-size: 11px
}

.pcgh-growth-task-list {
	display: grid;
	gap: 10px
}

.pcgh-growth-task {
	display: grid;
	grid-template-columns: 42px minmax(0, 1fr) auto auto;
	align-items: center;
	gap: 12px;
	padding: 13px 14px;
	border-radius: 14px;
	background: rgba(15,23,42,.72);
	border: 1px solid rgba(148,163,184,.08)
}

.pcgh-growth-task__icon,
.pcgh-growth-privs span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 14px;
	background: rgba(59,130,246,.14);
	color: #60a5fa
}

.pcgh-growth-task__icon {
	width: 42px;
	height: 42px
}

.pcgh-growth-task__icon i,
.pcgh-growth-task__icon svg,
.pcgh-growth-privs span i,
.pcgh-growth-privs span svg {
	width: 20px;
	height: 20px
}

.pcgh-growth-task strong,
.pcgh-growth-privs strong {
	display: block;
	color: #e5edf8;
	font-size: 13px
}

.pcgh-growth-task small,
.pcgh-growth-privs small,
.pcgh-growth-tips li {
	color: #8ea0b8;
	font-size: 12px
}

.pcgh-growth-task em {
	color: #4ade80;
	font-style: normal;
	font-size: 12px;
	font-weight: 800;
	white-space: nowrap
}

.pcgh-growth-task b {
	min-width: 60px;
	padding: 5px 10px;
	border-radius: 999px;
	background: rgba(59,130,246,.12);
	color: #93c5fd;
	font-size: 12px;
	text-align: center
}

.pcgh-growth-task.is-done b {
	background: rgba(34,197,94,.14);
	color: #86efac
}

.pcgh-growth-privs {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px
}

.pcgh-growth-privs div {
	padding: 14px;
	border-radius: 15px;
	background: rgba(15,23,42,.66);
	border: 1px solid rgba(148,163,184,.08)
}

.pcgh-growth-privs span {
	width: 42px;
	height: 42px;
	margin-bottom: 10px
}

.pcgh-growth-tips {
	position: relative;
	overflow: hidden
}

.pcgh-growth-tips ul {
	position: relative;
	z-index: 1;
	margin: 0;
	padding-left: 18px;
	line-height: 1.9
}

.pcgh-growth-tips__star {
	position: absolute;
	right: 24px;
	bottom: 20px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 92px;
	height: 92px;
	border-radius: 50%;
	color: #c4b5fd;
	background: radial-gradient(circle, rgba(99,102,241,.42), transparent 68%);
	opacity: .88
}

.pcgh-growth-tips__star i,
.pcgh-growth-tips__star svg {
	width: 46px;
	height: 46px;
	fill: currentColor
}

@media (max-width: 980px) {
	.pcgh-growth-hero,
	.pcgh-growth-layout {
		grid-template-columns: 1fr
	}

	.pcgh-growth-hero__badge {
		border: 0;
		padding: 0
	}
}

@media (max-width: 640px) {
	.pcgh-growth-hero,
	.pcgh-growth-card {
		padding: 16px;
		border-radius: 16px
	}

	.pcgh-growth-hero__user,
	.pcgh-growth-task {
		grid-template-columns: 1fr;
		display: grid
	}

	.pcgh-growth-hero__avatar {
		width: 74px;
		height: 74px
	}

	.pcgh-growth-timeline,
	.pcgh-growth-privs {
		grid-template-columns: repeat(2, minmax(0, 1fr))
	}

	.pcgh-growth-timeline:before {
		display: none
	}
}

.pcgh-growth-hero,
.pcgh-growth-card {
	background: transparent;
	border-color: transparent;
	box-shadow: none
}

.pcgh-author-edit-btn {
	min-height: 46px;
	padding: 0 24px;
	font-size: 16px;
	font-weight: 800;
	border-radius: 999px
}

.pcgh-author-edit-btn i,
.pcgh-author-edit-btn svg {
	width: 18px;
	height: 18px
}

.pcgh-growth-task,
.pcgh-growth-privs div {
	background: transparent;
	border-color: transparent
}

.pcgh-growth-hero {
	background: radial-gradient(circle at 58% 18%, rgba(59,130,246,.2), transparent 34%), linear-gradient(135deg, rgba(15,23,42,.96), rgba(2,6,23,.96));
	border-color: rgba(148,163,184,.12);
	box-shadow: none
}

.pcgh-growth-card {
	background: linear-gradient(180deg, rgba(15,23,42,.92), rgba(2,6,23,.94));
	border-color: rgba(148,163,184,.12);
	box-shadow: 0 18px 44px rgba(0,0,0,.18)
}

.pcgh-growth-task {
	background: rgba(15,23,42,.72);
	border-color: rgba(148,163,184,.08)
}

.pcgh-growth-privs div {
	background: rgba(15,23,42,.66);
	border-color: rgba(148,163,184,.08)
}

.pcgh-growth-tips li {
	display: flex;
	align-items: center;
	gap: 8px;
	list-style: none
}

.pcgh-growth-tips ul {
	padding-left: 0
}

.pcgh-growth-tips li i,
.pcgh-growth-tips li svg {
	flex: 0 0 auto;
	width: 14px;
	height: 14px;
	color: #22c55e;
	stroke-width: 3
}

.pcgh-author-center-btn,
.pcgh-author-edit-btn {
	min-height: 38px;
	padding: 0 16px;
	font-size: 14px;
	font-weight: 700;
	border-radius: 999px
}

.pcgh-author-center-btn i,
.pcgh-author-center-btn svg,
.pcgh-author-edit-btn i,
.pcgh-author-edit-btn svg {
	width: 15px;
	height: 15px
}

html[data-pcgh-theme-resolved="light"] .pcgh-header {
	background: #fff
}

@media (min-width:769px) and (hover:hover) and (pointer:fine) {
	html[data-pcgh-theme-resolved="light"] .pcgh-header.is-home-search-transparent {
		background: transparent;
		border-bottom-color: transparent;
		backdrop-filter: none
	}

	html[data-pcgh-theme-resolved="light"] .pcgh-header.is-home-search-transparent .pcgh-logo,
	html[data-pcgh-theme-resolved="light"] .pcgh-header.is-home-search-transparent .pcgh-nav__list li a,
	html[data-pcgh-theme-resolved="light"] .pcgh-header.is-home-search-transparent .pcgh-header__actions,
	html[data-pcgh-theme-resolved="light"] .pcgh-header.is-home-search-transparent .pcgh-icon-btn,
	html[data-pcgh-theme-resolved="light"] .pcgh-header.is-home-search-transparent .pcgh-header__login-btn {
		color: rgba(255,255,255,.9)
	}

	html[data-pcgh-theme-resolved="light"] .pcgh-header.is-home-search-transparent .pcgh-logo__text small,
	html[data-pcgh-theme-resolved="light"] .pcgh-header.is-home-search-transparent .pcgh-search__icon {
		color: rgba(255,255,255,.62)
	}

	html[data-pcgh-theme-resolved="light"] .pcgh-header.is-home-search-transparent .pcgh-nav__list li a:hover {
		color: #fff;
		background: rgba(255,255,255,.12)
	}

	html[data-pcgh-theme-resolved="light"] .pcgh-header.is-home-search-transparent .pcgh-nav__list > li.current-menu-item > a,
	html[data-pcgh-theme-resolved="light"] .pcgh-header.is-home-search-transparent .pcgh-nav__list > li.current_page_item > a {
		color: #fff;
		background: var(--pcgh-primary)
	}

	html[data-pcgh-theme-resolved="light"] .pcgh-header.is-home-search-transparent .pcgh-search input {
		background: rgba(255,255,255,.1);
		border-color: rgba(255,255,255,.18);
		color: #fff
	}

	html[data-pcgh-theme-resolved="light"] .pcgh-header.is-home-search-transparent .pcgh-search input::placeholder {
		color: rgba(255,255,255,.56)
	}

	html[data-pcgh-theme-resolved="light"] .pcgh-header.is-home-search-transparent .pcgh-icon-btn:hover,
	html[data-pcgh-theme-resolved="light"] .pcgh-header.is-home-search-transparent .pcgh-theme-switch.is-open .pcgh-theme-switch__toggle {
		color: #fff;
		background: rgba(255,255,255,.12)
	}

	html[data-pcgh-theme-resolved="light"] .pcgh-header.is-home-search-transparent .pcgh-icon-btn i[data-lucide],
	html[data-pcgh-theme-resolved="light"] .pcgh-header.is-home-search-transparent .pcgh-icon-btn svg,
	html[data-pcgh-theme-resolved="light"] .pcgh-header.is-home-search-transparent .pcgh-theme-switch__toggle i[data-lucide],
	html[data-pcgh-theme-resolved="light"] .pcgh-header.is-home-search-transparent .pcgh-theme-switch__toggle svg {
		color: currentColor;
		stroke: currentColor
	}

	html[data-pcgh-theme-resolved="light"] .pcgh-header.is-home-search-transparent .pcgh-notice-dot {
		box-shadow: 0 0 0 2px rgba(15,23,42,.72),0 0 12px rgba(239,68,68,.9)
	}

	html[data-pcgh-theme-resolved="light"] .pcgh-header.is-home-search-transparent .pcgh-nav__list > li > .sub-menu,
	html[data-pcgh-theme-resolved="light"] .pcgh-header.is-home-search-transparent .pcgh-theme-switch__menu {
		background: rgba(255,255,255,.98);
		border-color: rgba(226,232,240,.92);
		box-shadow: 0 22px 60px rgba(15,23,42,.22);
		backdrop-filter: blur(14px)
	}

	html[data-pcgh-theme-resolved="light"] .pcgh-header.is-home-search-transparent .pcgh-nav__list > li > .sub-menu > li > a {
		background: #f7f8fa;
		color: #111827
	}

	html[data-pcgh-theme-resolved="light"] .pcgh-header.is-home-search-transparent .pcgh-nav__list > li > .sub-menu .pcgh-nav__icon {
		color: var(--pcgh-primary)
	}

	html[data-pcgh-theme-resolved="light"] .pcgh-header.is-home-search-transparent .pcgh-nav__list > li > .sub-menu > li > a:hover,
	html[data-pcgh-theme-resolved="light"] .pcgh-header.is-home-search-transparent .pcgh-nav__list > li > .sub-menu > li.current-menu-item > a,
	html[data-pcgh-theme-resolved="light"] .pcgh-header.is-home-search-transparent .pcgh-nav__list > li > .sub-menu > li.current_page_item > a {
		background: var(--pcgh-primary);
		color: #fff
	}

	html[data-pcgh-theme-resolved="light"] .pcgh-header.is-home-search-transparent .pcgh-nav__list > li > .sub-menu > li > a:hover .pcgh-nav__icon,
	html[data-pcgh-theme-resolved="light"] .pcgh-header.is-home-search-transparent .pcgh-nav__list > li > .sub-menu > li.current-menu-item > a .pcgh-nav__icon,
	html[data-pcgh-theme-resolved="light"] .pcgh-header.is-home-search-transparent .pcgh-nav__list > li > .sub-menu > li.current_page_item > a .pcgh-nav__icon {
		color: #fff
	}

	html[data-pcgh-theme-resolved="light"] .pcgh-header.is-home-search-transparent .pcgh-theme-switch__menu button {
		color: #475569
	}

	html[data-pcgh-theme-resolved="light"] .pcgh-header.is-home-search-transparent .pcgh-theme-switch__menu button:hover,
	html[data-pcgh-theme-resolved="light"] .pcgh-header.is-home-search-transparent .pcgh-theme-switch__menu button.is-active {
		background: rgba(var(--pcgh-primary-rgb),.1);
		color: var(--pcgh-primary)
	}

	html[data-pcgh-theme-resolved="light"] body:not(.home):not(.front-page) .pcgh-header.is-home-search-transparent {
		position: sticky;
		background: #fff;
		backdrop-filter: blur(8px);
		border-bottom: 1px solid var(--pcgh-border)
	}

	html[data-pcgh-theme-resolved="light"] body:not(.home):not(.front-page) .pcgh-header.is-home-search-transparent .pcgh-logo,
	html[data-pcgh-theme-resolved="light"] body:not(.home):not(.front-page) .pcgh-header.is-home-search-transparent .pcgh-nav__list li a,
	html[data-pcgh-theme-resolved="light"] body:not(.home):not(.front-page) .pcgh-header.is-home-search-transparent .pcgh-header__actions,
	html[data-pcgh-theme-resolved="light"] body:not(.home):not(.front-page) .pcgh-header.is-home-search-transparent .pcgh-icon-btn,
	html[data-pcgh-theme-resolved="light"] body:not(.home):not(.front-page) .pcgh-header.is-home-search-transparent .pcgh-header__login-btn {
		color: var(--pcgh-text)
	}
}

html[data-pcgh-theme-resolved="light"] :where(.pcgh-card-section,.pcgh-game-card,.pcgh-home-new__card,.pcgh-side-card,.pcgh-widget,.pcgh-comments,.pcgh-cmt-form,.pcgh-search-page__form,.pcgh-single-related,.pcgh-special-game-card,.pcgh-special-tax-item,.pcgh-modal__panel,.pcgh-pay-card,.pcgh-vip-card,.pcgh-uc-card,.pcgh-growth-card) {
	background: var(--pcgh-surface);
	border-color: var(--pcgh-border);
	color: var(--pcgh-text)
}

html[data-pcgh-theme-resolved="light"] :where(.pcgh-specials-page,.pcgh-special-detail,.pcgh-special-tax-page,.pcgh-search-page,.pcgh-single,.pcgh-single-game,.pcgh-author-page,.pcgh-uc-page,.pcgh-vip-page,.pcgh-growth-page) {
	background: var(--pcgh-bg);
	color: var(--pcgh-text)
}

html[data-pcgh-theme-resolved="light"] :where(.pcgh-card-section__head h2,.pcgh-single-related .pcgh-card-section__head h2,.pcgh-special-detail-head h1,.pcgh-specials-head h1,.pcgh-special-tax-hero h1,.pcgh-comments__login-required-text strong,.pcgh-cmt__name,.pcgh-game-card__title,.pcgh-home-specials-section .pcgh-card-section__head h2) {
	color: var(--pcgh-text)
}



html[data-pcgh-theme-resolved="light"] :where(.pcgh-btn--ghost,.pcgh-icon-btn:hover,.pcgh-nav__list li a:hover,.pcgh-theme-switch__menu button:hover,.pcgh-theme-switch__menu button.is-active) {
	color: #ffffff;
}

html[data-pcgh-theme-resolved="light"] :where(.pcgh-specials-card,.pcgh-special,.pcgh-banner__slide,.pcgh-ghero,.pcgh-hero,.pcgh-game-hero) {
	color: #fff
}

html[data-pcgh-theme-resolved="light"] :where(.pcgh-single-related__cover,.pcgh-special-game-card__cover,.pcgh-special-tax-item__cover,.pcgh-game-card__cover) {
	background-color: #e5e7eb
}

html[data-pcgh-theme-resolved="light"] :where(.pcgh-growth-hero,.pcgh-growth-task,.pcgh-growth-privs div) {
	background: var(--pcgh-surface);
	border-color: var(--pcgh-border);
	color: var(--pcgh-text)
}

html[data-pcgh-theme-resolved="light"] :where(.pcgh-home-hero-section,.pcgh-home-cats-section,.pcgh-home-new-section,.pcgh-home-all-section,.pcgh-home-specials-section,.pcgh-home-service-section) {
	background: var(--pcgh-bg);
	color: var(--pcgh-text)
}

html[data-pcgh-theme-resolved="light"] .pcgh-home-search-section {
	background-color: #eef4ff
}

html[data-pcgh-theme-resolved="light"] .pcgh-home-search-section:before {
	background:
		linear-gradient(90deg,rgba(248,250,252,.84),rgba(248,250,252,.42),rgba(248,250,252,.84)),
		linear-gradient(180deg,rgba(248,250,252,.18) 0%,rgba(245,247,251,.58) 62%,rgba(245,247,251,.28) 88%,rgba(245,247,251,0) 100%)
}

html[data-pcgh-theme-resolved="light"] .pcgh-home-search-section:after {
	background:
		radial-gradient(ellipse at center,rgba(var(--pcgh-primary-rgb),.14),rgba(226,232,240,.42) 46%,rgba(245,247,251,0) 76%),
		linear-gradient(180deg,rgba(245,247,251,0),var(--pcgh-bg))
}

html[data-pcgh-theme-resolved="light"] .pcgh-home-search h1 {
	color: var(--pcgh-text);
	text-shadow: 0 8px 28px rgba(15,23,42,.12)
}

html[data-pcgh-theme-resolved="light"] .pcgh-home-search__badges,
html[data-pcgh-theme-resolved="light"] .pcgh-home-search__hot {
	color: var(--pcgh-text-2)
}

html[data-pcgh-theme-resolved="light"] .pcgh-home-search__form {
	background: rgba(255,255,255,.86);
	border-color: rgba(var(--pcgh-primary-rgb),.28);
	box-shadow: 0 0 0 8px rgba(var(--pcgh-primary-rgb),.08),0 18px 48px rgba(15,23,42,.12)
}

html[data-pcgh-theme-resolved="light"] .pcgh-home-search__form input {
	color: var(--pcgh-text)
}

html[data-pcgh-theme-resolved="light"] .pcgh-home-search__form input::placeholder {
	color: var(--pcgh-text-3)
}

html[data-pcgh-theme-resolved="light"] .pcgh-home-search__hot a,
html[data-pcgh-theme-resolved="light"] .pcgh-home-search-card,
html[data-pcgh-theme-resolved="light"] .pcgh-home-service,
html[data-pcgh-theme-resolved="light"] .pcgh-home-signin,
html[data-pcgh-theme-resolved="light"] .pcgh-home-cat,
html[data-pcgh-theme-resolved="light"] .pcgh-home-new__card,
html[data-pcgh-theme-resolved="light"] .pcgh-home-all__view,
html[data-pcgh-theme-resolved="light"] .pcgh-home-all.is-list .pcgh-game-card,
html[data-pcgh-theme-resolved="light"] .pcgh-libpagi .page-numbers {
	background: var(--pcgh-surface);
	border-color: var(--pcgh-border);
	box-shadow: var(--pcgh-shadow);
	color: var(--pcgh-text)
}

html[data-pcgh-theme-resolved="light"] .pcgh-home-search-card:hover,
html[data-pcgh-theme-resolved="light"] .pcgh-home-service:hover,
html[data-pcgh-theme-resolved="light"] .pcgh-home-new__card:hover {
	background: #fff;
	border-color: rgba(var(--pcgh-primary-rgb),.34)
}

html[data-pcgh-theme-resolved="light"] .pcgh-home-search-card__body strong,
html[data-pcgh-theme-resolved="light"] .pcgh-home-service strong,
html[data-pcgh-theme-resolved="light"] .pcgh-home-new__body strong,
html[data-pcgh-theme-resolved="light"] .pcgh-home-all.is-list .pcgh-game-card__title,
html[data-pcgh-theme-resolved="light"] .pcgh-home-specials-section .pcgh-card-section__head h2 {
	color: var(--pcgh-text)
}

html[data-pcgh-theme-resolved="light"] .pcgh-home-search-card__body small,
html[data-pcgh-theme-resolved="light"] .pcgh-home-service small,
html[data-pcgh-theme-resolved="light"] .pcgh-home-new__meta,
html[data-pcgh-theme-resolved="light"] .pcgh-home-new__size,
html[data-pcgh-theme-resolved="light"] .pcgh-home-all.is-list .pcgh-game-card__meta,
html[data-pcgh-theme-resolved="light"] .pcgh-home-specials-section .pcgh-more {
	color: var(--pcgh-text-2)
}

html[data-pcgh-theme-resolved="light"] .pcgh-home-new__cover,
html[data-pcgh-theme-resolved="light"] .pcgh-home-hero {
	background-color: #e5e7eb
}

html[data-pcgh-theme-resolved="light"] .pcgh-home-new__nav {
	background: #fff;
	border-color: var(--pcgh-border);
	color: var(--pcgh-text);
	box-shadow: var(--pcgh-shadow)
}

html[data-pcgh-theme-resolved="light"] .pcgh-home-new__nav:hover {
	background: var(--pcgh-primary);
	color: #fff
}

html[data-pcgh-theme-resolved="light"] .pcgh-home-new__cat {
	background: rgba(var(--pcgh-primary-rgb),.10);
	color: var(--pcgh-primary)
}

html[data-pcgh-theme-resolved="light"] .pcgh-home-all__view-btn:not(.is-active),
html[data-pcgh-theme-resolved="light"] .pcgh-tabs__item:not(.is-active) {
	color: var(--pcgh-text-2)
}

html[data-pcgh-theme-resolved="light"] .pcgh-home-all__view-btn:not(.is-active):hover,
html[data-pcgh-theme-resolved="light"] .pcgh-tabs__item:not(.is-active):hover {
	background: var(--pcgh-surface-2);
	color: var(--pcgh-text)
}

html[data-pcgh-theme-resolved="light"] .pcgh-home-hero__content,
html[data-pcgh-theme-resolved="light"] .pcgh-home-hero__title {
	color: #fff
}

.pcgh-home-search-section:before {
	background:
		linear-gradient(90deg, rgba(5,9,20,var(--pcgh-home-search-mask,.42)), rgba(5,9,20,calc(var(--pcgh-home-search-mask,.42) * .56)), rgba(5,9,20,var(--pcgh-home-search-mask,.42))),
		linear-gradient(180deg, rgba(5,9,20,calc(var(--pcgh-home-search-mask,.42) * .36)) 0%, rgba(15,20,25,var(--pcgh-home-search-mask,.42)) 58%, rgba(15,20,25,calc(var(--pcgh-home-search-mask,.42) * .28)) 88%, rgba(15,20,25,0) 100%)
}

.pcgh-home-search-section__video {
	filter: saturate(1.04) brightness(calc(1 - (var(--pcgh-home-search-mask,.28) * .42)))
}

html[data-pcgh-theme-resolved="light"] .pcgh-home-search-section:before {
	background:
		linear-gradient(90deg, rgba(5,9,20,var(--pcgh-home-search-mask,.42)), rgba(5,9,20,calc(var(--pcgh-home-search-mask,.42) * .56)), rgba(5,9,20,var(--pcgh-home-search-mask,.42))),
		linear-gradient(180deg, rgba(5,9,20,calc(var(--pcgh-home-search-mask,.42) * .36)) 0%, rgba(15,20,25,var(--pcgh-home-search-mask,.42)) 58%, rgba(15,20,25,calc(var(--pcgh-home-search-mask,.42) * .28)) 88%, rgba(15,20,25,0) 100%)
}

html[data-pcgh-theme-resolved="light"] .pcgh-home-search-section__video {
	filter: saturate(1.04) brightness(calc(1 - (var(--pcgh-home-search-mask,.28) * .42)))
}

html[data-pcgh-theme-resolved="light"] .pcgh-home-signin {
	background: linear-gradient(180deg,#fff,#f8fafc);
	border-color: var(--pcgh-border);
	box-shadow: 0 14px 36px rgba(15,23,42,.08);
	color: var(--pcgh-text)
}

html[data-pcgh-theme-resolved="light"] .pcgh-home-signin__head h3 {
	color: var(--pcgh-text)
}

html[data-pcgh-theme-resolved="light"] .pcgh-home-signin__more,
html[data-pcgh-theme-resolved="light"] .pcgh-signin-progress__head,
html[data-pcgh-theme-resolved="light"] .pcgh-signin-foot,
html[data-pcgh-theme-resolved="light"] .pcgh-signin-recent__head,
html[data-pcgh-theme-resolved="light"] .pcgh-signin-recent__empty {
	color: var(--pcgh-text-3)
}

html[data-pcgh-theme-resolved="light"] .pcgh-signin-progress__bar {
	background: rgba(var(--pcgh-primary-rgb),.10)
}

html[data-pcgh-theme-resolved="light"] .pcgh-home-signin .pcgh-signin-day {
	background: #fff;
	border-color: var(--pcgh-border);
	box-shadow: 0 6px 16px rgba(15,23,42,.04)
}

html[data-pcgh-theme-resolved="light"] .pcgh-home-signin .pcgh-signin-day small {
	color: var(--pcgh-text-3)
}

html[data-pcgh-theme-resolved="light"] .pcgh-home-signin .pcgh-signin-day b {
	color: var(--pcgh-text)
}

html[data-pcgh-theme-resolved="light"] .pcgh-home-signin .pcgh-signin-day__icon {
	background: var(--pcgh-surface-2);
	color: var(--pcgh-primary)
}

html[data-pcgh-theme-resolved="light"] .pcgh-home-signin .pcgh-signin-day.is-done,
html[data-pcgh-theme-resolved="light"] .pcgh-home-signin .pcgh-signin-day.is-active {
	background: rgba(var(--pcgh-primary-rgb),.08);
	border-color: rgba(var(--pcgh-primary-rgb),.38)
}

html[data-pcgh-theme-resolved="light"] .pcgh-home-signin .pcgh-signin-day.is-done .pcgh-signin-day__icon,
html[data-pcgh-theme-resolved="light"] .pcgh-home-signin .pcgh-signin-day.is-active .pcgh-signin-day__icon {
	background: var(--pcgh-primary);
	color: #fff
}

html[data-pcgh-theme-resolved="light"] .pcgh-home-signin .pcgh-signin-day.is-big {
	background: linear-gradient(135deg, rgba(var(--pcgh-primary-rgb),.10), rgba(251,191,36,.12));
	border-color: rgba(251,191,36,.36)
}

html[data-pcgh-theme-resolved="light"] .pcgh-signin-recent {
	border-top-color: var(--pcgh-border)
}

html[data-pcgh-theme-resolved="light"] .pcgh-signin-recent__avatar {
	border-color: var(--pcgh-border);
	box-shadow: 0 6px 16px rgba(15,23,42,.08)
}

html[data-pcgh-theme-resolved="light"] .pcgh-signin-recent__name {
	color: var(--pcgh-text-2)
}

html[data-pcgh-theme-resolved="light"] .pcgh-libhero {
	background: linear-gradient(135deg,#eff6ff,#f8fafc);
	border-color: var(--pcgh-border);
	box-shadow: var(--pcgh-shadow)
}

html[data-pcgh-theme-resolved="light"] .pcgh-libhero::before {
	background: linear-gradient(120deg,rgba(var(--pcgh-primary-rgb),.12),rgba(255,255,255,.70),rgba(226,232,240,.52))
}

html[data-pcgh-theme-resolved="light"] .pcgh-libhero.has-cover::before {
	background: linear-gradient(90deg,
		rgba(255,255,255,.92) 0%,
		rgba(255,255,255,.74) 38%,
		rgba(255,255,255,.36) 68%,
		rgba(255,255,255,0) 100%)
}

html[data-pcgh-theme-resolved="light"] .pcgh-libhero__text,
html[data-pcgh-theme-resolved="light"] .pcgh-libhero__text h1 {
	color: var(--pcgh-text);
	text-shadow: 0 2px 14px rgba(255,255,255,.55)
}

html[data-pcgh-theme-resolved="light"] .pcgh-libhero__text p {
	color: var(--pcgh-text-2);
	text-shadow: none
}

html[data-pcgh-theme-resolved="light"] .pcgh-libtabs,
html[data-pcgh-theme-resolved="light"] .pcgh-libcard,
html[data-pcgh-theme-resolved="light"] .pcgh-libfield select {
	background: var(--pcgh-surface);
	border-color: var(--pcgh-border);
	box-shadow: var(--pcgh-shadow);
	color: var(--pcgh-text)
}

html[data-pcgh-theme-resolved="light"] .pcgh-libtab {
	border-color: var(--pcgh-border);
	color: var(--pcgh-text-2)
}

html[data-pcgh-theme-resolved="light"] .pcgh-libtab:hover {
	background: var(--pcgh-surface-2);
	color: var(--pcgh-text);
	border-color: rgba(var(--pcgh-primary-rgb),.34);
	box-shadow: 0 10px 24px rgba(15,23,42,.08)
}

html[data-pcgh-theme-resolved="light"] .pcgh-libtab small {
	background: var(--pcgh-surface-2);
	color: var(--pcgh-text-3)
}

html[data-pcgh-theme-resolved="light"] .pcgh-libtab__icon {
	background: rgba(var(--pcgh-primary-rgb),.08)!important;
	border-color: rgba(var(--pcgh-primary-rgb),.14)!important;
	color: var(--pcgh-primary)
}

html[data-pcgh-theme-resolved="light"] .pcgh-libsort__tab,
html[data-pcgh-theme-resolved="light"] .pcgh-libfield,
html[data-pcgh-theme-resolved="light"] .pcgh-libcount,
html[data-pcgh-theme-resolved="light"] .pcgh-libcard__size {
	color: var(--pcgh-text-2)
}

html[data-pcgh-theme-resolved="light"] .pcgh-libsort__tab:hover,
html[data-pcgh-theme-resolved="light"] .pcgh-libcount strong,
html[data-pcgh-theme-resolved="light"] .pcgh-libcard__title {
	color: var(--pcgh-text)
}

html[data-pcgh-theme-resolved="light"] .pcgh-libcard__cover {
	background-color: #e5e7eb
}

html[data-pcgh-theme-resolved="light"] .pcgh-content {
	background: var(--pcgh-surface);
	border-color: var(--pcgh-border);
	color: var(--pcgh-text);
	box-shadow: var(--pcgh-shadow)
}

html[data-pcgh-theme-resolved="light"] .pcgh-content h1,
html[data-pcgh-theme-resolved="light"] .pcgh-content h2,
html[data-pcgh-theme-resolved="light"] .pcgh-content h3,
html[data-pcgh-theme-resolved="light"] .pcgh-content h4,
html[data-pcgh-theme-resolved="light"] .pcgh-content h5,
html[data-pcgh-theme-resolved="light"] .pcgh-content h6,
html[data-pcgh-theme-resolved="light"] .pcgh-article h1,
html[data-pcgh-theme-resolved="light"] .pcgh-article h2,
html[data-pcgh-theme-resolved="light"] .pcgh-article h3,
html[data-pcgh-theme-resolved="light"] .pcgh-article h4,
html[data-pcgh-theme-resolved="light"] .pcgh-article h5,
html[data-pcgh-theme-resolved="light"] .pcgh-article h6 {
	color: var(--pcgh-text);
	border-color: var(--pcgh-border)
}

html[data-pcgh-theme-resolved="light"] .pcgh-content h3 {
	color: var(--pcgh-primary)
}

html[data-pcgh-theme-resolved="light"] .pcgh-content p,
html[data-pcgh-theme-resolved="light"] .pcgh-content ul,
html[data-pcgh-theme-resolved="light"] .pcgh-content ol,
html[data-pcgh-theme-resolved="light"] .pcgh-content td {
	color: var(--pcgh-text-2)
}

html[data-pcgh-theme-resolved="light"] .pcgh-content th {
	background: var(--pcgh-surface-2);
	color: var(--pcgh-text)
}

html[data-pcgh-theme-resolved="light"] .pcgh-content a:hover {
	color: var(--pcgh-primary)
}

html[data-pcgh-theme-resolved="light"] .pcgh-single-related {
	background: var(--pcgh-surface);
	border-color: var(--pcgh-border);
	box-shadow: var(--pcgh-shadow)
}

html[data-pcgh-theme-resolved="light"] .pcgh-single-related .pcgh-card-section__head h2,
html[data-pcgh-theme-resolved="light"] .pcgh-single-related__body strong {
	color: var(--pcgh-text)
}

html[data-pcgh-theme-resolved="light"] .pcgh-single-related__item {
	background: #fff;
	border: 1px solid var(--pcgh-border);
	color: var(--pcgh-text);
	box-shadow: 0 8px 20px rgba(15,23,42,.06)
}

html[data-pcgh-theme-resolved="light"] .pcgh-single-related__item:hover {
	color: var(--pcgh-text);
	border-color: rgba(var(--pcgh-primary-rgb),.34)
}

html[data-pcgh-theme-resolved="light"] .pcgh-single-related__cover {
	background-color: #e5e7eb
}

html[data-pcgh-theme-resolved="light"] .pcgh-single-related__body em,
html[data-pcgh-theme-resolved="light"] .pcgh-single-related__body small {
	color: var(--pcgh-text-2)
}

html[data-pcgh-theme-resolved="light"] .pcgh-single-related__nav {
	background: #fff;
	border-color: var(--pcgh-border);
	color: var(--pcgh-text);
	box-shadow: var(--pcgh-shadow)
}

html[data-pcgh-theme-resolved="light"] .pcgh-single-related__nav:hover {
	background: var(--pcgh-primary);
	border-color: var(--pcgh-primary);
	color: #fff
}

html[data-pcgh-theme-resolved="light"] .pcgh-home-search h1 {
	color: #ffffff;
	text-shadow: 0 2px 16px rgb(22 22 22 / 82%), 0 10px 34px rgba(15, 23, 42, .10)
}

html[data-pcgh-theme-resolved="light"] .pcgh-home-search__badges {
	color: #ffffff
}

html[data-pcgh-theme-resolved="light"] .pcgh-home-search__badges span {
	padding: 5px 10px;
}

html[data-pcgh-theme-resolved="light"] .pcgh-home-search__hot {
	color: #475569
}

html[data-pcgh-theme-resolved="light"] .pcgh-home-search__hot span {
	color: #ffffff
}

html[data-pcgh-theme-resolved="light"] .pcgh-home-search__hot a {
	color: #000000;
	background: rgba(255,255,255,.72);
	border-color: rgba(var(--pcgh-primary-rgb),.16)
}

html[data-pcgh-theme-resolved="light"] .pcgh-home-search__hot a:hover {
	background: var(--pcgh-primary);
	color: #fff;
	border-color: var(--pcgh-primary)
}

html[data-pcgh-theme-resolved="light"] .pcgh-home-search-card__body strong {
	color: var(--pcgh-text)
}

html[data-pcgh-theme-resolved="light"] .pcgh-home-search-card__body small {
	color: var(--pcgh-text-2)
}

html[data-pcgh-theme-resolved="light"] .pcgh-home-hero__btns .pcgh-btn--primary {
	background: var(--pcgh-primary);
	border-color: var(--pcgh-primary);
	color: #fff;
	box-shadow: 0 12px 24px rgba(var(--pcgh-primary-rgb),.24)
}

html[data-pcgh-theme-resolved="light"] .pcgh-home-hero__btns .pcgh-btn--primary:hover {
	background: var(--pcgh-primary-2);
	border-color: var(--pcgh-primary-2);
	color: #fff
}

html[data-pcgh-theme-resolved="light"] .pcgh-home-signin__inner {
	color: var(--pcgh-text)
}

html[data-pcgh-theme-resolved="light"] .pcgh-home-signin .pcgh-btn--ghost[disabled],
html[data-pcgh-theme-resolved="light"] .pcgh-home-signin .pcgh-btn--ghost[data-pcgh-signed] {
	background: var(--pcgh-surface-2);
	border-color: var(--pcgh-border);
	color: var(--pcgh-text-2);
	opacity: 1
}

html[data-pcgh-theme-resolved="light"] .pcgh-home-signin .pcgh-signin-progress__head span,
html[data-pcgh-theme-resolved="light"] .pcgh-home-signin .pcgh-signin-foot span,
html[data-pcgh-theme-resolved="light"] .pcgh-home-signin .pcgh-signin-recent__head span {
	color: var(--pcgh-text-2)
}

html[data-pcgh-theme-resolved="light"] .pcgh-home-signin .pcgh-signin-progress__head b,
html[data-pcgh-theme-resolved="light"] .pcgh-home-signin .pcgh-signin-foot b {
	color: var(--pcgh-primary)
}

html[data-pcgh-theme-resolved="light"] .pcgh-home-signin .pcgh-signin-day.is-done b,
html[data-pcgh-theme-resolved="light"] .pcgh-home-signin .pcgh-signin-day.is-active b {
	color: var(--pcgh-primary)
}

:where(.pcgh-card-section,.pcgh-game-card,.pcgh-libcard,.pcgh-single-related,.pcgh-single-related__item,.pcgh-special-game-card,.pcgh-special-tax-item,.pcgh-rank-table,.pcgh-rank-row) {
	box-shadow: none
}

:where(.pcgh-card-section,.pcgh-game-card,.pcgh-libcard,.pcgh-single-related,.pcgh-single-related__item,.pcgh-special-game-card,.pcgh-special-tax-item,.pcgh-rank-row):hover {
	box-shadow: none
}

.pcgh-specials-page {
	background: transparent;
	color: var(--pcgh-text)
}

.pcgh-specials-page::before,
.pcgh-specials-hero {
	display: none
}

html[data-pcgh-theme-resolved="light"] .pcgh-rank-page {
	background: var(--pcgh-bg);
	color: var(--pcgh-text)
}

html[data-pcgh-theme-resolved="light"] .pcgh-rank-hero {
	background: var(--pcgh-surface);
	border-color: var(--pcgh-border)
}

html[data-pcgh-theme-resolved="light"] .pcgh-rank-hero__bg {
	background:
		linear-gradient(90deg,rgba(255,255,255,.92),rgba(255,255,255,.68),rgba(255,255,255,.24)),
		url('https://picsum.photos/seed/pcgh-rankings/1600/460') center/cover no-repeat;
	opacity: 1
}

html[data-pcgh-theme-resolved="light"] .pcgh-rank-hero h1 {
	color: var(--pcgh-text)
}

html[data-pcgh-theme-resolved="light"] .pcgh-rank-hero p {
	color: var(--pcgh-text-2)
}

html[data-pcgh-theme-resolved="light"] .pcgh-rank-hero__content > span,
html[data-pcgh-theme-resolved="light"] .pcgh-rank-filter,
html[data-pcgh-theme-resolved="light"] .pcgh-rank-table {
	background: var(--pcgh-surface);
	border-color: var(--pcgh-border);
	color: var(--pcgh-text-2);
	box-shadow: none
}

html[data-pcgh-theme-resolved="light"] .pcgh-rank-filter a {
	background: var(--pcgh-surface-2);
	color: var(--pcgh-text-2)
}

html[data-pcgh-theme-resolved="light"] .pcgh-rank-table__head {
	background: var(--pcgh-surface-2);
	color: var(--pcgh-text-3)
}

html[data-pcgh-theme-resolved="light"] .pcgh-rank-row {
	background: var(--pcgh-surface);
	border-top-color: var(--pcgh-border);
	color: var(--pcgh-text)
}

html[data-pcgh-theme-resolved="light"] .pcgh-rank-row:hover {
	background: var(--pcgh-surface-2)
}

html[data-pcgh-theme-resolved="light"] .pcgh-rank-row__game strong,
html[data-pcgh-theme-resolved="light"] .pcgh-rank-row__downloads {
	color: var(--pcgh-text)
}

html[data-pcgh-theme-resolved="light"] .pcgh-rank-row__game small,
html[data-pcgh-theme-resolved="light"] .pcgh-rank-row__type,
html[data-pcgh-theme-resolved="light"] .pcgh-rank-row__size {
	color: var(--pcgh-text-2)
}

html[data-pcgh-theme-resolved="light"] .pcgh-rank-row__type {
	background: rgba(15,23,42,.06)
}

html[data-pcgh-theme-resolved="light"] .pcgh-specials-page,
html[data-pcgh-theme-resolved="light"] .pcgh-special-detail-page {
	background: var(--pcgh-bg);
	color: var(--pcgh-text)
}

html[data-pcgh-theme-resolved="light"] .pcgh-special-detail-bg,
html[data-pcgh-theme-resolved="light"] .pcgh-special-detail-page::before {
	display: none
}

html[data-pcgh-theme-resolved="light"] .pcgh-special-detail-page .pcgh-container {
	background: transparent;
	border-color: transparent;
	box-shadow: none
}

html[data-pcgh-theme-resolved="light"] .pcgh-specials-head h1,
html[data-pcgh-theme-resolved="light"] .pcgh-special-detail-head h1,
html[data-pcgh-theme-resolved="light"] .pcgh-special-tax-hero__content h1,
html[data-pcgh-theme-resolved="light"] .pcgh-special-tax-item__main h2 a,
html[data-pcgh-theme-resolved="light"] .pcgh-special-game-card__body strong {
	color: var(--pcgh-text)
}

html[data-pcgh-theme-resolved="light"] .pcgh-specials-head p,
html[data-pcgh-theme-resolved="light"] .pcgh-special-detail-head p,
html[data-pcgh-theme-resolved="light"] .pcgh-special-tax-hero__content p,
html[data-pcgh-theme-resolved="light"] .pcgh-special-tax-item__main p,
html[data-pcgh-theme-resolved="light"] .pcgh-special-game-card__body em,
html[data-pcgh-theme-resolved="light"] .pcgh-special-game-card__body b {
	color: var(--pcgh-text-2)
}

html[data-pcgh-theme-resolved="light"] .pcgh-specials-card {
	border: 1px solid var(--pcgh-border);
	box-shadow: none
}

html[data-pcgh-theme-resolved="light"] .pcgh-specials-card:hover {
	box-shadow: none
}


html[data-pcgh-theme-resolved="light"] .pcgh-specials-empty,
html[data-pcgh-theme-resolved="light"] .pcgh-special-tax-list,
html[data-pcgh-theme-resolved="light"] .pcgh-special-tax-item,
html[data-pcgh-theme-resolved="light"] .pcgh-special-game-card {
	background: var(--pcgh-surface);
	border-color: var(--pcgh-border);
	color: var(--pcgh-text);
	box-shadow: none
}

html[data-pcgh-theme-resolved="light"] .pcgh-special-tax-hero {
	background-color: #e5e7eb;
	border: 1px solid var(--pcgh-border)
}

html[data-pcgh-theme-resolved="light"] .pcgh-special-tax-hero::before {
	background: linear-gradient(90deg,rgba(255,255,255,.92),rgba(255,255,255,.74),rgba(255,255,255,.26))
}

html[data-pcgh-theme-resolved="light"] .pcgh-special-tax-hero__stats span,
html[data-pcgh-theme-resolved="light"] .pcgh-special-tax-item__tags span,
html[data-pcgh-theme-resolved="light"] .pcgh-special-detail-pager .page-numbers {
	background: var(--pcgh-surface-2);
	border-color: var(--pcgh-border);
	color: var(--pcgh-text-2)
}

html[data-pcgh-theme-resolved="light"] .pcgh-special-tax-item__cover,
html[data-pcgh-theme-resolved="light"] .pcgh-special-game-card__cover {
	background-color: #e5e7eb
}

html[data-pcgh-theme-resolved="light"] .pcgh-special-tax-item__meta,
html[data-pcgh-theme-resolved="light"] .pcgh-special-tax-item__action small {
	color: var(--pcgh-text-2)
}

html[data-pcgh-theme-resolved="light"] .pcgh-special-tax-item__action a {
	background: var(--pcgh-primary);
	border: 1px solid var(--pcgh-primary);
	box-shadow: 0 10px 22px rgba(var(--pcgh-primary-rgb),.18);
	color: #fff
}

html[data-pcgh-theme-resolved="light"] .pcgh-special-tax-item__action a:hover {
	background: var(--pcgh-primary-2);
	border-color: var(--pcgh-primary-2);
	color: #fff
}

html[data-pcgh-theme-resolved="light"] .pcgh-special-tax-item__action a i[data-lucide],
html[data-pcgh-theme-resolved="light"] .pcgh-special-tax-item__action a svg {
	color: #fff
}

html:not([data-pcgh-theme-resolved="light"]) .pcgh-specials-page {
	background: transparent;
	color: var(--pcgh-text)
}

html:not([data-pcgh-theme-resolved="light"]) .pcgh-specials-page::before {
	display: none
}

html:not([data-pcgh-theme-resolved="light"]) .pcgh-specials-hero {
	display: none
}

html:not([data-pcgh-theme-resolved="light"]) .pcgh-specials-head h1,
html:not([data-pcgh-theme-resolved="light"]) .pcgh-special-detail-head h1,
html:not([data-pcgh-theme-resolved="light"]) .pcgh-special-tax-hero__content h1,
html:not([data-pcgh-theme-resolved="light"]) .pcgh-special-tax-item__main h2 a,
html:not([data-pcgh-theme-resolved="light"]) .pcgh-special-game-card__body strong {
	color: #fff
}

html:not([data-pcgh-theme-resolved="light"]) .pcgh-specials-head p,
html:not([data-pcgh-theme-resolved="light"]) .pcgh-special-detail-head p,
html:not([data-pcgh-theme-resolved="light"]) .pcgh-special-tax-hero__content p,
html:not([data-pcgh-theme-resolved="light"]) .pcgh-special-tax-item__main p,
html:not([data-pcgh-theme-resolved="light"]) .pcgh-special-game-card__body em,
html:not([data-pcgh-theme-resolved="light"]) .pcgh-special-game-card__body b {
	color: rgba(203,213,225,.82)
}

html:not([data-pcgh-theme-resolved="light"]) .pcgh-specials-empty,
html:not([data-pcgh-theme-resolved="light"]) .pcgh-special-tax-list,
html:not([data-pcgh-theme-resolved="light"]) .pcgh-special-tax-item,
html:not([data-pcgh-theme-resolved="light"]) .pcgh-special-game-card {
	background: rgba(8,19,32,.72);
	border-color: rgba(148,163,184,.1);
	color: #fff
}

html:not([data-pcgh-theme-resolved="light"]) .pcgh-special-detail-page,
html:not([data-pcgh-theme-resolved="light"]) .pcgh-special-tax-page {
	background: transparent;
	color: var(--pcgh-text)
}

html:not([data-pcgh-theme-resolved="light"]) .pcgh-special-detail-bg,
html:not([data-pcgh-theme-resolved="light"]) .pcgh-special-detail-page::before {
	display: none
}

html:not([data-pcgh-theme-resolved="light"]) .pcgh-special-detail-page .pcgh-container,
html:not([data-pcgh-theme-resolved="light"]) .pcgh-special-tax-page .pcgh-container {
	background: transparent;
	border-color: transparent;
	box-shadow: none
}



html:not([data-pcgh-theme-resolved="light"]) .pcgh-special-tax-hero::before {
	background: linear-gradient(90deg,rgba(6,16,28,.96) 0%,rgba(6,16,28,.76) 38%,rgba(6,16,28,.22) 100%)
}

html:not([data-pcgh-theme-resolved="light"]) .pcgh-special-tax-hero__stats span,
html:not([data-pcgh-theme-resolved="light"]) .pcgh-special-tax-item__tags span,
html:not([data-pcgh-theme-resolved="light"]) .pcgh-special-detail-pager .page-numbers {
	background: rgba(15,23,42,.82);
	border-color: rgba(148,163,184,.12);
	color: rgba(226,232,240,.86)
}

html:not([data-pcgh-theme-resolved="light"]) .pcgh-special-tax-item__meta,
html:not([data-pcgh-theme-resolved="light"]) .pcgh-special-tax-item__action small {
	color: rgba(148,163,184,.86)
}

html:not([data-pcgh-theme-resolved="light"]) .pcgh-special-detail-pager .page-numbers.current,
html[data-pcgh-theme-resolved="light"] .pcgh-special-detail-pager .page-numbers.current {
	background: #2563eb;
	border-color: #2563eb;
	color: #fff
}

html[data-pcgh-theme-resolved="light"] .pcgh-specials-page::before,
html[data-pcgh-theme-resolved="light"] .pcgh-specials-hero {
	display: none
}

html[data-pcgh-theme-resolved="light"] .pcgh-special-tax-page,
html[data-pcgh-theme-resolved="light"] .pcgh-special-detail-page {
	background: var(--pcgh-bg);
	color: var(--pcgh-text)
}

html[data-pcgh-theme-resolved="light"] .pcgh-special-tax-page .pcgh-container,
html[data-pcgh-theme-resolved="light"] .pcgh-special-detail-page .pcgh-container {
	background: transparent;
	border-color: transparent;
	box-shadow: none
}

html[data-pcgh-theme-resolved="light"] .pcgh-specials-card::before {
	background:
		linear-gradient(180deg,rgba(15,23,42,.04) 0%,rgba(15,23,42,.34) 42%,rgba(15,23,42,.76) 100%),
		linear-gradient(90deg,rgba(15,23,42,.54),rgba(15,23,42,.12))
}

html[data-pcgh-theme-resolved="light"] .pcgh-specials-card__body em {
	color: rgba(241,245,249,.88)
}

html[data-pcgh-theme-resolved="light"] .pcgh-specials-card__body small {
	color: #93c5fd
}

html[data-pcgh-theme-resolved="light"] .pcgh-special-game-card__body small {
	color: var(--pcgh-primary)
}

html[data-pcgh-theme-resolved="light"] .pcgh-special-tax-item__main h2 a:hover,
html[data-pcgh-theme-resolved="light"] .pcgh-special-detail-pager .page-numbers:hover {
	color: var(--pcgh-primary)
}

html[data-pcgh-theme-resolved="light"] .pcgh-special-detail-empty {
	background: var(--pcgh-surface);
	border: 1px solid var(--pcgh-border);
	color: var(--pcgh-text-2)
}

.pcgh-card-section,
.pcgh-game-card,
.pcgh-game-card:hover,
.pcgh-libcard,
.pcgh-libcard:hover,
.pcgh-single-related,
.pcgh-single-related__item,
.pcgh-single-related__item:hover,
.pcgh-special-game-card,
.pcgh-special-game-card:hover,
.pcgh-special-tax-item,
.pcgh-special-tax-item:hover,
.pcgh-rank-table,
.pcgh-rank-row,
.pcgh-rank-row:hover {
	box-shadow: none
}

html[data-pcgh-theme-resolved="light"] .pcgh-card-section,
html[data-pcgh-theme-resolved="light"] .pcgh-game-card,
html[data-pcgh-theme-resolved="light"] .pcgh-game-card:hover,
html[data-pcgh-theme-resolved="light"] .pcgh-libcard,
html[data-pcgh-theme-resolved="light"] .pcgh-libcard:hover,
html[data-pcgh-theme-resolved="light"] .pcgh-single-related,
html[data-pcgh-theme-resolved="light"] .pcgh-single-related__item,
html[data-pcgh-theme-resolved="light"] .pcgh-single-related__item:hover,
html[data-pcgh-theme-resolved="light"] .pcgh-special-game-card,
html[data-pcgh-theme-resolved="light"] .pcgh-special-game-card:hover,
html[data-pcgh-theme-resolved="light"] .pcgh-special-tax-item,
html[data-pcgh-theme-resolved="light"] .pcgh-special-tax-item:hover,
html[data-pcgh-theme-resolved="light"] .pcgh-rank-table,
html[data-pcgh-theme-resolved="light"] .pcgh-rank-row,
html[data-pcgh-theme-resolved="light"] .pcgh-rank-row:hover {
	box-shadow: none
}

html[data-pcgh-theme-resolved="light"] .pcgh-author-page,
html[data-pcgh-theme-resolved="light"] .pcgh-uc {
	background: var(--pcgh-bg);
	color: var(--pcgh-text)
}

html[data-pcgh-theme-resolved="light"] .pcgh-author-hero {
	border-color: var(--pcgh-border);
	background-color: #e5e7eb
}

html[data-pcgh-theme-resolved="light"] .pcgh-author-card,
html[data-pcgh-theme-resolved="light"] .pcgh-author-tabs,
html[data-pcgh-theme-resolved="light"] .pcgh-author-content,
html[data-pcgh-theme-resolved="light"] .pcgh-author-widget,
html[data-pcgh-theme-resolved="light"] .pcgh-author-comments a,
html[data-pcgh-theme-resolved="light"] .pcgh-author-users a {
	background: var(--pcgh-surface);
	border-color: var(--pcgh-border);
	color: var(--pcgh-text);
	box-shadow: none
}

html[data-pcgh-theme-resolved="light"] .pcgh-author-card::before {
	background: linear-gradient(180deg,rgba(255,255,255,.78),rgba(255,255,255,.96))
}

html[data-pcgh-theme-resolved="light"] .pcgh-author-card__avatar {
	background: #fff;
	border: 3px solid #fff;
	box-shadow: 0 10px 24px rgba(15,23,42,.12)
}

html[data-pcgh-theme-resolved="light"] .pcgh-author-card__info h1,
html[data-pcgh-theme-resolved="light"] .pcgh-author-widget h3,
html[data-pcgh-theme-resolved="light"] .pcgh-author-widget b,
html[data-pcgh-theme-resolved="light"] .pcgh-author-comments strong,
html[data-pcgh-theme-resolved="light"] .pcgh-author-users strong {
	color: var(--pcgh-text)
}

html[data-pcgh-theme-resolved="light"] .pcgh-author-card__info p,
html[data-pcgh-theme-resolved="light"] .pcgh-author-widget small,
html[data-pcgh-theme-resolved="light"] .pcgh-author-widget time,
html[data-pcgh-theme-resolved="light"] .pcgh-author-comments p,
html[data-pcgh-theme-resolved="light"] .pcgh-author-comments time,
html[data-pcgh-theme-resolved="light"] .pcgh-author-users small,
html[data-pcgh-theme-resolved="light"] .pcgh-author-empty,
html[data-pcgh-theme-resolved="light"] .pcgh-author-widget__empty {
	color: var(--pcgh-text-2)
}

html[data-pcgh-theme-resolved="light"] .pcgh-author-card__title {
	color: var(--pcgh-text-2)
}

html[data-pcgh-theme-resolved="light"] .pcgh-author-tabs a {
	color: var(--pcgh-text-2)
}

html[data-pcgh-theme-resolved="light"] .pcgh-author-tabs a.is-active {
	background: rgba(var(--pcgh-primary-rgb),.10);
	color: var(--pcgh-primary)
}

html[data-pcgh-theme-resolved="light"] .pcgh-author-empty span::before {
	background: var(--pcgh-surface-2)
}

html[data-pcgh-theme-resolved="light"] .pcgh-author-empty span::after {
	background: rgba(148,163,184,.16);
	box-shadow: -27px 20px 0 -12px rgba(148,163,184,.18),37px 23px 0 -14px rgba(148,163,184,.14)
}

html[data-pcgh-theme-resolved="light"] .pcgh-uc__menu,
html[data-pcgh-theme-resolved="light"] .pcgh-uc-card,
html[data-pcgh-theme-resolved="light"] .pcgh-uc-stat-card,
html[data-pcgh-theme-resolved="light"] .pcgh-uc-profile-card,
html[data-pcgh-theme-resolved="light"] .pcgh-uc-profile-box,
html[data-pcgh-theme-resolved="light"] .pcgh-uc-content,
html[data-pcgh-theme-resolved="light"] .pcgh-uc-content-card,
html[data-pcgh-theme-resolved="light"] .pcgh-uc-comment-list a,
html[data-pcgh-theme-resolved="light"] .pcgh-uc-user-chip,
html[data-pcgh-theme-resolved="light"] .pcgh-uc-pm,
html[data-pcgh-theme-resolved="light"] .pcgh-uc-pm__chat,
html[data-pcgh-theme-resolved="light"] .pcgh-uc-empty,
html[data-pcgh-theme-resolved="light"] .pcgh-vip-card,
html[data-pcgh-theme-resolved="light"] .pcgh-pay-card,
html[data-pcgh-theme-resolved="light"] .pcgh-growth-card {
	background: var(--pcgh-surface);
	border-color: var(--pcgh-border);
	color: var(--pcgh-text);
	box-shadow: none
}

html[data-pcgh-theme-resolved="light"] .pcgh-uc-menu-item {
	color: var(--pcgh-text-2)
}

html[data-pcgh-theme-resolved="light"] .pcgh-uc-menu-item:hover {
	background: var(--pcgh-surface-2);
	color: var(--pcgh-text)
}

html[data-pcgh-theme-resolved="light"] .pcgh-uc-menu-item.is-active {
	color: #fff
}

html[data-pcgh-theme-resolved="light"] .pcgh-uc-hero {
	background-color: #e5e7eb;
	border-color: var(--pcgh-border)
}

html[data-pcgh-theme-resolved="light"] .pcgh-uc-hero__overlay {
	background: linear-gradient(90deg,rgba(15,23,42,.68),rgba(15,23,42,.36),rgba(15,23,42,.18))
}

html[data-pcgh-theme-resolved="light"] .pcgh-uc-hero__avatar {
	background: #fff;
	border-color: rgba(255,255,255,.86)
}

html[data-pcgh-theme-resolved="light"] .pcgh-uc-stat-card__num,
html[data-pcgh-theme-resolved="light"] .pcgh-uc-card__head h3,
html[data-pcgh-theme-resolved="light"] .pcgh-uc-profile-head__title h3,
html[data-pcgh-theme-resolved="light"] .pcgh-uc-profile-box__head strong,
html[data-pcgh-theme-resolved="light"] .pcgh-uc-content-card__body h3 a,
html[data-pcgh-theme-resolved="light"] .pcgh-uc-comment-list strong,
html[data-pcgh-theme-resolved="light"] .pcgh-uc-user-chip strong,
html[data-pcgh-theme-resolved="light"] .pcgh-uc-pm-thread strong,
html[data-pcgh-theme-resolved="light"] .pcgh-uc-pm__chat-head strong,
html[data-pcgh-theme-resolved="light"] .pcgh-uc-table__game a {
	color: var(--pcgh-text)
}

html[data-pcgh-theme-resolved="light"] .pcgh-uc-card__sub,
html[data-pcgh-theme-resolved="light"] .pcgh-uc-card__desc,
html[data-pcgh-theme-resolved="light"] .pcgh-uc-profile-head__title p,
html[data-pcgh-theme-resolved="light"] .pcgh-uc-profile-box__head small,
html[data-pcgh-theme-resolved="light"] .pcgh-uc-content-sort,
html[data-pcgh-theme-resolved="light"] .pcgh-uc-content-card__desc,
html[data-pcgh-theme-resolved="light"] .pcgh-uc-content-card__desc em,
html[data-pcgh-theme-resolved="light"] .pcgh-uc-content-card footer,
html[data-pcgh-theme-resolved="light"] .pcgh-uc-comment-list p,
html[data-pcgh-theme-resolved="light"] .pcgh-uc-comment-list time,
html[data-pcgh-theme-resolved="light"] .pcgh-uc-user-chip small,
html[data-pcgh-theme-resolved="light"] .pcgh-uc-pm-thread small,
html[data-pcgh-theme-resolved="light"] .pcgh-uc-pm-thread time,
html[data-pcgh-theme-resolved="light"] .pcgh-uc-pm__chat-head small,
html[data-pcgh-theme-resolved="light"] .pcgh-uc-pm-msg time,
html[data-pcgh-theme-resolved="light"] .pcgh-uc-table__head,
html[data-pcgh-theme-resolved="light"] .pcgh-uc-table__row {
	color: var(--pcgh-text-2)
}

html[data-pcgh-theme-resolved="light"] .pcgh-uc-profile-card::before {
	background: linear-gradient(180deg,rgba(var(--pcgh-primary-rgb),.08),rgba(255,255,255,0))
}

html[data-pcgh-theme-resolved="light"] .pcgh-uc-profile-head,
html[data-pcgh-theme-resolved="light"] .pcgh-uc-content__head,
html[data-pcgh-theme-resolved="light"] .pcgh-uc-profile-form .pcgh-form-actions,
html[data-pcgh-theme-resolved="light"] .pcgh-uc-table__head,
html[data-pcgh-theme-resolved="light"] .pcgh-uc-table__row,
html[data-pcgh-theme-resolved="light"] .pcgh-uc-pm__threads,
html[data-pcgh-theme-resolved="light"] .pcgh-uc-pm__chat-head,
html[data-pcgh-theme-resolved="light"] .pcgh-uc-pm__form {
	border-color: var(--pcgh-border)
}

html[data-pcgh-theme-resolved="light"] .pcgh-uc-profile-box {
	background: var(--pcgh-surface-2)
}

html[data-pcgh-theme-resolved="light"] .pcgh-uc-form .pcgh-form-row input,
html[data-pcgh-theme-resolved="light"] .pcgh-uc-form .pcgh-form-row select,
html[data-pcgh-theme-resolved="light"] .pcgh-uc-form .pcgh-form-row textarea,
html[data-pcgh-theme-resolved="light"] .pcgh-uc-pm__form textarea {
	background: #fff;
	border-color: var(--pcgh-border);
	color: var(--pcgh-text)
}

html[data-pcgh-theme-resolved="light"] .pcgh-uc-form .pcgh-form-row label {
	color: var(--pcgh-text-2)
}

html[data-pcgh-theme-resolved="light"] .pcgh-uc-signin-day,
html[data-pcgh-theme-resolved="light"] .pcgh-uc-signin-hero__day,
html[data-pcgh-theme-resolved="light"] .pcgh-uc-content-subtabs a,
html[data-pcgh-theme-resolved="light"] .pcgh-uc-pm-thread,
html[data-pcgh-theme-resolved="light"] .pcgh-uc-pm-msg p {
	background: var(--pcgh-surface-2);
	border-color: var(--pcgh-border);
	color: var(--pcgh-text)
}

html[data-pcgh-theme-resolved="light"] .pcgh-uc-signin-day b,
html[data-pcgh-theme-resolved="light"] .pcgh-uc-signin-hero__day-reward {
	color: var(--pcgh-text)
}

html[data-pcgh-theme-resolved="light"] .pcgh-uc-signin-day small,
html[data-pcgh-theme-resolved="light"] .pcgh-uc-signin-hero__day-label,
html[data-pcgh-theme-resolved="light"] .pcgh-uc-signin-hero__stat-meta {
	color: var(--pcgh-text-2)
}

html[data-pcgh-theme-resolved="light"] .pcgh-uc-signin-hero__stat-num,
html[data-pcgh-theme-resolved="light"] .pcgh-uc-signin-hero__stat-num span:first-child,
html[data-pcgh-theme-resolved="light"] .pcgh-uc-signin-hero__stat-meta b {
	color: var(--pcgh-text);
	text-shadow: none
}

html[data-pcgh-theme-resolved="light"] .pcgh-uc-content-tabs a {
	color: var(--pcgh-text-2)
}

html[data-pcgh-theme-resolved="light"] .pcgh-uc-content-tabs a.is-active,
html[data-pcgh-theme-resolved="light"] .pcgh-uc-content-card__rating {
	color: var(--pcgh-primary)
}

html[data-pcgh-theme-resolved="light"] .pcgh-uc-content-card__cover,
html[data-pcgh-theme-resolved="light"] .pcgh-uc-table__cover,
html[data-pcgh-theme-resolved="light"] .pcgh-user-table__cover,
html[data-pcgh-theme-resolved="light"] .pcgh-uc-paid-cover {
	background-color: #e5e7eb
}

html[data-pcgh-theme-resolved="light"] .pcgh-uc-content-subtabs a.is-active,
html[data-pcgh-theme-resolved="light"] .pcgh-uc-pm-thread:hover,
html[data-pcgh-theme-resolved="light"] .pcgh-uc-pm-thread.is-active {
	background: rgba(var(--pcgh-primary-rgb),.10);
	border-color: rgba(var(--pcgh-primary-rgb),.28);
	color: var(--pcgh-primary)
}

html[data-pcgh-theme-resolved="light"] .pcgh-uc-pm-msg.is-me p {
	background: var(--pcgh-primary);
	border-color: var(--pcgh-primary);
	color: #fff
}

html[data-pcgh-theme-resolved="light"] .pcgh-uc-content-card,
html[data-pcgh-theme-resolved="light"] .pcgh-uc-content-card:hover,
html[data-pcgh-theme-resolved="light"] .pcgh-uc-profile-card,
html[data-pcgh-theme-resolved="light"] .pcgh-uc-stat-card,
html[data-pcgh-theme-resolved="light"] .pcgh-uc-card {
	box-shadow: none
}

html[data-pcgh-theme-resolved="light"] .pcgh-uc-signin-calendar,
html[data-pcgh-theme-resolved="light"] .pcgh-uc-signin-rewards,
html[data-pcgh-theme-resolved="light"] .pcgh-uc-signin-reward,
html[data-pcgh-theme-resolved="light"] .pcgh-uc-table,
html[data-pcgh-theme-resolved="light"] .pcgh-user-table,
html[data-pcgh-theme-resolved="light"] .pcgh-uc-task,
html[data-pcgh-theme-resolved="light"] .pcgh-uc-task-item,
html[data-pcgh-theme-resolved="light"] .pcgh-uc-list,
html[data-pcgh-theme-resolved="light"] .pcgh-uc-list-item,
html[data-pcgh-theme-resolved="light"] .pcgh-uc-paid-item {
	background: var(--pcgh-surface);
	border-color: var(--pcgh-border);
	color: var(--pcgh-text);
	box-shadow: none
}

html[data-pcgh-theme-resolved="light"] .pcgh-uc-signin-calendar__head strong,
html[data-pcgh-theme-resolved="light"] .pcgh-uc-signin-rewards__head strong,
html[data-pcgh-theme-resolved="light"] .pcgh-uc-signin-calendar__day b,
html[data-pcgh-theme-resolved="light"] .pcgh-uc-signin-reward b,
html[data-pcgh-theme-resolved="light"] .pcgh-user-table strong,
html[data-pcgh-theme-resolved="light"] .pcgh-uc-task strong,
html[data-pcgh-theme-resolved="light"] .pcgh-uc-task-item strong,
html[data-pcgh-theme-resolved="light"] .pcgh-uc-list-item strong {
	color: var(--pcgh-text)
}

html[data-pcgh-theme-resolved="light"] .pcgh-uc-signin-calendar__head span,
html[data-pcgh-theme-resolved="light"] .pcgh-uc-signin-calendar__week span,
html[data-pcgh-theme-resolved="light"] .pcgh-uc-signin-calendar__day small,
html[data-pcgh-theme-resolved="light"] .pcgh-uc-signin-calendar__legend span,
html[data-pcgh-theme-resolved="light"] .pcgh-uc-signin-rewards__head small,
html[data-pcgh-theme-resolved="light"] .pcgh-uc-signin-reward small,
html[data-pcgh-theme-resolved="light"] .pcgh-user-table small,
html[data-pcgh-theme-resolved="light"] .pcgh-uc-task small,
html[data-pcgh-theme-resolved="light"] .pcgh-uc-task-item small,
html[data-pcgh-theme-resolved="light"] .pcgh-uc-list-item small {
	color: var(--pcgh-text-2)
}

html[data-pcgh-theme-resolved="light"] .pcgh-uc-signin-calendar__day,
html[data-pcgh-theme-resolved="light"] .pcgh-uc-signin-reward span {
	background: var(--pcgh-surface-2);
	border-color: var(--pcgh-border)
}

html[data-pcgh-theme-resolved="light"] .pcgh-uc-signin-calendar__day.is-done,
html[data-pcgh-theme-resolved="light"] .pcgh-uc-signin-reward.is-done {
	background: rgba(var(--pcgh-primary-rgb),.10);
	border-color: rgba(var(--pcgh-primary-rgb),.36);
	box-shadow: none
}

html[data-pcgh-theme-resolved="light"] .pcgh-uc-signin-calendar__day.is-done b,
html[data-pcgh-theme-resolved="light"] .pcgh-uc-signin-calendar__day.is-done small {
	color: var(--pcgh-primary)
}

html[data-pcgh-theme-resolved="light"] .pcgh-uc-signin-calendar__day.is-today,
html[data-pcgh-theme-resolved="light"] .pcgh-uc-signin-reward.is-active {
	border-color: rgba(var(--pcgh-primary-rgb),.58);
	box-shadow: none
}

html[data-pcgh-theme-resolved="light"] .pcgh-uc-signin-calendar__legend {
	border-top-color: var(--pcgh-border)
}

html[data-pcgh-theme-resolved="light"] .pcgh-libsection .pcgh-libtabs {
	background: var(--pcgh-surface);
	border-color: var(--pcgh-border);
	box-shadow: none;
	color: var(--pcgh-text)
}

html[data-pcgh-theme-resolved="light"] .pcgh-libsection .pcgh-libtab {
	background: rgba(248,250,252,.86);
	border-color: var(--pcgh-border);
	box-shadow: none;
	color: var(--pcgh-text-2)
}

html[data-pcgh-theme-resolved="light"] .pcgh-libsection .pcgh-libtab:hover {
	background: var(--pcgh-surface-2);
	border-color: rgba(var(--pcgh-primary-rgb),.32);
	box-shadow: none;
	color: var(--pcgh-text)
}

html[data-pcgh-theme-resolved="light"] .pcgh-libsection .pcgh-libtab__icon {
	background: rgba(15,23,42,.04)!important;
	border-color: rgba(15,23,42,.08)!important;
	color: var(--pcgh-text-2);
	box-shadow: none
}

html[data-pcgh-theme-resolved="light"] .pcgh-libsection .pcgh-libtab:hover .pcgh-libtab__icon {
	background: rgba(var(--pcgh-primary-rgb),.10)!important;
	border-color: rgba(var(--pcgh-primary-rgb),.24)!important;
	color: var(--pcgh-primary)
}

html[data-pcgh-theme-resolved="light"] .pcgh-libsection .pcgh-libtab strong {
	color: inherit
}

html[data-pcgh-theme-resolved="light"] .pcgh-libsection .pcgh-libtab small {
	background: rgba(15,23,42,.05);
	color: var(--pcgh-text-2)
}

html[data-pcgh-theme-resolved="light"] .pcgh-libsection .pcgh-libtab.is-active {
	background: linear-gradient(135deg,var(--pcgh-primary),#60a5fa);
	border-color: var(--pcgh-primary);
	box-shadow: none;
	color: #fff
}

html[data-pcgh-theme-resolved="light"] .pcgh-libsection .pcgh-libtab.is-active .pcgh-libtab__icon {
	background: rgba(255,255,255,.18)!important;
	border-color: rgba(255,255,255,.32)!important;
	color: #fff
}

html[data-pcgh-theme-resolved="light"] .pcgh-libsection .pcgh-libtab.is-active strong {
	color: #fff
}

html[data-pcgh-theme-resolved="light"] .pcgh-libsection .pcgh-libtab.is-active small {
	background: rgba(255,255,255,.18);
	color: rgba(255,255,255,.9)
}

html[data-pcgh-theme-resolved="light"] .pcgh-libsection .pcgh-libtab--sub .pcgh-libtab__icon i.ti {
	color: var(--pcgh-text-2)
}

html[data-pcgh-theme-resolved="light"] .pcgh-libsection .pcgh-libtab--sub:hover .pcgh-libtab__icon i.ti,
html[data-pcgh-theme-resolved="light"] .pcgh-libsection .pcgh-libtab--sub.is-active .pcgh-libtab__icon i.ti {
	color: currentColor
}

html[data-pcgh-theme-resolved="light"] .pcgh-home-all-section .pcgh-home-all__pager .page-numbers {
	background: var(--pcgh-surface);
	border-color: var(--pcgh-border);
	box-shadow: none;
	color: var(--pcgh-text-2)
}

html[data-pcgh-theme-resolved="light"] .pcgh-home-all-section .pcgh-home-all__pager .page-numbers:hover {
	background: var(--pcgh-surface-2);
	border-color: rgba(var(--pcgh-primary-rgb),.36);
	box-shadow: none;
	color: var(--pcgh-primary)
}

html[data-pcgh-theme-resolved="light"] .pcgh-home-all-section .pcgh-home-all__pager .page-numbers.current {
	background: var(--pcgh-primary);
	border-color: var(--pcgh-primary);
	box-shadow: none;
	color: #fff
}

html[data-pcgh-theme-resolved="light"] .pcgh-home-all-section .pcgh-home-all__pager .page-numbers.dots {
	background: transparent;
	border-color: transparent;
	color: var(--pcgh-text-2)
}

.pcgh-signin-widget.pcgh-signin-widget--home .pcgh-home-signin-rewards .pcgh-uc-signin-rewards__grid {
	grid-template-columns: repeat(7,minmax(0,1fr));
	gap: 10px
}

.pcgh-signin-widget.pcgh-signin-widget--home .pcgh-home-signin-rewards .pcgh-uc-signin-reward {
	min-height: 78px;
	padding: 10px 8px
}

.pcgh-signin-widget.pcgh-signin-widget--home .pcgh-home-signin-rewards .pcgh-uc-signin-reward span {
	width: 24px;
	height: 24px
}

.pcgh-signin-widget.pcgh-signin-widget--home .pcgh-home-signin-rewards .pcgh-uc-signin-reward span i[data-lucide],
.pcgh-signin-widget.pcgh-signin-widget--home .pcgh-home-signin-rewards .pcgh-uc-signin-reward span svg,
.pcgh-signin-widget.pcgh-signin-widget--home .pcgh-home-signin-rewards .pcgh-uc-signin-reward span i.ti {
	width: 15px;
	height: 15px;
	font-size: 15px
}

.pcgh-pay-qr-modal {
	position: fixed;
	inset: 0;
	z-index: 10000;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 24px
}

.pcgh-pay-qr-modal.is-open {
	display: flex
}

.pcgh-pay-qr-modal__mask {
	position: absolute;
	inset: 0;
	background: rgba(2,6,23,.76);
	backdrop-filter: blur(10px)
}

.pcgh-pay-qr-modal__panel {
	position: relative;
	width: min(420px,calc(100vw - 32px));
	padding: 26px;
	border: 1px solid rgba(148,163,184,.2);
	border-radius: 18px;
	background: linear-gradient(180deg,rgba(15,23,42,.98),rgba(8,13,28,.98));
	color: var(--pcgh-text);
	box-shadow: 0 34px 110px rgba(0,0,0,.58)
}

.pcgh-pay-qr-modal__close {
	position: absolute;
	top: 14px;
	right: 14px;
	width: 34px;
	height: 34px;
	border: 0;
	border-radius: 10px;
	background: rgba(255,255,255,.06);
	color: var(--pcgh-text-2);
	font-size: 22px;
	line-height: 1
}

.pcgh-pay-qr-modal__close:hover {
	background: rgba(255,255,255,.1);
	color: #fff
}

.pcgh-pay-qr-modal__head {
	text-align: center
}

.pcgh-pay-qr-modal__head span {
	display: inline-flex;
	margin-bottom: 10px;
	padding: 5px 11px;
	border-radius: 999px;
	background: rgba(var(--pcgh-primary-rgb),.14);
	color: var(--pcgh-primary);
	font-size: 12px;
	font-weight: 800
}

.pcgh-pay-qr-modal__head h2 {
	margin: 0;
	color: #fff;
	font-size: 24px
}

.pcgh-pay-qr-modal__head p {
	margin: 8px 0 0;
	color: var(--pcgh-text-3);
	font-size: 13px
}

.pcgh-pay-qr-modal__body {
	margin-top: 20px
}

.pcgh-pay-qr-modal__code {
	width: 260px;
	height: 260px;
	margin: 0 auto 18px;
	padding: 10px;
	border-radius: 16px;
	background: #fff;
}

.pcgh-pay-qr-modal__code img {
	display: block;
	width: 100%;
	height: 100%;
	border-radius: 10px
}

.pcgh-pay-qr-modal dl {
	display: grid;
	gap: 0;
	margin: 0;
	padding: 0;
	border: 1px solid rgba(148,163,184,.12);
	border-radius: 12px;
	overflow: hidden
}

.pcgh-pay-qr-modal dl div {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 11px 13px;
	background: rgba(15,23,42,.54);
	border-bottom: 1px solid rgba(148,163,184,.1)
}

.pcgh-pay-qr-modal dl div:last-child {
	border-bottom: 0
}

.pcgh-pay-qr-modal dt {
	color: var(--pcgh-text-3);
	font-size: 12px
}

.pcgh-pay-qr-modal dd {
	margin: 0;
	color: var(--pcgh-text);
	font-size: 12px;
	font-weight: 800;
	text-align: right;
	word-break: break-all
}

.pcgh-pay-qr-modal dd.is-amount {
	color: var(--pcgh-primary);
	font-size: 18px
}

.pcgh-pay-qr-modal__note {
	margin: 14px 0 0;
	color: var(--pcgh-text-3);
	font-size: 12px;
	line-height: 1.6;
	text-align: center
}

.pcgh-pay-qr-modal__actions {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	margin-top: 16px
}

.pcgh-pay-qr-modal__actions a,
.pcgh-pay-qr-modal__actions button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 42px;
	border-radius: 10px;
	font-size: 13px;
	font-weight: 900
}

.pcgh-pay-qr-modal__actions a {
	background: rgba(var(--pcgh-primary-rgb),.12);
	color: var(--pcgh-primary)
}

.pcgh-pay-qr-modal__actions button {
	border: 0;
	background: var(--pcgh-primary);
	color: #fff
}

html[data-pcgh-theme-resolved="light"] .pcgh-pay-qr-modal__mask {
	background: rgba(15,23,42,.38)
}

html[data-pcgh-theme-resolved="light"] .pcgh-pay-qr-modal__panel {
	background: var(--pcgh-surface);
	border-color: var(--pcgh-border);
	color: var(--pcgh-text);
	box-shadow: 0 24px 80px rgba(15,23,42,.18)
}

html[data-pcgh-theme-resolved="light"] .pcgh-pay-qr-modal__close {
	background: var(--pcgh-surface-2);
	color: var(--pcgh-text-2)
}

html[data-pcgh-theme-resolved="light"] .pcgh-pay-qr-modal__close:hover {
	background: rgba(var(--pcgh-primary-rgb),.1);
	color: var(--pcgh-primary)
}

html[data-pcgh-theme-resolved="light"] .pcgh-pay-qr-modal__head h2,
html[data-pcgh-theme-resolved="light"] .pcgh-pay-qr-modal dd {
	color: var(--pcgh-text)
}

html[data-pcgh-theme-resolved="light"] .pcgh-pay-qr-modal__head p,
html[data-pcgh-theme-resolved="light"] .pcgh-pay-qr-modal dt,
html[data-pcgh-theme-resolved="light"] .pcgh-pay-qr-modal__note {
	color: var(--pcgh-text-2)
}

html[data-pcgh-theme-resolved="light"] .pcgh-pay-qr-modal dl {
	border-color: var(--pcgh-border)
}

html[data-pcgh-theme-resolved="light"] .pcgh-pay-qr-modal dl div {
	background: var(--pcgh-surface-2);
	border-bottom-color: var(--pcgh-border)
}

html[data-pcgh-theme-resolved="light"] .pcgh-pay-qr-modal dd.is-amount {
	color: var(--pcgh-primary)
}

.pcgh-comments .pcgh-rating-input {
	background: rgba(15,23,42,.46);
	border-color: rgba(148,163,184,.14);
	box-shadow: inset 0 1px 0 rgba(255,255,255,.03)
}

.pcgh-comments .pcgh-rating-input__label {
	color: var(--pcgh-text);
	font-weight: 800
}

.pcgh-comments .pcgh-rating-input__star {
	color: rgba(203,213,225,.34)
}

.pcgh-comments .pcgh-rating-input__star:hover,
.pcgh-comments .pcgh-rating-input__star.is-active {
	color: #facc15
}

.pcgh-comments .pcgh-rating-input__star i[data-lucide],
.pcgh-comments .pcgh-rating-input__star .ti {
	width: 24px;
	height: 24px;
	stroke: currentColor;
	fill: transparent
}

.pcgh-comments .pcgh-rating-input__star:hover i[data-lucide],
.pcgh-comments .pcgh-rating-input__star.is-active i[data-lucide] {
	fill: #facc15;
	filter: drop-shadow(0 0 5px rgba(250,204,21,.46))
}

.pcgh-comments .pcgh-rating-input__hint {
	color: var(--pcgh-text-3)
}

html[data-pcgh-theme-resolved="light"] .pcgh-comments .pcgh-rating-input {
	background: var(--pcgh-surface-2);
	border-color: var(--pcgh-border);
	box-shadow: none
}

html[data-pcgh-theme-resolved="light"] .pcgh-comments .pcgh-rating-input__label {
	color: var(--pcgh-text)
}

html[data-pcgh-theme-resolved="light"] .pcgh-comments .pcgh-rating-input__star {
	color: #cbd5e1
}

html[data-pcgh-theme-resolved="light"] .pcgh-comments .pcgh-rating-input__star:hover,
html[data-pcgh-theme-resolved="light"] .pcgh-comments .pcgh-rating-input__star.is-active {
	color: #f59e0b
}

html[data-pcgh-theme-resolved="light"] .pcgh-comments .pcgh-rating-input__star:hover i[data-lucide],
html[data-pcgh-theme-resolved="light"] .pcgh-comments .pcgh-rating-input__star.is-active i[data-lucide] {
	fill: #f59e0b;
	filter: drop-shadow(0 0 4px rgba(245,158,11,.28))
}

html[data-pcgh-theme-resolved="light"] .pcgh-comments .pcgh-rating-input__hint {
	color: var(--pcgh-text-2)
}

html[data-pcgh-theme-resolved="light"] .pcgh-emoji-pack__toggle {
	background: var(--pcgh-surface-2);
	border-color: var(--pcgh-border);
	color: var(--pcgh-text)
}

html[data-pcgh-theme-resolved="light"] .pcgh-emoji-pack__toggle:hover,
html[data-pcgh-theme-resolved="light"] .pcgh-emoji-pack.is-open .pcgh-emoji-pack__toggle {
	background: rgba(var(--pcgh-primary-rgb),.1);
	border-color: rgba(var(--pcgh-primary-rgb),.42);
	color: var(--pcgh-primary)
}

html[data-pcgh-theme-resolved="light"] .pcgh-emoji-pack__panel {
	background: #fff;
	border-color: var(--pcgh-border);
	box-shadow: 0 18px 48px rgba(15,23,42,.14)
}

html[data-pcgh-theme-resolved="light"] .pcgh-emoji-pack__picker {
	background: #fff;
	color: var(--pcgh-text)
}

html[data-pcgh-theme-resolved="light"] .pcgh-emoji-pack__picker em-emoji-picker {
	--rgb-background: 255,255,255;
	--rgb-color: 15,23,42;
	--rgb-accent: var(--pcgh-primary-rgb);
	--color-border: var(--pcgh-border)
}

