/* 游戏加速器原理 — 独立落地页（参考 pic2puz） */

html {
	scroll-behavior: smooth;
}

.qfgame-jsq-principle-page {
	background-color: #0f1419;
}

/* 顶栏锚点导航（与 /app/ 专题共用交互样式） */
.qfgame-jsq-landing-nav--desktop .qfgame-jsq-landing-nav__link.is-active,
.qfgame-jsq-landing-nav--desktop .qfgame-jsq-landing-nav__link:first-child.is-active {
	color: #fff;
	font-weight: 600;
}

.qfgame-jsq-landing-nav--mobile .qfgame-jsq-landing-nav__link.is-active {
	color: #fff;
	font-weight: 600;
	padding-left: 0.5rem;
	border-left: 2px solid #38bdf8;
}

/* Hero */
.qfgame-jsq-principle-hero {
	isolation: isolate;
}

.qfgame-jsq-principle-hero__bg {
	transform: scale(1.02);
}

.qfgame-jsq-principle-hero__overlay {
	position: absolute;
	inset: 0;
	z-index: 2;
	pointer-events: none;
}

/* 主遮罩：压暗底图，保证标题可读 */
.qfgame-jsq-principle-hero__overlay--base {
	background: linear-gradient(
		135deg,
		rgba(2, 6, 23, 0.88) 0%,
		rgba(15, 23, 42, 0.82) 45%,
		rgba(14, 116, 144, 0.22) 100%
	);
}

/* 上下渐隐 + 四周暗角 */
.qfgame-jsq-principle-hero__overlay--vignette {
	background: linear-gradient(
		to bottom,
		rgba(0, 0, 0, 0.55) 0%,
		rgba(15, 23, 42, 0.35) 42%,
		rgba(15, 23, 42, 0.5) 72%,
		rgba(2, 6, 23, 0.92) 100%
	);
	box-shadow: inset 0 0 120px rgba(0, 0, 0, 0.45);
}

/* 右上品牌光晕 */
.qfgame-jsq-principle-hero__overlay--glow {
	background: radial-gradient(
		ellipse 70% 55% at 85% 15%,
		rgba(56, 189, 248, 0.18) 0%,
		transparent 65%
	);
}

.qfgame-principle-landing__page-head {
	margin-bottom: 2rem;
	padding-top: 0.5rem;
}

@media (min-width: 768px) {
	.qfgame-principle-landing__page-head {
		margin-bottom: 2.5rem;
	}
}

.qfgame-principle-landing__eyebrow {
	margin: 0 0 0.75rem;
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: #38bdf8;
}

@media (min-width: 768px) {
	.qfgame-principle-landing__eyebrow {
		font-size: 0.875rem;
	}
}

.qfgame-principle-landing__hero-platforms {
	max-width: 42rem;
	margin-left: auto;
	margin-right: auto;
}

