/* BBWTinder.com — 首页专用样式 */

:root {
	--bg-deep: #0f0e12;
	--bg-card: rgba(255, 255, 255, 0.04);
	--text: #e8e6ed;
	--text-muted: #9b96a8;
	--accent: #ff5c7a;
	--accent-soft: rgba(255, 92, 122, 0.2);
	--line: rgba(255, 255, 255, 0.08);
	--radius: 16px;
	--radius-lg: 24px;
	--font-sans: "Manrope", system-ui, sans-serif;
	/* Fixed nav + safe area: anchor #download scrolls store badges below header */
	--home-nav-scroll-padding: calc(76px + env(safe-area-inset-top, 0px));
	/* 内页 fixed 顶栏占位：安全区 + 导航条主体高度 */
	--site-header-inner-block: calc(56px + env(safe-area-inset-top, 0px));
}

html {
	scroll-padding-top: var(--home-nav-scroll-padding);
}

.home-body *,
.home-body *::before,
.home-body *::after {
	box-sizing: border-box;
}

.home-body img {
	max-width: 100%;
	height: auto;
	vertical-align: middle;
	border: 0;
}

.home-body {
	margin: 0;
	min-height: 100vh;
	background: var(--bg-deep);
	color: var(--text);
	font-family: var(--font-sans);
	font-size: 16px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

.home-body a {
	color: var(--accent);
	text-decoration: none;
	transition: color 0.2s ease, opacity 0.2s ease;
}

.home-body a:hover {
	color: #ff8a9d;
}

.home-skip {
	position: absolute;
	left: -9999px;
	top: auto;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.home-skip:focus {
	left: 16px;
	top: 16px;
	width: auto;
	height: auto;
	padding: 8px 14px;
	background: var(--accent);
	color: #fff;
	border-radius: 8px;
	z-index: 200;
}

.visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* 导航 */
.home-nav {
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	background: rgba(15, 14, 18, 0.75);
	border-bottom: 1px solid var(--line);
}

.home-nav--overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	background: rgba(15, 14, 18, 0.42);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.home-nav--overlay .home-brand {
	color: #fff;
}

.home-nav--overlay .home-nav__links a {
	color: rgba(255, 255, 255, 0.82);
}

.home-nav--overlay .home-nav__links a:hover {
	color: #fff;
}

.home-nav__inner {
	max-width: 1120px;
	margin: 0 auto;
	padding: 14px 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.home-brand {
	font-weight: 800;
	font-size: 1.15rem;
	letter-spacing: -0.02em;
	color: var(--text);
}

.home-brand span {
	color: var(--accent);
}

.home-nav__links {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px 20px;
	justify-content: flex-end;
}

.home-nav__links a {
	color: var(--text-muted);
	font-size: 0.9rem;
	font-weight: 500;
}

.home-nav__links a:hover {
	color: var(--text);
}

/* 内页顶栏：固定顶部（与首页一致始终可见） */
#site-header {
	min-height: 0;
}

.home-nav--inner {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	padding-top: env(safe-area-inset-top, 0px);
	background: rgba(15, 14, 18, 0.92);
	border-bottom: 1px solid var(--line);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	box-sizing: border-box;
}

.home-nav--inner .home-brand {
	color: #fff;
}

.home-nav--inner .home-nav__links a {
	color: rgba(255, 255, 255, 0.82);
}

.home-nav--inner .home-nav__links a:hover {
	color: #fff;
}

/* 全屏顶区 + 背景轮播 */
.home-top {
	position: relative;
	min-height: 100vh;
	min-height: 100dvh;
	isolation: isolate;
}

.home-carousel {
	position: absolute;
	inset: 0;
	z-index: 0;
	overflow: hidden;
}

.home-carousel__slide {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	opacity: 0;
	transition: opacity 1.1s ease-in-out;
	pointer-events: none;
}

.home-carousel__slide.is-active {
	opacity: 1;
}

.home-carousel__overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	background:
		linear-gradient(180deg, rgba(10, 8, 14, 0.55) 0%, rgba(10, 8, 14, 0.35) 38%, rgba(10, 8, 14, 0.65) 100%),
		radial-gradient(ellipse 90% 70% at 50% 40%, transparent 0%, rgba(10, 8, 14, 0.45) 100%);
}

.home-carousel__dots {
	position: absolute;
	left: 50%;
	bottom: max(24px, env(safe-area-inset-bottom, 0px));
	transform: translateX(-50%);
	z-index: 3;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	max-width: calc(100% - 48px);
	gap: 8px;
	align-items: center;
}

.home-carousel__dot {
	width: 10px;
	height: 10px;
	padding: 0;
	border: 2px solid rgba(255, 255, 255, 0.65);
	border-radius: 50%;
	background: transparent;
	cursor: pointer;
	transition: background 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.home-carousel__dot:hover {
	border-color: #fff;
}

.home-carousel__dot.is-active {
	background: #fff;
	border-color: #fff;
	transform: scale(1.15);
}

@media (prefers-reduced-motion: reduce) {
	.home-carousel__slide {
		transition: none;
	}

	.home-carousel__slide:not(.is-active) {
		opacity: 0;
	}

	.home-carousel__slide.is-active {
		opacity: 1;
	}
}

/* Hero（叠在轮播上） */
.home-hero {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 100vh;
	min-height: 100dvh;
	padding: calc(88px + env(safe-area-inset-top, 0px)) 24px calc(72px + env(safe-area-inset-bottom, 0px));
	text-align: center;
}

.home-hero__inner {
	position: relative;
	max-width: 1120px;
	margin: 0 auto;
	width: 100%;
}

.home-hero__inner--carousel {
	max-width: 52rem;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.home-hero__badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 6px 14px;
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 999px;
	font-size: 0.8125rem;
	color: rgba(255, 255, 255, 0.88);
	margin-bottom: 20px;
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
}

.home-hero__badge-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #4ade80;
	box-shadow: 0 0 12px #4ade80;
}

.home-hero h1 {
	margin: 0 auto 16px;
	font-size: clamp(2rem, 5vw, 3.25rem);
	font-weight: 800;
	line-height: 1.12;
	letter-spacing: -0.03em;
	color: #fff;
	text-align: center;
	text-shadow: 0 2px 28px rgba(0, 0, 0, 0.45);
}

.home-hero__lead {
	margin: 0 0 28px;
	font-size: 1.0625rem;
	color: rgba(255, 255, 255, 0.88);
	max-width: 36em;
	width: 100%;
	text-shadow: 0 1px 16px rgba(0, 0, 0, 0.35);
	text-align: center;
}

.home-hero__stores {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	align-items: center;
	justify-content: center;
	width: 100%;
	max-width: 100%;
}

.home-hero__stores a {
	display: inline-block;
	line-height: 0;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.home-hero__stores a:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}

.home-hero__stores img {
	display: block;
	width: 168px;
	height: auto;
}

/* 手机展示区 */
.home-mock {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 320px;
}

.home-mock__frame {
	position: relative;
	width: min(280px, 78vw);
	aspect-ratio: 9 / 18.5;
	border-radius: 36px;
	border: 3px solid rgba(255, 255, 255, 0.12);
	background: linear-gradient(165deg, #1a1822 0%, #121016 100%);
	box-shadow:
		0 0 0 1px rgba(255, 255, 255, 0.06),
		0 40px 80px -20px rgba(0, 0, 0, 0.6),
		inset 0 1px 0 rgba(255, 255, 255, 0.08);
	overflow: hidden;
}

.home-mock__notch {
	position: absolute;
	top: 10px;
	left: 50%;
	transform: translateX(-50%);
	width: 100px;
	height: 28px;
	background: #0a090c;
	border-radius: 0 0 16px 16px;
	z-index: 2;
}

.home-mock__screen {
	position: absolute;
	inset: 14px;
	border-radius: 26px;
	background:
		linear-gradient(145deg, rgba(255, 92, 122, 0.15) 0%, transparent 45%),
		linear-gradient(210deg, rgba(130, 90, 255, 0.12) 0%, transparent 40%),
		#16141c;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 24px;
	text-align: center;
}

.home-mock__avatar {
	width: 88px;
	height: 88px;
	border-radius: 50%;
	background: linear-gradient(135deg, #ff8a9d, #c084fc);
	margin-bottom: 16px;
	box-shadow: 0 12px 40px rgba(255, 92, 122, 0.35);
}

.home-mock__name {
	font-weight: 800;
	font-size: 1.125rem;
	margin-bottom: 4px;
}

.home-mock__tag {
	font-size: 0.8125rem;
	color: var(--text-muted);
}

.home-mock__actions {
	display: flex;
	gap: 16px;
	margin-top: 28px;
}

.home-mock__btn {
	width: 52px;
	height: 52px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.35rem;
	border: none;
	cursor: default;
}

.home-mock__btn--no {
	background: rgba(255, 255, 255, 0.08);
	color: #f87171;
}

.home-mock__btn--yes {
	background: linear-gradient(135deg, #ff5c7a, #e63d6a);
	color: #fff;
	box-shadow: 0 8px 24px var(--accent-soft);
}

.home-mock__glow {
	position: absolute;
	width: 140%;
	height: 60%;
	bottom: -10%;
	left: 50%;
	transform: translateX(-50%);
	background: radial-gradient(ellipse, rgba(255, 92, 122, 0.25), transparent 70%);
	filter: blur(40px);
	pointer-events: none;
}

/* 特性 */
.home-features {
	padding: 56px 24px 80px;
	max-width: 1120px;
	margin: 0 auto;
}

.home-features__title {
	margin: 0 0 32px;
	text-align: center;
	font-size: clamp(1.25rem, 2.5vw, 1.5rem);
	font-weight: 800;
	letter-spacing: -0.02em;
	color: var(--text);
}

.home-features__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
}

@media (min-width: 640px) {
	.home-features__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 960px) {
	.home-features__grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

.home-card {
	padding: 24px;
	background: var(--bg-card);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	text-align: left;
	transition: border-color 0.2s ease, background 0.2s ease;
}

.home-card:hover {
	border-color: rgba(255, 92, 122, 0.25);
	background: rgba(255, 255, 255, 0.06);
}

.home-card__icon {
	font-size: 1.75rem;
	line-height: 1;
	margin-bottom: 12px;
}

.home-card h3 {
	margin: 0 0 8px;
	font-size: 1.0625rem;
	font-weight: 700;
	color: var(--text);
}

.home-card p {
	margin: 0;
	font-size: 0.9rem;
	color: var(--text-muted);
	line-height: 1.55;
}

/* 正文区 */
.home-article {
	padding: 72px 24px;
	border-top: 1px solid var(--line);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, transparent 100%);
}

.home-article__inner {
	max-width: 720px;
	margin: 0 auto;
	text-align: left;
}

.home-article--visual .home-article__layout {
	max-width: 1040px;
	margin: 0 auto;
}

.home-article__head {
	text-align: center;
	margin-bottom: 40px;
}

.home-article--visual .home-article__sub {
	margin: 0;
	max-width: 36em;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	color: var(--text-muted);
	font-size: 1.05rem;
	line-height: 1.55;
}

/* 三列主题卡 */
.home-article__topics {
	display: grid;
	gap: 16px;
	margin-bottom: 36px;
}

@media (min-width: 720px) {
	.home-article__topics {
		grid-template-columns: repeat(3, 1fr);
		gap: 20px;
	}
}

.home-topic {
	margin: 0;
	padding: 22px 20px;
	background: var(--bg-card);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	text-align: left;
	transition: border-color 0.2s ease, background 0.2s ease;
}

.home-topic:hover {
	border-color: rgba(255, 92, 122, 0.22);
	background: rgba(255, 255, 255, 0.06);
}

.home-topic__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	margin-bottom: 14px;
	font-size: 1.25rem;
	line-height: 1;
	border-radius: 12px;
	background: var(--accent-soft);
	color: var(--accent);
	border: 1px solid rgba(255, 92, 122, 0.25);
}

.home-topic__title {
	margin: 0 0 10px;
	font-size: 1.0625rem;
	font-weight: 700;
	color: var(--text);
}

.home-topic__text {
	margin: 0;
	font-size: 0.9375rem;
	line-height: 1.6;
	color: var(--text-muted);
}

.home-topic__text strong {
	color: rgba(232, 230, 237, 0.92);
	font-weight: 600;
}

/* 三项原则条 */
.home-pillars {
	list-style: none;
	margin: 0 0 36px;
	padding: 0;
	display: grid;
	gap: 12px;
}

@media (min-width: 800px) {
	.home-pillars {
		grid-template-columns: repeat(3, 1fr);
		gap: 16px;
	}
}

.home-pillar {
	display: flex;
	gap: 14px;
	align-items: flex-start;
	margin: 0;
	padding: 18px 18px 18px 16px;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	border-left: 3px solid var(--accent);
}

.home-pillar__mark {
	flex-shrink: 0;
	width: 28px;
	height: 28px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.8125rem;
	font-weight: 800;
	color: var(--accent);
	opacity: 0.9;
}

.home-pillar__body {
	display: flex;
	flex-direction: column;
	gap: 4px;
	min-width: 0;
}

.home-pillar__label {
	font-size: 0.9375rem;
	font-weight: 700;
	color: var(--text);
}

.home-pillar__text {
	font-size: 0.875rem;
	line-height: 1.5;
	color: var(--text-muted);
}

/* 正文区下载徽章 */
.home-article__cta {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 14px;
	padding: 28px 20px 8px;
	margin-top: 8px;
	border-radius: var(--radius-lg);
	border: 1px solid var(--line);
	background: rgba(255, 255, 255, 0.03);
}

.home-article__cta-label {
	margin: 0;
	font-size: 0.8125rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--text-muted);
}

.home-article__stores {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 14px;
}

.home-article__stores a {
	display: inline-block;
	line-height: 0;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.home-article__stores a:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 36px rgba(0, 0, 0, 0.45);
}

.home-article__stores img {
	display: block;
	width: 168px;
	height: auto;
}

.home-article__cta-note {
	margin: 0;
	font-size: 0.875rem;
	color: var(--text-muted);
}

.home-article__cta-note a {
	font-weight: 600;
	color: var(--accent) !important;
}

.home-article__cta-note a:hover {
	color: #ff8a9d !important;
}

.home-article h2 {
	margin: 0 0 12px;
	font-size: clamp(1.5rem, 3vw, 2rem);
	font-weight: 800;
	letter-spacing: -0.02em;
	color: var(--text);
	text-align: center;
}

.home-article__sub {
	margin: 0 0 40px;
	text-align: center;
	color: var(--text-muted);
	font-size: 1rem;
}

.home-article p {
	margin: 0 0 1.15em;
	color: var(--text-muted);
	font-size: 1rem;
	line-height: 1.75;
}

.home-article p:last-of-type {
	margin-bottom: 0;
}

.home-article ul:not(.home-pillars) {
	margin: 1em 0 1.25em;
	padding-left: 1.25em;
	color: var(--text-muted);
}

.home-article ul:not(.home-pillars) li {
	margin-bottom: 0.5em;
}

/* 页脚 */
.home-footer {
	padding: 0;
	border-top: 1px solid var(--line);
	background: rgba(0, 0, 0, 0.2);
}

.home-footer__inner {
	max-width: 1040px;
	margin: 0 auto;
	padding: 32px 24px 24px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 24px 32px;
}

.home-footer__nav {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 6px 4px;
	margin: 0;
}

.home-footer__nav a {
	color: var(--text-muted);
	font-size: 0.875rem;
	font-weight: 500;
	padding: 6px 12px;
	border-radius: 8px;
	transition: color 0.2s ease, background 0.2s ease;
}

.home-footer__nav a:hover {
	color: var(--text);
	background: rgba(255, 255, 255, 0.06);
}

.home-footer__nav a:not(:last-child) {
	border-right: 1px solid var(--line);
	margin-right: 4px;
	padding-right: 16px;
}

.home-footer__share {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px 14px;
	margin: 0;
}

.home-footer__share-label {
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--text-muted);
	opacity: 0.9;
}

