/**
 * Full redesign of the six homepage sections reachable from the main nav:
 * 新宝娱乐注册(gift) / 代理加盟(products) / APP下载(introduce) /
 * 优惠活动(faq) / 新手教程(tutorial) / 常见问题(dynamic).
 *
 * Palette follows the site's own primary blue (#597ef7, see themes.css
 * --primary-color / --button-bg) rather than an invented accent color.
 * The section header (.lux-head) mirrors the site's existing archive/hub
 * page title style: plain white title + centered accent-on-line + caption
 * (see template-parts/legacy/content-gushi.php .section-title-wrapper).
 *
 * These sections use dedicated "lux-" markup (see template-parts/*.php),
 * so this stylesheet is fully self-contained and does not depend on, or
 * fight the cascade of, the legacy milan/common/home CSS.
 */

:root {
	--lux-accent: var(--primary-color, #597ef7);
	--lux-accent-light: #8ea6f7;
	--lux-accent-deep: #3960d5;
	--lux-accent-gradient: var(--button-bg, linear-gradient(180deg, #8ea6f7, #4d73e5));
	--lux-ink: var(--body-bg-color, #07111e);
	--lux-ink-alt: #171d34;
	--lux-panel: rgba(255, 255, 255, 0.04);
	--lux-panel-strong: rgba(255, 255, 255, 0.06);
	--lux-border: rgba(89, 126, 247, 0.25);
	--lux-border-soft: rgba(255, 255, 255, 0.08);
	--lux-text: var(--title-color, rgba(255, 255, 255, 0.92));
	--lux-text-dim: var(--desc-color, rgba(255, 255, 255, 0.6));
	--lux-text-faint: rgba(255, 255, 255, 0.4);
	--lux-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
	--lux-radius: 18px;
	--lux-max: 1200px;
}

.lux-section {
	position: relative;
	width: 100%;
	padding: 88px 0;
	background: var(--lux-ink);
	overflow: hidden;
	box-sizing: border-box;
}

/* Tuck the first section up under the floating portal bar (see portal-bar.css / xk-hero.css). */
@media screen and (min-width: 1201px) {
	#gift.lux-section {
		margin-top: -60px;
		padding-top: 40px;
	}

	/* Fade the hero photo into the flat page background instead of a hard seam
	   (home-colors.css disables this ::after by default — re-enable it here). */
	.site.site--xk-layout .site-bg::after {
		content: "";
		display: block;
		position: absolute;
		left: 0;
		right: 0;
		bottom: 0;
		height: 180px;
		background: linear-gradient(180deg, transparent, var(--lux-ink, #07111e));
		pointer-events: none;
		z-index: 3;
	}
}

.lux-section::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(600px 300px at 15% 0%, rgba(89, 126, 247, 0.06), transparent 60%),
		radial-gradient(600px 300px at 85% 100%, rgba(89, 126, 247, 0.05), transparent 60%);
	pointer-events: none;
}

.lux-section:nth-of-type(even) {
	background: var(--lux-ink-alt);
}

.lux-section > * {
	position: relative;
	z-index: 1;
}

.lux-section [class$="__grid"],
.lux-section [class$="__table"],
.lux-section [class$="__steps"],
.lux-section [class$="__benefits"],
.lux-register__stats,
.lux-tutorial__body,
.lux-tutorial__stats-bar {
	max-width: var(--lux-max);
	margin: 0 auto;
	box-sizing: border-box;
}

/* ---------------------------------------------------------------------- */
/* 共用标题                                                                 */
/* ---------------------------------------------------------------------- */

.lux-head {
	max-width: var(--lux-max);
	margin: 0 auto 48px;
	padding: 0 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	box-sizing: border-box;
}

.lux-head__title {
	order: 1;
	margin: 0;
	font-size: 32px;
	font-weight: 700;
	letter-spacing: 1px;
	color: #fff;
}

.lux-head__line {
	order: 2;
	position: relative;
	width: 320px;
	max-width: 100%;
	height: 1px;
	margin: 16px 0 14px;
	background: rgba(255, 255, 255, 0.12);
}

.lux-head__line::before {
	content: "";
	position: absolute;
	top: -1px;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 3px;
	background: var(--lux-accent);
}

.lux-head__subtitle {
	order: 3;
	margin-top: 0;
	font-size: 13px;
	letter-spacing: 0.5px;
	color: var(--lux-text-dim);
	opacity: 1;
}

.lux-head__desc {
	order: 4;
	max-width: 720px;
	margin: 14px 0 0;
	font-size: 13px;
	line-height: 1.8;
	color: var(--lux-text-dim);
}

/* ---------------------------------------------------------------------- */
/* #gift — 新宝娱乐注册                                                      */
/* ---------------------------------------------------------------------- */

.lux-register {
	overflow: hidden;
}

.lux-register__bg {
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse 50% 40% at 50% 0%, rgba(89, 126, 247, 0.08), transparent 60%);
	pointer-events: none;
}

.lux-register__inner {
	position: relative;
	z-index: 1;
	max-width: var(--lux-max);
	margin: 0 auto;
	padding: 0 20px;
	box-sizing: border-box;
}

.lux-register__flow {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
	position: relative;
	padding: 8px 0 36px;
}

.lux-register__flow::before {
	content: "";
	position: absolute;
	top: 36px;
	left: 12%;
	right: 12%;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(89, 126, 247, 0.35), transparent);
	pointer-events: none;
}

.lux-register__step {
	position: relative;
	text-align: center;
	padding: 0 8px;
	background: none;
	border: none;
	box-shadow: none;
}

.lux-register__step-head {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	margin-bottom: 18px;
}

.lux-register__step-icon {
	width: 56px;
	height: 56px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	color: var(--button-color, #fff);
	background: var(--button-bg, linear-gradient(180deg, #8ea6f7, #4d73e5));
	box-shadow: 0 6px 20px rgba(89, 126, 247, 0.25);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lux-register__step:hover .lux-register__step-icon {
	transform: translateY(-3px);
	box-shadow: 0 10px 28px rgba(89, 126, 247, 0.35);
}

.lux-register__step-icon svg {
	width: 24px;
	height: 24px;
}

.lux-register__step-num {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 2px;
	color: var(--primary-color, #597ef7);
}

.lux-register__step h3 {
	margin: 0 0 10px;
	font-size: 17px;
	font-weight: 700;
	color: var(--lux-text);
}

.lux-register__step p {
	margin: 0;
	font-size: 13px;
	line-height: 1.8;
	color: var(--lux-text-dim);
}

.lux-register__stats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0;
	padding-top: 32px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.lux-register__stat {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 8px 12px;
}

.lux-register__stat span {
	font-size: 26px;
	font-weight: 800;
	line-height: 1.2;
	background: var(--banner-title-gradient, var(--button-bg, linear-gradient(180deg, #8ea6f7, #4d73e5)));
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.lux-register__stat em {
	margin-top: 6px;
	font-style: normal;
	font-size: 13px;
	color: var(--lux-text-dim);
}

/* ---------------------------------------------------------------------- */
/* #products — 代理加盟                                                      */
/* ---------------------------------------------------------------------- */

.lux-agent__table {
	border-radius: var(--lux-radius);
	overflow: hidden;
	background: var(--lux-panel);
	border: 1px solid var(--lux-border-soft);
	box-shadow: var(--lux-shadow);
}

.lux-agent__row {
	display: grid;
	grid-template-columns: 1fr 1fr 1.2fr;
	align-items: center;
	text-align: center;
	min-height: 56px;
	border-bottom: 1px solid var(--lux-border-soft);
	font-size: 14px;
	color: var(--lux-text);
}

.lux-agent__row:last-child {
	border-bottom: none;
}

.lux-agent__row--head {
	background: linear-gradient(180deg, rgba(89, 126, 247, 0.22), rgba(57, 96, 213, 0.08));
	color: var(--lux-accent-light);
	font-weight: 700;
	letter-spacing: 3px;
	font-size: 13px;
	border-bottom: 1px solid var(--lux-border);
}

.lux-agent__row:nth-child(even):not(.lux-agent__row--head) {
	background: rgba(255, 255, 255, 0.015);
}

.lux-agent__row:not(.lux-agent__row--head):hover {
	background: rgba(89, 126, 247, 0.08);
}

.lux-agent__rate {
	color: var(--lux-accent-light);
	font-weight: 700;
}

.lux-agent__row.is-premium {
	position: relative;
	background: linear-gradient(90deg, rgba(89, 126, 247, 0.14), rgba(89, 126, 247, 0.02)) !important;
}

.lux-agent__row.is-premium::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 3px;
	background: var(--lux-accent-gradient);
}

.lux-agent__benefits {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
	padding: 40px 20px 0;
}

.lux-agent__benefit {
	padding: 22px 18px;
	border-radius: 14px;
	background: linear-gradient(165deg, rgba(89, 126, 247, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
	border: none;
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.06),
		0 2px 16px rgba(0, 0, 0, 0.12);
	transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.lux-agent__benefit:hover {
	transform: translateY(-3px);
	background: linear-gradient(165deg, rgba(89, 126, 247, 0.1) 0%, rgba(255, 255, 255, 0.03) 100%);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.08),
		0 8px 24px rgba(89, 126, 247, 0.1);
}

.lux-agent__benefit h3 {
	margin: 0 0 10px;
	font-size: 15px;
	font-weight: 700;
	color: var(--lux-accent-light);
}

.lux-agent__benefit p {
	margin: 0;
	font-size: 12px;
	line-height: 1.8;
	color: var(--lux-text-dim);
}

.lux-agent__cta {
	display: flex;
	justify-content: center;
	padding: 36px 20px 0;
}

/* ---------------------------------------------------------------------- */
/* #introduce — APP下载                                                     */
/* ---------------------------------------------------------------------- */

.lux-download {
	overflow: hidden;
}

.lux-download__bg {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse 55% 45% at 80% 35%, rgba(89, 126, 247, 0.12), transparent 65%),
		radial-gradient(ellipse 40% 35% at 15% 75%, rgba(89, 126, 247, 0.06), transparent 60%);
	pointer-events: none;
}

.lux-download__inner {
	position: relative;
	z-index: 1;
	max-width: var(--lux-max);
	margin: 0 auto;
	padding: 0 20px;
	box-sizing: border-box;
}

.lux-download__layout {
	display: flex;
	align-items: center;
	gap: 48px;
}

.lux-download__content {
	flex: 1;
	min-width: 0;
}

.lux-download__title {
	margin: 0 0 14px;
	font-size: 34px;
	font-weight: 800;
	color: var(--lux-text);
	letter-spacing: 0.5px;
	line-height: 1.25;
}

.lux-download__lead {
	margin: 0 0 22px;
	font-size: 14px;
	line-height: 1.9;
	color: var(--lux-text-dim);
	max-width: 520px;
}

.lux-download__highlights {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
	margin-bottom: 22px;
}

.lux-download__highlight {
	padding: 14px 12px;
	border-radius: 12px;
	background: linear-gradient(165deg, rgba(89, 126, 247, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
	border: none;
	text-align: center;
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.05),
		0 2px 12px rgba(0, 0, 0, 0.1);
	transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.lux-download__highlight:hover {
	transform: translateY(-2px);
	background: linear-gradient(165deg, rgba(89, 126, 247, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.07),
		0 6px 20px rgba(89, 126, 247, 0.08);
}

.lux-download__highlight strong {
	display: block;
	margin-bottom: 4px;
	font-size: 14px;
	font-weight: 700;
	color: var(--primary-color, #597ef7);
}

.lux-download__highlight span {
	font-size: 11px;
	line-height: 1.4;
	color: var(--lux-text-dim);
}

.lux-download__features {
	margin: 0 0 22px;
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.lux-download__features li {
	position: relative;
	padding-left: 20px;
	font-size: 13px;
	color: var(--lux-text);
	line-height: 1.55;
}

.lux-download__features li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 8px;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--primary-color, #597ef7);
}

.lux-download__mini-stats {
	display: flex;
	gap: 24px;
	margin-bottom: 26px;
	padding: 16px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.lux-download__mini-stat b {
	display: block;
	font-size: 22px;
	font-weight: 800;
	line-height: 1.2;
	background: var(--banner-title-gradient, var(--button-bg, linear-gradient(180deg, #8ea6f7, #4d73e5)));
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.lux-download__mini-stat em {
	display: block;
	margin-top: 4px;
	font-style: normal;
	font-size: 12px;
	color: var(--lux-text-dim);
}

.lux-download__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-bottom: 16px;
}

.lux-download__btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 14px 30px;
	border-radius: 999px;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.5px;
	text-decoration: none;
	transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
	overflow: hidden;
}

.lux-download__icon {
	flex-shrink: 0;
	display: block;
}

.lux-download__icon--android {
	width: 22px;
	height: 22px;
}

.lux-download__icon--apple {
	width: 22px;
	height: 22px;
}

.lux-download__btn--primary {
	color: var(--button-color, #fff);
	background: var(--button-bg, linear-gradient(180deg, #8ea6f7, #4d73e5));
	border: none;
	box-shadow: 0 12px 28px rgba(89, 126, 247, 0.38);
}

.lux-download__btn--primary::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.2) 50%, transparent 70%);
	transform: translateX(-120%);
	transition: transform 0.55s ease;
}

.lux-download__btn--primary:hover {
	transform: translateY(-2px);
	background: var(--button-bg-hover, linear-gradient(180deg, #738ee9, #3960d5));
	box-shadow: 0 16px 36px rgba(89, 126, 247, 0.45);
}

.lux-download__btn--primary:hover::before {
	transform: translateX(120%);
}

.lux-download__btn--ghost {
	color: var(--header-text-hover-color, var(--primary-color, #597ef7));
	background: transparent;
	border: 1px solid rgba(89, 126, 247, 0.45);
}

.lux-download__btn--ghost:hover {
	color: #fff;
	border-color: var(--primary-color, #597ef7);
	background: rgba(89, 126, 247, 0.14);
	transform: translateY(-2px);
}

.lux-download__btn span {
	position: relative;
	z-index: 1;
}

.lux-download__login {
	font-size: 13px;
	color: var(--lux-text-dim);
	text-decoration: none;
	transition: color 0.2s ease;
}

.lux-download__login:hover {
	color: var(--primary-color, #597ef7);
}

.lux-download__visual {
	position: relative;
	flex: 0 0 min(46%, 520px);
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 0;
}

.lux-download__phone-glow {
	position: absolute;
	width: 80%;
	height: 60%;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(89, 126, 247, 0.22) 0%, transparent 72%);
	filter: blur(32px);
	pointer-events: none;
}

.lux-download__phone-img {
	position: relative;
	z-index: 1;
	display: block;
	width: 100%;
	max-width: 520px;
	height: auto;
	border-radius: 0;
	box-shadow: none;
	transform: translateY(0);
	transition: transform 0.45s ease, filter 0.45s ease;
	filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.35));
}

.lux-download__visual:hover .lux-download__phone-img {
	transform: translateY(-6px) scale(1.02);
	filter: drop-shadow(0 32px 56px rgba(89, 126, 247, 0.18));
}

/* ---------------------------------------------------------------------- */
/* #faq — 优惠活动                                                          */
/* ---------------------------------------------------------------------- */

.lux-promo {
	position: relative;
	overflow: hidden;
}

.lux-promo__bg {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse 50% 40% at 20% 20%, rgba(89, 126, 247, 0.08), transparent 65%),
		radial-gradient(ellipse 45% 35% at 85% 80%, rgba(89, 126, 247, 0.06), transparent 60%);
	pointer-events: none;
}

.lux-promo__inner {
	position: relative;
	z-index: 1;
}

.lux-promo__showcase {
	display: grid;
	grid-template-columns: 1.35fr 1fr;
	grid-template-rows: repeat(2, minmax(180px, 1fr));
	gap: 20px;
	padding: 0 20px;
	max-width: var(--lux-max);
	margin: 0 auto;
	box-sizing: border-box;
	min-height: 420px;
}

.lux-promo__card {
	position: relative;
	display: block;
	min-height: 180px;
	border-radius: 20px;
	overflow: hidden;
	text-decoration: none;
	background: #07111e;
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.05),
		0 8px 32px rgba(0, 0, 0, 0.22);
	transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.lux-promo__card--featured {
	grid-row: 1 / 3;
	min-height: 420px;
}

.lux-promo__card:hover {
	transform: translateY(-5px);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.07),
		0 20px 48px rgba(89, 126, 247, 0.16);
}

.lux-promo__media {
	position: absolute;
	inset: 0;
}

.lux-promo__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.5s ease;
}

.lux-promo__card:hover .lux-promo__media img {
	transform: scale(1.05);
}

.lux-promo__icon {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 30%;
	transform: translate(-50%, -50%);
	color: var(--lux-accent);
	opacity: 0.45;
}

.lux-promo__overlay {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(7, 17, 30, 0.05) 0%, rgba(7, 17, 30, 0.15) 45%, rgba(7, 17, 30, 0.92) 100%),
		linear-gradient(135deg, rgba(89, 126, 247, 0.08), transparent 55%);
}

.lux-promo__body {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 2;
	padding: 22px 24px 24px;
}

.lux-promo__card--featured .lux-promo__body {
	padding: 28px 28px 30px;
}

.lux-promo__badge {
	display: inline-block;
	margin-bottom: 12px;
	padding: 5px 14px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.5px;
	color: #fff;
	background: rgba(89, 126, 247, 0.85);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 999px;
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
}

.lux-promo__card--vip .lux-promo__badge {
	background: linear-gradient(135deg, rgba(212, 175, 55, 0.92), rgba(184, 134, 11, 0.88));
}

.lux-promo__card--new .lux-promo__badge {
	background: linear-gradient(135deg, rgba(89, 126, 247, 0.92), rgba(57, 96, 213, 0.88));
}

.lux-promo__card--promo .lux-promo__badge {
	background: linear-gradient(135deg, rgba(255, 93, 93, 0.88), rgba(255, 140, 66, 0.88));
}

.lux-promo__body h3 {
	margin: 0 0 10px;
	font-size: 18px;
	font-weight: 700;
	color: #fff;
	line-height: 1.4;
	transition: color 0.25s ease;
}

.lux-promo__card--featured .lux-promo__body h3 {
	font-size: 24px;
}

.lux-promo__card:hover .lux-promo__body h3 {
	color: var(--lux-accent-light, #8ea6f7);
}

.lux-promo__body p {
	margin: 0 0 14px;
	font-size: 13px;
	line-height: 1.75;
	color: rgba(255, 255, 255, 0.72);
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}

.lux-promo__card--featured .lux-promo__body p {
	font-size: 14px;
	-webkit-line-clamp: 3;
}

.lux-promo__more {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 12px;
	font-weight: 700;
	color: var(--lux-accent-light, #8ea6f7);
	opacity: 0.9;
	transition: opacity 0.25s ease, transform 0.25s ease;
}

.lux-promo__card:hover .lux-promo__more {
	opacity: 1;
	transform: translateX(4px);
}

.lux-promo__empty {
	grid-column: 1 / -1;
	text-align: center;
	color: var(--lux-text-dim);
}

/* ---------------------------------------------------------------------- */
/* #tutorial — 新手教程                                                      */
/* ---------------------------------------------------------------------- */

.lux-tutorial {
	overflow: hidden;
}

.lux-tutorial__bg {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse 55% 45% at 90% 15%, rgba(89, 126, 247, 0.1), transparent 62%),
		radial-gradient(ellipse 50% 40% at 10% 85%, rgba(89, 126, 247, 0.08), transparent 58%);
	pointer-events: none;
}

.lux-tutorial__inner {
	position: relative;
	z-index: 1;
	max-width: var(--lux-max);
	margin: 0 auto;
	padding: 0 20px;
	box-sizing: border-box;
}

.lux-tutorial__shell {
	border-radius: 18px;
	padding: 0;
	overflow: hidden;
	background: linear-gradient(165deg, rgba(89, 126, 247, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
	border: none;
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.06),
		0 4px 28px rgba(0, 0, 0, 0.15);
}

.lux-tutorial__body {
	display: flex;
	gap: 0;
	padding: 0;
}

.lux-tutorial__tabs {
	flex: 0 0 220px;
	display: flex;
	flex-direction: column;
	gap: 4px;
	padding: 20px 12px 20px 16px;
	border-right: 1px solid rgba(255, 255, 255, 0.04);
}

.lux-tutorial__tab {
	position: relative;
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 14px 16px;
	border-radius: 12px;
	background: none;
	border: 1px solid transparent;
	cursor: pointer;
	text-align: left;
	font: inherit;
	color: var(--lux-text-dim);
	transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.lux-tutorial__tab-num {
	flex: 0 0 auto;
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
	font-size: 12px;
	font-weight: 800;
	color: var(--primary-color, #597ef7);
	background: rgba(89, 126, 247, 0.1);
	border: 1px solid rgba(89, 126, 247, 0.18);
	transition: background 0.25s ease, color 0.25s ease;
}

.lux-tutorial__tab-label {
	font-size: 15px;
	font-weight: 600;
}

.lux-tutorial__tab:hover {
	background: rgba(255, 255, 255, 0.04);
}

.lux-tutorial__tab.is-active {
	background: rgba(89, 126, 247, 0.1);
	border-color: transparent;
	color: var(--lux-text);
}

.lux-tutorial__tab.is-active::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 3px;
	height: 60%;
	border-radius: 0 3px 3px 0;
	background: var(--primary-color, #597ef7);
}

.lux-tutorial__tab.is-active .lux-tutorial__tab-num {
	color: #fff;
	background: var(--button-bg, linear-gradient(180deg, #8ea6f7, #4d73e5));
	border-color: transparent;
}

.lux-tutorial__panels {
	flex: 1;
	min-width: 0;
	padding: 8px;
	display: grid;
}

.lux-tutorial__panel {
	grid-area: 1 / 1;
	display: flex;
	align-items: center;
	gap: 36px;
	padding: 28px 32px;
	border-radius: 0;
	background: transparent;
	visibility: hidden;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.25s ease;
}

.lux-tutorial__panel.is-active {
	visibility: visible;
	opacity: 1;
	pointer-events: auto;
}

.lux-tutorial__text {
	flex: 1;
	min-width: 0;
}

.lux-tutorial__badge {
	display: inline-block;
	margin-bottom: 12px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 2px;
	color: var(--primary-color, #597ef7);
}

.lux-tutorial__text h3 {
	margin: 0;
	font-size: 24px;
	font-weight: 800;
	color: var(--lux-text);
	letter-spacing: 0.3px;
}

.lux-tutorial__rule {
	width: 48px;
	height: 3px;
	margin: 16px 0;
	border-radius: 2px;
	background: var(--title-split-bg, var(--primary-color, #597ef7));
}

.lux-tutorial__subtitle {
	margin: 0 0 14px;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.6;
	color: var(--lux-text);
}

.lux-tutorial__desc {
	margin: 0;
	font-size: 13px;
	line-height: 1.9;
	color: var(--lux-text-dim);
	text-align: justify;
}

.lux-tutorial__mock {
	position: relative;
	flex: 0 0 280px;
	border-radius: 16px;
	overflow: hidden;
	background: linear-gradient(180deg, rgba(7, 17, 30, 0.95), rgba(7, 17, 30, 0.88));
	border: none;
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.05),
		0 8px 24px rgba(0, 0, 0, 0.28);
}

.lux-tutorial__mock-glow {
	position: absolute;
	top: -30%;
	right: -20%;
	width: 60%;
	height: 60%;
	background: radial-gradient(circle, rgba(89, 126, 247, 0.15), transparent 70%);
	pointer-events: none;
}

.lux-tutorial__mock-tabs {
	display: flex;
	position: relative;
	z-index: 1;
}

.lux-tutorial__mock-tabs span {
	flex: 1;
	padding: 13px 0;
	text-align: center;
	font-size: 13px;
	font-weight: 700;
	color: var(--lux-text-dim);
	transition: color 0.2s ease, background 0.2s ease;
}

.lux-tutorial__mock-tabs span.is-active {
	color: #fff;
	background: var(--button-bg, linear-gradient(180deg, #8ea6f7, #4d73e5));
}

.lux-tutorial__mock-filters {
	display: flex;
	gap: 12px;
	padding: 12px 16px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
	overflow: hidden;
	position: relative;
	z-index: 1;
}

.lux-tutorial__mock-filters span {
	font-size: 11px;
	white-space: nowrap;
	color: var(--lux-text-faint);
}

.lux-tutorial__mock-filters span.is-active {
	position: relative;
	color: var(--primary-color, #597ef7);
	font-weight: 700;
}

.lux-tutorial__mock-filters span.is-active::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -12px;
	height: 2px;
	background: var(--primary-color, #597ef7);
	border-radius: 1px;
}

.lux-tutorial__mock-panel {
	padding: 14px 16px 18px;
	position: relative;
	z-index: 1;
}

.lux-tutorial__mock-head {
	margin-bottom: 10px;
	font-size: 12px;
	font-weight: 700;
	color: var(--lux-text);
}

.lux-tutorial__mock-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 8px;
	padding: 9px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	font-size: 11px;
	color: var(--lux-text-dim);
}

.lux-tutorial__mock-row--head {
	border-top: none;
	font-size: 12px;
	font-weight: 700;
	color: var(--lux-text);
}

.lux-tutorial__mock-row span:last-child {
	text-align: right;
}

.lux-tutorial__mock-row b {
	margin-left: 6px;
	font-weight: 700;
	color: var(--primary-color, #597ef7);
}

.lux-tutorial__mock-head em,
.lux-tutorial__mock-head b {
	font-style: normal;
	margin: 0 4px;
	color: var(--primary-color, #597ef7);
}

/* 竞猜 — 1x2 result buttons */
.lux-tutorial__mock-1x2 {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-top: 12px;
}

.lux-tutorial__mock-1x2-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 14px;
	border-radius: 10px;
	font-size: 12px;
	color: var(--lux-text-dim);
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.06);
}

.lux-tutorial__mock-1x2-item.is-active {
	color: #fff;
	background: var(--button-bg, linear-gradient(180deg, #8ea6f7, #4d73e5));
	border-color: transparent;
}

.lux-tutorial__mock-1x2-item b {
	font-size: 14px;
	color: inherit;
}

/* 亚盘数字 — handicap scale */
.lux-tutorial__mock-scale {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-top: 12px;
}

.lux-tutorial__mock-scale-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 8px 12px;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.06);
}

.lux-tutorial__mock-scale-item.is-active {
	border-color: rgba(89, 126, 247, 0.4);
	background: rgba(89, 126, 247, 0.1);
}

.lux-tutorial__mock-scale-item b {
	flex: 0 0 56px;
	font-size: 13px;
	color: var(--primary-color, #597ef7);
}

.lux-tutorial__mock-scale-item span {
	font-size: 12px;
	color: var(--lux-text-dim);
}

/* 串关 — parlay ticket */
.lux-tutorial__mock-parlay {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 12px;
}

.lux-tutorial__mock-parlay-item {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 6px;
	padding: 12px;
	border-radius: 10px;
	font-size: 12px;
	color: var(--lux-text);
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.06);
}

.lux-tutorial__mock-parlay-item em {
	font-style: normal;
	color: var(--primary-color, #597ef7);
}

.lux-tutorial__mock-parlay-item b {
	font-size: 14px;
}

.lux-tutorial__mock-parlay-op {
	flex: 0 0 auto;
	font-size: 16px;
	font-weight: 700;
	color: var(--lux-text-faint);
}

.lux-tutorial__mock-parlay-total {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 12px;
	padding: 12px 14px;
	border-radius: 10px;
	font-size: 12px;
	color: var(--lux-text-dim);
	background: var(--button-bg, linear-gradient(180deg, #8ea6f7, #4d73e5));
}

.lux-tutorial__mock-parlay-total span {
	color: rgba(255, 255, 255, 0.85);
}

.lux-tutorial__mock-parlay-total b {
	font-size: 18px;
	color: #fff;
}

/* 滚球 — live match */
.lux-tutorial__mock-live {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-bottom: 10px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 1px;
	color: #ff5d5d;
}

.lux-tutorial__mock-live-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #ff5d5d;
	animation: lux-tutorial-live-pulse 1.4s ease-in-out infinite;
}

@keyframes lux-tutorial-live-pulse {
	0%, 100% {
		opacity: 1;
	}
	50% {
		opacity: 0.3;
	}
}

.lux-tutorial__stats-bar {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0;
	margin-top: 36px;
	padding: 32px 12px 0;
	border-radius: 0;
	background: transparent;
	border: none;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow: none;
}

.lux-tutorial__stat {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 8px 12px;
}

.lux-tutorial__stat-divider {
	display: none;
}

.lux-tutorial__stat span {
	font-size: 30px;
	font-weight: 800;
	line-height: 1.2;
	background: var(--banner-title-gradient, var(--button-bg, linear-gradient(180deg, #8ea6f7, #4d73e5)));
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.lux-tutorial__stat em {
	margin-top: 8px;
	font-style: normal;
	font-size: 13px;
	color: var(--lux-text-dim);
}

/* ---------------------------------------------------------------------- */
/* 响应式                                                                    */
/* ---------------------------------------------------------------------- */

@media (max-width: 1200px) {
	.lux-section {
		padding: 56px 0;
	}

	.lux-head {
		margin-bottom: 32px;
	}

	.lux-head__title {
		font-size: 26px;
	}

	.lux-register__flow,
	.lux-agent__benefits {
		grid-template-columns: 1fr;
	}

	.lux-register__flow::before {
		display: none;
	}

	.lux-register__stats {
		grid-template-columns: repeat(2, 1fr);
		gap: 16px 0;
	}

	.lux-promo__showcase {
		grid-template-columns: 1fr;
		grid-template-rows: auto;
		min-height: 0;
	}

	.lux-promo__card--featured {
		grid-row: auto;
		min-height: 320px;
	}

	.lux-download__layout {
		flex-direction: column;
		gap: 32px;
		text-align: center;
	}

	.lux-download__visual {
		flex: none;
		width: 100%;
	}

	.lux-download__phone-img {
		max-width: 360px;
		margin: 0 auto;
	}

	.lux-download__layout {
		flex-direction: column;
		gap: 32px;
		text-align: center;
	}

	.lux-download__highlights {
		grid-template-columns: 1fr;
	}

	.lux-download__mini-stats {
		justify-content: center;
		flex-wrap: wrap;
		gap: 16px;
	}

	.lux-download__lead {
		max-width: none;
	}

	.lux-download__features {
		align-items: flex-start;
		max-width: 360px;
		margin-left: auto;
		margin-right: auto;
	}

	.lux-download__actions {
		justify-content: center;
	}

	.lux-download__visual {
		flex: none;
		min-height: auto;
	}

	.lux-download__phone-img {
		max-width: 320px;
		transform: none;
	}

	.lux-download__visual:hover .lux-download__phone-img {
		transform: translateY(-4px);
	}

	.lux-tutorial__shell {
		padding: 8px;
	}

	.lux-tutorial__body {
		flex-direction: column;
	}

	.lux-tutorial__tabs {
		flex: none;
		flex-direction: row;
		flex-wrap: wrap;
		border-right: none;
		border-bottom: 1px solid rgba(255, 255, 255, 0.06);
		padding: 12px;
	}

	.lux-tutorial__tab.is-active::before {
		display: none;
	}

	.lux-tutorial__panel.is-active {
		flex-direction: column;
		padding: 20px 16px;
	}

	.lux-tutorial__mock {
		flex: none;
		width: 100%;
	}

	.lux-tutorial__stats-bar {
		grid-template-columns: repeat(2, 1fr);
		gap: 16px 0;
		padding: 24px 16px 0;
	}

	.lux-tutorial__stat {
		padding: 12px 8px;
	}
}