.qfgame-principle-landing__platform-pill {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	border-radius: 9999px;
	border: 1px solid rgba(75, 85, 99, 0.65);
	background: rgba(17, 24, 39, 0.55);
	padding: 0.45rem 0.85rem;
	font-size: 0.75rem;
	font-weight: 500;
	color: #d1d5db;
	transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.qfgame-principle-landing__platform-pill:hover {
	border-color: rgba(56, 189, 248, 0.55);
	color: #fff;
	background: rgba(30, 41, 59, 0.8);
}

.qfgame-principle-landing__platform-pill--hero {
	font-size: 0.6875rem;
	padding: 0.4rem 0.75rem;
}

@media (min-width: 768px) {
	.qfgame-principle-landing__platform-pill--hero {
		font-size: 0.75rem;
		padding: 0.5rem 1rem;
	}
}

/* 分区节奏（参考 GEO 前线：渐变底 + 网格光晕 + 深浅交替） */
.qfgame-principle-landing__section {
	position: relative;
	background: #0f1419;
}

.qfgame-principle-landing__section--alt {
	background: linear-gradient(180deg, #161d27 0%, #10161d 100%);
	border-top: 1px solid rgba(255, 255, 255, 0.02);
	border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.qfgame-principle-landing__section--intro {
	overflow: hidden;
	background: linear-gradient(
		165deg,
		#0f1725 0%,
		#162438 38%,
		#152336 62%,
		#0c131c 100%
	);
	border-bottom: 1px solid rgba(56, 189, 248, 0.18);
}

.qfgame-principle-landing__section--intro::before,
.qfgame-principle-landing__section--intro::after {
	content: '';
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.qfgame-principle-landing__section--intro::before {
	background:
		radial-gradient(ellipse 90% 55% at 50% -15%, rgba(56, 189, 248, 0.28) 0%, transparent 58%),
		radial-gradient(ellipse 45% 40% at 95% 20%, rgba(59, 130, 246, 0.16) 0%, transparent 55%),
		radial-gradient(ellipse 35% 35% at 5% 80%, rgba(14, 165, 233, 0.12) 0%, transparent 50%);
}

.qfgame-principle-landing__section--intro::after {
	background-image:
		linear-gradient(rgba(56, 189, 248, 0.045) 1px, transparent 1px),
		linear-gradient(90deg, rgba(56, 189, 248, 0.045) 1px, transparent 1px);
	background-size: 3rem 3rem;
	mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.85) 0%, transparent 92%);
}

.qfgame-principle-landing__intro-panel {
	position: relative;
	z-index: 1;
	max-width: 48rem;
	margin: 0 auto;
}

.qfgame-principle-landing__page-head {
	margin-bottom: 0;
	padding-top: 0.25rem;
}

.qfgame-principle-landing__overview-lead {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.625rem;
	margin: 1.75rem auto 0;
	max-width: 32rem;
}

.qfgame-principle-landing__overview-lead-line {
	margin: 0;
	font-size: 0.9375rem;
	line-height: 1.55;
}

@media (min-width: 768px) {
	.qfgame-principle-landing__overview-lead-line {
		font-size: 1rem;
	}
}

.qfgame-principle-landing__overview-lead-line--accent {
	font-weight: 500;
	color: #38bdf8;
}

.qfgame-principle-landing__overview-lead-line--muted {
	color: #9ca3af;
}

.qfgame-principle-landing__stats--overview {
	margin-top: 2.75rem;
}

@media (min-width: 768px) {
	.qfgame-principle-landing__stats--overview {
		margin-top: 3.25rem;
	}
}

.qfgame-principle-landing__overview-footer {
	margin-top: 2rem;
	padding-top: 0;
}

.qfgame-principle-landing__section-kicker {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	margin: 0 0 1.25rem;
	font-size: 0.6875rem;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: #64748b;
}

.qfgame-principle-landing__section-kicker-num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 1.5rem;
	padding: 0.15rem 0.4rem;
	border-radius: 0.25rem;
	border: 1px solid rgba(56, 189, 248, 0.35);
	background: rgba(56, 189, 248, 0.08);
	color: #38bdf8;
	font-variant-numeric: tabular-nums;
}

.qfgame-principle-landing__section-kicker::before {
	content: '/';
	margin-right: 0.15rem;
	color: #475569;
}

/* 05 选购与使用 — 宽松排版 */
.qfgame-principle-landing__guide-block {
	padding: 0 0.5rem;
}

.qfgame-principle-landing__brand-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.25rem;
}

@media (min-width: 640px) {
	.qfgame-principle-landing__brand-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 1.5rem;
	}
}

@media (min-width: 1024px) {
	.qfgame-principle-landing__brand-grid {
		gap: 1.75rem;
	}
}