.home-footer__share-btns {
	display: flex;
	align-items: center;
	gap: 10px;
}

.home-footer__share-btns a {
	display: inline-flex;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--bg-card);
	border: 1px solid var(--line);
	text-indent: -9999px;
	overflow: hidden;
	background-repeat: no-repeat;
	background-size: 14px auto;
	transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.home-footer__share-btns a:hover {
	transform: translateY(-2px);
	border-color: rgba(255, 92, 122, 0.35);
}

.home-footer__share-btns a.icon_facebook {
	background-image: url(icon_blog_socials.png);
	background-position: 13px 9px;
	background-color: rgba(255, 92, 122, 0.12);
	border-color: rgba(255, 92, 122, 0.22);
}

.home-footer__share-btns a.icon_twitter {
	background-image: url(icon_blog_socials.png);
	background-position: 12px -19px;
	background-color: rgba(255, 92, 122, 0.12);
	border-color: rgba(255, 92, 122, 0.22);
}

.home-footer__copy {
	margin: 0;
	padding: 16px 24px 28px;
	font-size: 0.8125rem;
	color: var(--text-muted);
	text-align: center;
	opacity: 0.85;
	border-top: 1px solid var(--line);
}

.home-footer__copy a {
	color: var(--text-muted);
}

.home-footer__copy a:hover {
	color: var(--accent);
}