.qfgame-principle-landing__brand-card {
	border-radius: 1rem;
	border: 1px solid rgba(55, 65, 81, 0.55);
	background: linear-gradient(
		165deg,
		rgba(30, 41, 59, 0.4) 0%,
		rgba(15, 20, 28, 0.85) 100%
	);
	padding: 1.5rem 1.35rem;
	transition: border-color 0.2s, transform 0.2s;
}

.qfgame-principle-landing__brand-card:hover {
	border-color: rgba(56, 189, 248, 0.35);
	transform: translateY(-2px);
}

.qfgame-principle-landing__brand-card-head {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.qfgame-principle-landing__brand-card-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2.5rem;
	height: 2.5rem;
	flex-shrink: 0;
	border-radius: 0.75rem;
	background: rgba(56, 189, 248, 0.1);
	color: #38bdf8;
	font-size: 1.1rem;
}

.qfgame-principle-landing__check-panel {
	border-radius: 1rem;
	border: 1px solid rgba(55, 65, 81, 0.45);
	background: rgba(17, 24, 39, 0.55);
	padding: 1.75rem 1.5rem;
}

@media (min-width: 768px) {
	.qfgame-principle-landing__check-panel {
		padding: 2rem 2rem;
	}
}

.qfgame-principle-landing__check-panel .qfgame-principle-landing__checklist li + li {
	margin-top: 0.35rem;
}

.qfgame-principle-landing__related-panel {
	padding-top: 0.25rem;
}

.qfgame-principle-landing__section--cta {
	background: linear-gradient(180deg, #0f1419 0%, #0a1018 100%);
	border-top: 1px solid rgba(56, 189, 248, 0.1);
}

/* 数据条 */
.qfgame-principle-landing__stats {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
}

@media (min-width: 768px) {
	.qfgame-principle-landing__stats {
		grid-template-columns: repeat(4, minmax(0, 1fr));
		gap: 1.25rem;
	}
}

.qfgame-principle-landing__stat {
	border-radius: 1rem;
	border: 1px solid rgba(56, 189, 248, 0.18);
	background: linear-gradient(
		165deg,
		rgba(30, 41, 59, 0.55) 0%,
		rgba(15, 23, 42, 0.75) 100%
	);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.04),
		0 8px 24px rgba(0, 0, 0, 0.25);
	padding: 1.25rem 1rem;
	text-align: center;
	transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.qfgame-principle-landing__stat:hover {
	border-color: rgba(56, 189, 248, 0.45);
	transform: translateY(-2px);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.06),
		0 12px 32px rgba(14, 165, 233, 0.12);
}

.qfgame-principle-landing__stat-value {
	margin: 0;
	font-size: 1.75rem;
	font-weight: 800;
	line-height: 1.2;
	color: #38bdf8;
}

@media (min-width: 768px) {
	.qfgame-principle-landing__stat-value {
		font-size: 2rem;
	}
}

.qfgame-principle-landing__stat-label {
	margin: 0.35rem 0 0;
	font-size: 0.75rem;
	color: #9ca3af;
}

@media (min-width: 768px) {
	.qfgame-principle-landing__stat-label {
		font-size: 0.875rem;
	}
}

/* 流程卡 */
.qfgame-jsq-principle__flow-item {
	position: relative;
}

.qfgame-principle-landing__flow-card {
	border-radius: 1rem;
	border: 1px solid rgba(55, 65, 81, 0.5);
	background: linear-gradient(165deg, rgba(30, 41, 59, 0.55) 0%, rgba(15, 20, 28, 0.9) 100%);
	padding: 1.35rem 1.5rem;
}

.qfgame-jsq-principle__flow-num {
	position: absolute;
	top: 1rem;
	right: 1rem;
	display: flex;
	height: 1.75rem;
	width: 1.75rem;
	align-items: center;
	justify-content: center;
	border-radius: 9999px;
	background: rgba(56, 189, 248, 0.15);
	font-size: 0.75rem;
	font-weight: 800;
	color: #38bdf8;
}

@media (min-width: 768px) {
	.qfgame-jsq-principle__flow-item:not(:last-child)::after {
		content: '';
		position: absolute;
		top: 50%;
		right: -0.75rem;
		width: 0.75rem;
		height: 2px;
		background: rgba(56, 189, 248, 0.4);
		transform: translateY(-50%);
		z-index: 1;
	}
}

.qfgame-principle-landing__detail-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.25rem;
}

@media (min-width: 768px) {
	.qfgame-principle-landing__detail-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 1.5rem;
	}
}

.qfgame-principle-landing__detail {
	padding: 1.25rem;
	border-radius: 0.875rem;
	border: 1px solid rgba(55, 65, 81, 0.4);
	background: rgba(23, 30, 40, 0.5);
}

/* 能力矩阵 */
.qfgame-principle-landing__feature {
	border-radius: 1rem;
	border: 1px solid rgba(55, 65, 81, 0.5);
	background: rgba(23, 30, 40, 0.65);
	padding: 1.5rem;
	transition: border-color 0.25s, box-shadow 0.25s;
}

.qfgame-principle-landing__feature:hover {
	border-color: rgba(56, 189, 248, 0.35);
	box-shadow: 0 8px 32px rgba(14, 165, 233, 0.08);
}

/* FAQ */
.qfgame-principle-landing__faq {
	border-radius: 0.875rem;
	border: 1px solid rgba(55, 65, 81, 0.5);
	background: rgba(23, 30, 40, 0.55);
	padding: 1rem 1.25rem;
}

.qfgame-jsq-principle__faq summary:focus-visible {
	outline: 2px solid #38bdf8;
	outline-offset: 2px;
	border-radius: 0.5rem;
}

/* CTA */
.qfgame-principle-landing__cta-box {
	border-radius: 1.25rem;
	border: 1px solid rgba(56, 189, 248, 0.25);
	background: linear-gradient(135deg, rgba(14, 165, 233, 0.12) 0%, rgba(37, 99, 235, 0.1) 100%);
	padding: 2rem 1.5rem;
}

@media (min-width: 768px) {
	.qfgame-principle-landing__cta-box {
		padding: 2.5rem 2.5rem;
	}
}

/* 首页：游戏流量概览 */
.qfgame-home-traffic-overview {
	border-top: 1px solid rgba(55, 65, 81, 0.35);
}

/* 标题区：固定三行节奏（主标题 + 青 + 灰） */
.qfgame-home-traffic-header {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.625rem;
	max-width: 36rem;
	margin: 0 auto 2.5rem;
	text-align: center;
}

@media (min-width: 1024px) {
	.qfgame-home-traffic-header {
		margin-bottom: 3rem;
	}
}

.qfgame-home-traffic-header__title {
	margin: 0;
	font-size: 1.875rem;
	font-weight: 800;
	line-height: 1.3;
	color: #fff;
}

@media (min-width: 1024px) {
	.qfgame-home-traffic-header__title {
		font-size: 2.25rem;
		line-height: 1.25;
	}
}

.qfgame-home-traffic-header__line {
	margin: 0;
	font-size: 0.9375rem;
	line-height: 1.5;
}

@media (min-width: 768px) {
	.qfgame-home-traffic-header__line {
		font-size: 1rem;
	}
}

.qfgame-home-traffic-header__line--accent {
	font-weight: 500;
	color: #38bdf8;
}

.qfgame-home-traffic-header__line--muted {
	max-width: 28rem;
	color: #9ca3af;
}

.qfgame-home-acceleration-icons__item {
	padding: 1.5rem 1.15rem 1.35rem;
	border-radius: 1rem;
	border: 1px solid rgba(55, 65, 81, 0.5);
	background: linear-gradient(165deg, rgba(30, 41, 59, 0.65) 0%, rgba(15, 20, 28, 0.85) 100%);
	transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}