@media (max-width: 640px) {
	.home-footer__inner {
		flex-direction: column;
		align-items: stretch;
		text-align: center;
		padding: 28px 20px 20px;
		gap: 20px;
	}

	.home-footer__nav {
		justify-content: center;
		gap: 4px 0;
	}

	.home-footer__nav a {
		padding: 8px 14px;
	}

	.home-footer__nav a:not(:last-child) {
		border-right: none;
		margin-right: 0;
	}

	.home-footer__share {
		justify-content: center;
		padding-top: 4px;
		border-top: 1px solid var(--line);
		margin: 0 -4px 0;
		padding-left: 4px;
		padding-right: 4px;
		padding-bottom: 4px;
	}
}

@media (max-width: 640px) {
	:root {
		/* Shorter bar without CTA; allow one wrapped link row */
		--home-nav-scroll-padding: calc(88px + env(safe-area-inset-top, 0px));
		--site-header-inner-block: calc(68px + env(safe-area-inset-top, 0px));
	}

	.home-nav__inner {
		padding: 10px 16px;
		align-items: center;
		gap: 10px 12px;
	}

	.home-nav__links {
		flex: 1 1 auto;
		justify-content: flex-end;
		gap: 6px 14px;
		max-width: 100%;
	}

	.home-nav__links a {
		font-size: 0.8125rem;
		white-space: nowrap;
	}
}

@media (max-width: 380px) {
	:root {
		--home-nav-scroll-padding: calc(104px + env(safe-area-inset-top, 0px));
		--site-header-inner-block: calc(84px + env(safe-area-inset-top, 0px));
	}

	.home-nav__inner {
		flex-wrap: wrap;
	}

	.home-nav__links {
		flex: 1 1 100%;
		justify-content: space-between;
		gap: 8px 10px;
	}

	.home-nav__links a {
		white-space: normal;
		text-align: center;
		flex: 1 1 calc(33.333% - 8px);
		min-width: 0;
	}
}

@media (max-width: 480px) {
	.home-hero__stores img,
	.home-article__stores img {
		width: 148px;
	}
}

/* In-page #download: zero-height anchor directly above store badges */
.home-download-target {
	height: 0;
	margin: 0;
	padding: 0;
	overflow: visible;
	outline: none;
}

/* —— 内页共用布局（partials header/footer） —— */
.home-body .site-legal h1 {
	margin-top: 0;
	padding-bottom: 12px;
	font-size: clamp(1.5rem, 3vw, 1.85rem);
}

.home-body .site-legal h2 {
	float: none;
	width: auto;
	margin: 2em 0 0.65em;
	padding: 0;
	font-size: 1.125rem;
	font-weight: 700;
	color: var(--text);
	border: none;
}