.qfgame-home-acceleration-icons__item:hover {
	border-color: rgba(56, 189, 248, 0.45);
	transform: translateY(-3px);
	box-shadow: 0 12px 40px rgba(14, 165, 233, 0.12);
}

.qfgame-home-why-card .qfgame-feature-icon {
	margin-bottom: 0;
}

/* 首页特性图标容器 */
.qfgame-feature-icon {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 4.25rem;
	height: 4.25rem;
	margin: 0 auto 1rem;
	border-radius: 1.125rem;
	background: linear-gradient(145deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.75) 100%);
	border: 1px solid rgba(56, 189, 248, 0.35);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.06),
		0 8px 24px rgba(0, 0, 0, 0.35);
}

.qfgame-feature-icon__glow {
	position: absolute;
	inset: -1px;
	border-radius: inherit;
	background: linear-gradient(135deg, rgba(56, 189, 248, 0.35), rgba(59, 130, 246, 0.15), transparent 70%);
	opacity: 0.85;
	pointer-events: none;
}

.qfgame-feature-icon i {
	position: relative;
	z-index: 1;
	display: block;
	font-size: 1.625rem;
	line-height: 1;
	font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro", "Font Awesome 5 Free", "Font Awesome 5 Pro", sans-serif;
	font-weight: 900;
	font-style: normal;
	color: #7dd3fc;
	filter: drop-shadow(0 0 10px rgba(56, 189, 248, 0.45));
	-webkit-font-smoothing: antialiased;
}

.qfgame-home-acceleration-icons__item:hover .qfgame-feature-icon,
.qfgame-home-why-card:hover .qfgame-feature-icon {
	border-color: rgba(125, 211, 252, 0.65);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.08),
		0 10px 28px rgba(14, 165, 233, 0.22);
}

.qfgame-home-acceleration-icons__item:hover .qfgame-feature-icon i,
.qfgame-home-why-card:hover .qfgame-feature-icon i {
	color: #e0f2fe;
}

/* 嵌入专题（保留） */
.qfgame-jsq-principle--embedded {
	padding-top: 2.5rem;
}

.qfgame-jsq-principle__stats p {
	margin: 0;
}

/* 04 对比与适用场景 */
.qfgame-principle-landing__compare-intro {
	margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
	.qfgame-principle-landing__compare-intro {
		margin-bottom: 3rem;
	}
}

.qfgame-principle-landing__compare-table-block {
	margin-top: 0;
}

.qfgame-principle-landing__table-wrap {
	border-radius: 1rem;
	border: 1px solid rgba(55, 65, 81, 0.55);
	background: rgba(15, 23, 42, 0.5);
	padding: 0.35rem 0.35rem 0.5rem;
}

.qfgame-principle-landing__table {
	border-collapse: separate;
	border-spacing: 0;
	width: 100%;
}

.qfgame-principle-landing__table th,
.qfgame-principle-landing__table td {
	padding: 1.05rem 1.15rem;
	border-bottom: 1px solid rgba(55, 65, 81, 0.4);
	vertical-align: top;
	line-height: 1.65;
	font-size: 0.875rem;
}

@media (min-width: 768px) {
	.qfgame-principle-landing__table th,
	.qfgame-principle-landing__table td {
		padding: 1.2rem 1.4rem;
		font-size: 0.9375rem;
		line-height: 1.7;
	}
}

.qfgame-principle-landing__table thead th {
	font-weight: 600;
	color: #e5e7eb;
	background: rgba(30, 41, 59, 0.45);
}

.qfgame-principle-landing__table thead th:first-child {
	border-radius: 1rem 0 0 0;
}

.qfgame-principle-landing__table tbody th {
	font-weight: 600;
	color: #d1d5db;
	background: rgba(30, 41, 59, 0.25);
	white-space: normal;
	min-width: 5.5rem;
}

.qfgame-principle-landing__table tbody td {
	color: #9ca3af;
}

.qfgame-principle-landing__table tbody tr:last-child th,
.qfgame-principle-landing__table tbody tr:last-child td {
	border-bottom: none;
}

.qfgame-principle-landing__table thead th:nth-child(3),
.qfgame-principle-landing__table tbody td:nth-child(3) {
	color: #bae6fd;
}

.qfgame-principle-landing__scenarios-block {
	margin-top: 3.5rem;
	padding-top: 3rem;
	border-top: 1px solid rgba(55, 65, 81, 0.45);
}

@media (min-width: 768px) {
	.qfgame-principle-landing__scenarios-block {
		margin-top: 4.5rem;
		padding-top: 3.5rem;
	}
}

.qfgame-principle-landing__scenarios-title {
	margin: 0;
}

.qfgame-principle-landing__scenario-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.25rem;
	margin-top: 2rem;
}

@media (min-width: 640px) {
	.qfgame-principle-landing__scenario-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 1.5rem;
		margin-top: 2.5rem;
	}
}

/* 场景卡 */
.qfgame-principle-landing__scenario-card {
	border-radius: 1rem;
	border: 1px solid rgba(55, 65, 81, 0.5);
	background: linear-gradient(165deg, rgba(30, 41, 59, 0.45) 0%, rgba(15, 20, 28, 0.85) 100%);
	padding: 1.5rem 1.35rem;
	transition: border-color 0.2s, transform 0.2s;
}

.qfgame-principle-landing__scenario-card:hover {
	border-color: rgba(56, 189, 248, 0.35);
	transform: translateY(-2px);
}

.qfgame-principle-landing__hint-box {
	margin-top: 2rem;
	border-radius: 1rem;
	border: 1px dashed rgba(75, 85, 99, 0.55);
	background: rgba(17, 24, 39, 0.45);
	padding: 1.5rem 1.5rem;
}

@media (min-width: 768px) {
	.qfgame-principle-landing__hint-box {
		margin-top: 2.5rem;
		padding: 1.75rem 1.75rem;
	}
}

/* 自查清单 */
.qfgame-principle-landing__checklist {
	margin: 0;
	padding: 0;
	list-style: none;
}

.qfgame-principle-landing__checklist li {
	position: relative;
	padding-left: 1.5rem;
	font-size: 0.875rem;
	line-height: 1.55;
	color: #9ca3af;
}

.qfgame-principle-landing__checklist li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0.45em;
	width: 0.5rem;
	height: 0.5rem;
	border-radius: 9999px;
	background: #38bdf8;
	box-shadow: 0 0 8px rgba(56, 189, 248, 0.45);
}

.qfgame-principle-landing__checklist--large li {
	font-size: 0.9375rem;
	padding-top: 0.15rem;
	padding-bottom: 0.15rem;
}

/* 延伸阅读 */
.qfgame-principle-landing__related-link {
	display: block;
	border-radius: 0.875rem;
	border: 1px solid rgba(55, 65, 81, 0.5);
	background: rgba(23, 30, 40, 0.55);
	padding: 1.15rem 1.25rem;
	transition: border-color 0.2s, background 0.2s;
}

.qfgame-principle-landing__related-link:hover {
	border-color: rgba(56, 189, 248, 0.4);
	background: rgba(30, 41, 59, 0.55);
}

/* 三步上手 */
.qfgame-principle-landing__quick-start {
	margin: 0;
	padding: 0;
	list-style: none;
}

.qfgame-principle-landing__quick-start-item {
	display: flex;
	gap: 1rem;
	align-items: flex-start;
	padding: 1rem 0;
	border-bottom: 1px solid rgba(55, 65, 81, 0.4);
}

.qfgame-principle-landing__quick-start-item:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.qfgame-principle-landing__quick-start-num {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2rem;
	height: 2rem;
	border-radius: 9999px;
	background: rgba(56, 189, 248, 0.15);
	font-size: 0.875rem;
	font-weight: 800;
	color: #38bdf8;
}