.home-body .site-legal h2:first-of-type,
.home-body .site-legal h1 + h2 {
	margin-top: 0.5em;
}

.home-body .innerpage a {
	color: var(--accent);
}

.home-body .innerpage a:hover {
	color: #ff8a9d;
}

.site-partial-error {
	max-width: 720px;
	margin: 16px auto;
	padding: 12px 16px;
	text-align: center;
	font-size: 0.875rem;
	color: #fecaca;
	background: rgba(220, 38, 38, 0.15);
	border-radius: 8px;
}

.site-inner {
	max-width: 1120px;
	margin: 0 auto;
	padding: calc(28px + var(--site-header-inner-block)) 24px 64px;
	box-sizing: border-box;
}

/* Dating tips 索引页 */
.site-inner--tips {
	max-width: 800px;
}

.tips-page-head {
	margin-bottom: 32px;
	text-align: center;
}

.tips-page-head h1 {
	margin: 0 0 12px;
	font-size: clamp(1.75rem, 4vw, 2.25rem);
	font-weight: 800;
	letter-spacing: -0.03em;
	color: var(--text);
	line-height: 1.15;
}

.tips-page-lead {
	margin: 0 auto;
	max-width: 40em;
	font-size: 1.0625rem;
	line-height: 1.6;
	color: var(--text-muted);
}

.tips-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0;
}

.tips-list li {
	margin: 0;
	border-bottom: 1px solid var(--line);
}

.tips-list li:first-child {
	border-top: 1px solid var(--line);
}

.tips-list a {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	padding: 20px 16px;
	margin: 0 -16px;
	border-radius: var(--radius);
	color: var(--text) !important;
	font-size: 1.0625rem;
	font-weight: 600;
	line-height: 1.4;
	transition: background 0.2s ease, color 0.2s ease;
}

.tips-list a::before {
	content: "→";
	flex-shrink: 0;
	margin-top: 2px;
	font-weight: 700;
	color: var(--accent);
	opacity: 0.85;
}

.tips-list a:hover {
	background: rgba(255, 255, 255, 0.05);
	color: var(--accent) !important;
}

/* 旧版文章区在深色主题下的兼容 */
.home-body .page_width {
	width: 100%;
	max-width: 900px;
	margin: 0 auto;
	padding: 0 16px;
	box-sizing: border-box;
}

.home-body .innerpage {
	float: none;
	width: auto;
	margin: 0 auto 48px;
	overflow: visible;
	line-height: 1.7;
	color: var(--text-muted);
}

.home-body .innerpage h1,
.home-body .innerpage h2 {
	float: none;
	width: auto;
	color: var(--text);
}

.home-body .innerpage h1 {
	font-size: clamp(1.5rem, 3vw, 1.85rem);
	padding: 0 0 16px;
	margin: 0;
}

.home-body .innerpage p {
	float: none;
	width: auto;
	padding: 8px 0;
}

.home-body .innerpage ul,
.home-body .innerpage ol {
	float: none;
	width: auto;
}

.home-body .innerpage ul.bloglist {
	padding: 0;
	margin: 0;
}

.home-body .innerpage ul.bloglist h2 {
	float: none;
	width: auto;
	font-size: 1.35rem;
	line-height: 1.35;
	font-weight: 700;
	padding: 0 0 8px;
	margin: 0;
}

.home-body .innerpage ul.bloglist h2 a {
	color: var(--text) !important;
}

.home-body .innerpage ul.bloglist h2 a:hover {
	color: var(--accent) !important;
}

.home-body .innerpage ul.bloglist li {
	padding: 28px 0;
	border-bottom-color: var(--line);
}

.home-body .innerpage ul.bloglist p {
	color: var(--text-muted);
}
