	/* 自定义细网格背景 (侧边栏) */
	.sidebar-grid {
		background-image:
			linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
			linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
		background-size: 24px 24px;
		background-position: center center;
	}

	/* 菜单激活态发光 */
	.menu-item.active {
		background: rgba(34, 211, 238, 0.08);
		color: #fff;
		box-shadow: inset 0 0 20px rgba(34, 211, 238, 0.05);
	}

	.menu-item.active .menu-icon {
		color: #22D3EE;
		filter: drop-shadow(0 0 6px rgba(34, 211, 238, 0.7));
	}

	.menu-item.active .menu-text {
		color: #fff;
	}

	/* 悬停态 (非激活) */
	.menu-item:hover:not(.active) {
		background: rgba(34, 211, 238, 0.03);
	}

	.menu-item:hover .menu-icon {
		color: #a5f3fc;
	}

	.menu-item:hover .menu-text {
		color: #e2e8f0;
	}

	/* 默认图标与文字 */
	.menu-icon {
		color: #64748b;
		transition: all 0.3s ease;
	}

	.menu-text {
		color: #94a3b8;
		transition: all 0.3s ease;
	}

	/* 用户信息区域微样式 */
	.user-footer {
		border-top: 1px solid rgba(255, 255, 255, 0.05);
	}

	/* 磨砂卡片 */
	.glass-card {
		background: rgba(255, 255, 255, 0.02);
		backdrop-filter: blur(12px);
		-webkit-backdrop-filter: blur(12px);
		border: 1px solid rgba(255, 255, 255, 0.08);
		border-radius: 1rem;
		transition: all 0.4s ease;
	}

	.glass-card:hover {
		background: rgba(255, 255, 255, 0.04);
		border-color: rgba(34, 211, 238, 0.4);
		box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.5), 0 0 25px rgba(34, 211, 238, 0.15);
	}

	/* 余额低警告脉冲 */
	@keyframes pulse-amber {

		0%,
		100% {
			box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.5);
		}

		50% {
			box-shadow: 0 0 0 12px rgba(245, 158, 11, 0);
		}
	}

	.pulse-warning {
		animation: pulse-amber 2s infinite;
	}

	/* 呼吸灯 */
	@keyframes breathe {

		0%,
		100% {
			opacity: 1;
		}

		50% {
			opacity: 0.3;
		}
	}

	.breathe-dot {
		animation: breathe 2s ease-in-out infinite;
	}

	/* 环形进度条 */
	.progress-ring-circle {
		transition: stroke-dashoffset 0.5s ease;
		transform: rotate(-90deg);
		transform-origin: 50% 50%;
	}

	/* CDK 模态框 */
	.modal-overlay {
		background: rgba(0, 0, 0, 0.6);
		backdrop-filter: blur(6px);
		-webkit-backdrop-filter: blur(6px);
	}

	/* 折线图水印 */
	.chart-watermark {
		position: absolute;
		top: 0;
		right: 0;
		width: 300px;
		height: 150px;
		opacity: 0.03;
		pointer-events: none;
	}


	/* 动态 */
	.glass-card {
		background: rgba(255, 255, 255, 0.02);
		backdrop-filter: blur(12px);
		-webkit-backdrop-filter: blur(12px);
		border: 1px solid rgba(255, 255, 255, 0.08);
		border-radius: 1rem;
		transition: all 0.4s ease;
	}

	.custom-select {
		position: relative;
		user-select: none;
	}

	.custom-select .selected-display {
		background: rgba(255, 255, 255, 0.03);
		border: 1px solid rgba(255, 255, 255, 0.1);
		border-radius: 0.5rem;
		padding: 0.6rem 0.8rem;
		cursor: pointer;
		display: flex;
		align-items: center;
		justify-content: space-between;
		color: #e2e8f0;
		font-size: 0.9rem;
		transition: border-color 0.3s;
	}

	.custom-select .selected-display:hover {
		border-color: #22D3EE;
	}

	.custom-select .dropdown-panel {
		position: absolute;
		top: 100%;
		left: 0;
		width: 100%;
		max-height: 240px;
		overflow-y: auto;
		background: #0f172a;
		border: 1px solid rgba(255, 255, 255, 0.15);
		border-radius: 0.5rem;
		margin-top: 4px;
		z-index: 20;
		display: none;
		box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
	}

	.custom-select.open .dropdown-panel {
		display: block;
		animation: fadeInDown 0.2s ease;
	}

	@keyframes fadeInDown {
		from {
			opacity: 0;
			transform: translateY(-8px);
		}

		to {
			opacity: 1;
			transform: translateY(0);
		}
	}

	.custom-select .search-input {
		width: 100%;
		padding: 0.6rem;
		background: transparent;
		border: none;
		border-bottom: 1px solid rgba(255, 255, 255, 0.1);
		color: #e2e8f0;
		outline: none;
		font-size: 0.85rem;
	}

	.custom-select .option-item {
		padding: 0.55rem 0.8rem;
		cursor: pointer;
		color: #cbd5e1;
		font-size: 0.85rem;
		transition: background 0.2s;
	}

	.custom-select .option-item:hover {
		background: rgba(34, 211, 238, 0.15);
		color: #fff;
	}

	.radio-group label {
		display: inline-flex;
		align-items: center;
		gap: 0.4rem;
		padding: 0.5rem 1rem;
		border-radius: 0.5rem;
		border: 1px solid rgba(255, 255, 255, 0.12);
		cursor: pointer;
		transition: all 0.3s;
		font-size: 0.9rem;
		color: #94a3b8;
	}

	.radio-group input[type="radio"] {
		display: none;
	}

	.radio-group input[type="radio"]:checked+label {
		border-color: #22D3EE;
		background: rgba(34, 211, 238, 0.1);
		color: #fff;
		box-shadow: 0 0 12px rgba(34, 211, 238, 0.3);
	}

	@keyframes rowFadeIn {
		from {
			opacity: 0;
			transform: translateY(-10px);
		}

		to {
			opacity: 1;
			transform: translateY(0);
		}
	}

	.table-row-new {
		animation: rowFadeIn 0.5s ease forwards;
	}

	.copy-success {
		color: #22D3EE !important;
		transition: color 0.2s;
	}

	.legal-banner {
		background: rgba(245, 158, 11, 0.08);
		border: 1px solid rgba(245, 158, 11, 0.25);
		border-radius: 0.75rem;
		padding: 0.75rem 1rem;
		display: flex;
		align-items: center;
		justify-content: space-between;
		flex-wrap: wrap;
		gap: 0.75rem;
		margin-bottom: 1.5rem;
	}

	.ip-info {
		background: rgba(255, 255, 255, 0.03);
		border: 1px solid rgba(255, 255, 255, 0.08);
		border-radius: 0.5rem;
		padding: 0.4rem 0.8rem;
		font-size: 0.8rem;
		color: #cbd5e1;
		display: flex;
		align-items: center;
		gap: 0.5rem;
	}

	.ip-dot {
		width: 6px;
		height: 6px;
		border-radius: 50%;
		background: #22D3EE;
		box-shadow: 0 0 8px #22D3EE;
	}

	.tab-btn {
		padding: 0.6rem 1.5rem;
		border-bottom: 2px solid transparent;
		font-weight: 500;
		color: #94a3b8;
		transition: all 0.3s;
		cursor: pointer;
	}

	.tab-btn.active {
		color: #fff;
		border-bottom-color: #22D3EE;
	}

	.config-panel {
		transition: opacity 0.3s ease;
	}

	.hidden-panel {
		display: none;
		opacity: 0;
	}

	.tooltip {
		position: relative;
	}

	.tooltip .tooltip-text {
		visibility: hidden;
		width: 220px;
		background: #1e293b;
		color: #cbd5e1;
		text-align: left;
		border-radius: 0.5rem;
		padding: 0.5rem;
		position: absolute;
		z-index: 10;
		bottom: 125%;
		left: 50%;
		margin-left: -110px;
		opacity: 0;
		transition: opacity 0.2s;
		font-size: 0.75rem;
		border: 1px solid rgba(255, 255, 255, 0.1);
	}

	.tooltip:hover .tooltip-text {
		visibility: visible;
		opacity: 1;
	}

	.loading-spinner {
		display: inline-block;
		width: 1rem;
		height: 1rem;
		border: 2px solid rgba(0, 0, 0, 0.3);
		border-radius: 50%;
		border-top-color: #000;
		animation: spin 0.8s linear infinite;
	}

	@keyframes spin {
		to {
			transform: rotate(360deg);
		}
	}

	/* 静态 */
	/* 国家卡片 - 亮色磨砂，与深色背景形成层次 */
	.country-card {
		background: rgba(255, 255, 255, 0.04);
		backdrop-filter: blur(12px);
		-webkit-backdrop-filter: blur(12px);
		border: 1px solid rgba(255, 255, 255, 0.1);
		border-radius: 1rem;
		transition: all 0.35s ease;
	}

	.country-card:hover {
		background: rgba(255, 255, 255, 0.08);
		border-color: rgba(34, 211, 238, 0.5);
		box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.5), 0 0 20px rgba(34, 211, 238, 0.12);
		transform: translateY(-3px);
	}

	.filter-pill {
		padding: 0.5rem 1.2rem;
		border-radius: 999px;
		border: 1px solid rgba(255, 255, 255, 0.12);
		color: #94a3b8;
		font-size: 0.85rem;
		cursor: pointer;
		transition: all 0.3s ease;
		white-space: nowrap;
		background: transparent;
	}

	.filter-pill:hover {
		border-color: rgba(34, 211, 238, 0.4);
		color: #cbd5e1;
	}

	.filter-pill.active {
		background: rgba(34, 211, 238, 0.15);
		border-color: #22D3EE;
		color: #22D3EE;
		box-shadow: 0 0 18px rgba(34, 211, 238, 0.25);
	}

	.drawer-overlay {
		position: fixed;
		inset: 0;
		background: rgba(0, 0, 0, 0.55);
		z-index: 40;
		opacity: 0;
		pointer-events: none;
		transition: opacity 0.35s ease;
		backdrop-filter: blur(2px);
		-webkit-backdrop-filter: blur(2px);
	}

	.drawer-overlay.open {
		opacity: 1;
		pointer-events: auto;
	}

	.drawer-panel {
		position: fixed;
		top: 0;
		right: 0;
		height: 100%;
		width: 100%;
		max-width: 460px;
		background: rgba(15, 23, 42, 0.95);
		backdrop-filter: blur(20px);
		-webkit-backdrop-filter: blur(20px);
		border-left: 1px solid rgba(255, 255, 255, 0.1);
		z-index: 50;
		transform: translateX(100%);
		transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
		display: flex;
		flex-direction: column;
		overflow-y: auto;
	}

	.drawer-panel.open {
		transform: translateX(0);
	}

	.c-class-badge {
		background: linear-gradient(135deg, #f59e0b, #f97316);
		color: #000;
		font-weight: 700;
		font-size: 0.7rem;
		padding: 0.2rem 0.55rem;
		border-radius: 999px;
		box-shadow: 0 0 14px rgba(245, 158, 11, 0.5);
		letter-spacing: 0.04em;
	}

	.c-class-option {
		border: 2px solid rgba(245, 158, 11, 0.5) !important;
		position: relative;
	}

	.c-class-option:hover {
		border-color: #f59e0b !important;
		box-shadow: 0 0 20px rgba(245, 158, 11, 0.35);
	}

	.c-class-option.selected {
		border-color: #f59e0b !important;
		background: rgba(245, 158, 11, 0.12) !important;
		box-shadow: 0 0 24px rgba(245, 158, 11, 0.4);
	}

	.qty-btn {
		width: 34px;
		height: 34px;
		border-radius: 50%;
		border: 1px solid rgba(255, 255, 255, 0.2);
		background: transparent;
		color: #cbd5e1;
		cursor: pointer;
		display: flex;
		align-items: center;
		justify-content: center;
		transition: all 0.2s;
		font-size: 1.1rem;
	}

	.qty-btn:hover {
		border-color: #22D3EE;
		color: #22D3EE;
		background: rgba(34, 211, 238, 0.1);
	}

	.qty-input {
		width: 60px;
		text-align: center;
		background: transparent;
		border: none;
		color: #fff;
		font-size: 1.1rem;
		font-weight: 600;
		outline: none;
	}

	.duration-btn {
		padding: 0.55rem 0.9rem;
		border-radius: 0.6rem;
		border: 1px solid rgba(255, 255, 255, 0.12);
		background: transparent;
		color: #94a3b8;
		cursor: pointer;
		transition: all 0.25s;
		font-size: 0.82rem;
		white-space: nowrap;
	}

	.duration-btn:hover {
		border-color: rgba(34, 211, 238, 0.5);
		color: #cbd5e1;
	}

	.duration-btn.selected {
		border-color: #22D3EE;
		background: rgba(34, 211, 238, 0.12);
		color: #22D3EE;
	}

	.pay-option {
		flex: 1;
		padding: 0.65rem 0.8rem;
		border-radius: 0.6rem;
		border: 1px solid rgba(255, 255, 255, 0.1);
		cursor: pointer;
		display: flex;
		align-items: center;
		justify-content: flex-start;
		gap: 0.5rem;
		text-align: left;
		transition: all 0.25s;
		color: #94a3b8;
		font-size: 0.78rem;
		line-height: 1;
	}

	.pay-option:hover {
		border-color: rgba(34, 211, 238, 0.4);
	}

	.pay-option.selected {
		border-color: #22D3EE;
		background: rgba(34, 211, 238, 0.1);
		color: #22D3EE;
	}

	.pay-option .pay-icon {
		font-size: 1.3rem;
		display: block;
		margin-bottom: 0.15rem;
	}

	.payment-brand-icon {
		width: 1.35rem;
		height: 1.35rem;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		flex: 0 0 auto;
		line-height: 0;
		align-self: center;
		vertical-align: middle;
	}

	.payment-brand-icon svg,
	.payment-brand-icon img {
		width: 100%;
		height: 100%;
		display: block;
		overflow: visible;
		object-fit: contain;
	}

	.pay-option .payment-brand-icon {
		margin-right: 0;
	}

	.use-tag {
		box-sizing: border-box;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		flex: 0 0 auto;
		min-height: 2rem;
		padding: 0.4rem 0.75rem;
		line-height: 1;
		border-radius: 999px;
		border: 1px solid rgba(255, 255, 255, 0.1);
		font-size: 0.75rem;
		cursor: pointer;
		appearance: none;
		-webkit-appearance: none;
		outline: none;
		transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
		color: #94a3b8;
		background: transparent;
	}

	.use-tag:hover {
		border-color: rgba(34, 211, 238, 0.4);
		color: #cbd5e1;
	}

	.use-tag.selected {
		border-color: #22D3EE;
		background: rgba(34, 211, 238, 0.12);
		color: #22D3EE;
	}

	.use-tag:active {
		transform: none;
	}

	.use-tag:focus-visible {
		box-shadow: 0 0 0 2px rgba(34, 211, 238, 0.24);
	}

	@keyframes spin {
		to {
			transform: rotate(360deg);
		}
	}

	.spinner {
		width: 1.1rem;
		height: 1.1rem;
		border: 2px solid rgba(0, 0, 0, 0.3);
		border-radius: 50%;
		border-top-color: #000;
		animation: spin 0.7s linear infinite;
		display: inline-block;
	}

	.spinner.hidden {
		display: none !important;
	}

	.isp-buy-page {
		display: grid;
		grid-template-columns: minmax(0, 1fr) minmax(360px, 430px);
		align-items: start;
		gap: 28px;
		height: auto;
		max-height: none;
		min-height: calc(100vh - 116px);
		overflow: visible;
	}

	.isp-buy-products {
		min-width: 0;
		min-height: 0;
		height: auto;
		display: flex;
		flex-direction: column;
	}

	.isp-buy-heading {
		margin-bottom: 22px;
	}

	.isp-buy-heading h1 {
		margin: 0;
		color: #f8fafc;
		font-size: clamp(1.55rem, 2.2vw, 2rem);
		font-weight: 800;
		line-height: 1.18;
		letter-spacing: 0;
	}

	.isp-buy-heading p {
		margin: 8px 0 0;
		color: #bfdbfe;
		font-size: 0.9rem;
	}

	.isp-filter-row {
		display: flex;
		flex-wrap: wrap;
		gap: 12px;
		margin-bottom: 20px;
	}

	.isp-product-grid {
		flex: 0 1 auto;
		min-height: 0;
		display: grid;
		grid-template-columns: repeat(4, minmax(0, 1fr));
		align-content: start;
		gap: 14px;
		max-width: none;
		overflow: visible;
		margin-top: -8px;
		padding-top: 8px;
		padding-right: 0;
		padding-bottom: 4px;
	}

	.ipv4-buy-page .isp-product-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
		max-width: none;
	}

	.ipv4-buy-page .isp-order-panel {
		margin-right: 20px;
	}

	.isp-product-empty {
		grid-column: 1 / -1;
		min-height: 150px;
		display: flex;
		align-items: center;
		justify-content: center;
		border: 1px dashed rgba(148, 163, 184, 0.22);
		border-radius: 14px;
		color: #94a3b8;
		background: rgba(15, 23, 42, 0.48);
		font-size: 0.9rem;
	}

	.isp-product-card {
		position: relative;
		width: 100%;
		min-height: 132px;
		display: grid;
		grid-template-columns: 48px minmax(0, 1fr);
		grid-template-rows: 1fr auto;
		gap: 12px;
		padding: 16px 18px;
		text-align: left;
		color: inherit;
		cursor: pointer;
		overflow: visible;
	}

	.isp-product-recommend-badge {
		position: absolute;
		top: -6px;
		right: -2px;
		z-index: 3;
		transform-origin: top right;
		opacity: 0;
		transform: scale(0);
		pointer-events: none;
		animation:
			ispRecommendBadgePopIn 0.55s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards,
			ispRecommendBadgeGlow 2.6s 0.6s ease-in-out infinite;
	}

	.isp-product-recommend-badge::before {
		content: '';
		position: absolute;
		right: 0;
		bottom: -5px;
		width: 0;
		height: 0;
		border-style: solid;
		border-width: 5px 0 0 6px;
		border-color: transparent transparent transparent #9b1d1d;
		z-index: -1;
		filter: brightness(0.7);
	}

	.isp-product-recommend-badge::after {
		content: '';
		position: absolute;
		top: 3px;
		left: 10px;
		width: 4px;
		height: 4px;
		border-radius: 50%;
		background: rgba(255, 255, 255, 0.8);
		z-index: 3;
		animation: ispRecommendBadgeHighlight 2.2s 0.5s ease-in-out infinite;
	}

	.isp-product-recommend-body {
		position: relative;
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 3px;
		height: 22px;
		min-width: 52px;
		padding: 5px 11px 5px 10px;
		box-sizing: border-box;
		clip-path: polygon(7px 0, 100% 0, 100% 100%, 0 100%, 0 6px);
		border-radius: 0 4px 4px 0;
		border-top: 1px solid rgba(255, 255, 255, 0.35);
		overflow: hidden;
		background: linear-gradient(175deg, #ff6b6b 0%, #ff5252 30%, #e6393f 100%);
		color: #ffffff;
		font-size: 12px;
		font-weight: 700;
		letter-spacing: 0;
		line-height: 1;
		white-space: nowrap;
		text-shadow: 0 1px 2px rgba(0, 0, 0, 0.18);
	}

	.isp-product-recommend-body::after {
		content: '';
		position: absolute;
		top: -2px;
		left: -60%;
		width: 55%;
		height: calc(100% + 4px);
		background: linear-gradient(105deg, transparent 0%, rgba(255, 255, 255, 0.15) 20%, rgba(255, 255, 255, 0.55) 45%, rgba(255, 255, 255, 0.6) 50%, rgba(255, 255, 255, 0.25) 65%, transparent 85%);
		transform: skewX(-18deg);
		animation: ispRecommendBadgeShimmer 2.8s 0.9s ease-in-out infinite;
		pointer-events: none;
		z-index: 2;
	}

	.isp-product-recommend-star {
		display: inline-block;
		flex-shrink: 0;
		color: #ffeaa7;
		font-size: 10px;
		line-height: 1;
		text-shadow: 0 0 6px rgba(255, 234, 167, 0.7);
		animation: ispRecommendBadgeStar 1.8s 0.7s ease-in-out infinite;
	}

	@keyframes ispRecommendBadgePopIn {
		0% {
			opacity: 0;
			transform: scale(0) rotate(-8deg);
		}
		55% {
			opacity: 1;
			transform: scale(1.12) rotate(1.5deg);
		}
		75% {
			transform: scale(0.94) rotate(-0.8deg);
		}
		90% {
			transform: scale(1.03) rotate(0.3deg);
		}
		100% {
			opacity: 1;
			transform: scale(1) rotate(0deg);
		}
	}

	@keyframes ispRecommendBadgeGlow {
		0%,
		100% {
			filter: drop-shadow(0 2px 5px rgba(255, 50, 40, 0.35));
		}
		35% {
			filter: drop-shadow(0 3px 10px rgba(255, 50, 40, 0.6));
		}
		70% {
			filter: drop-shadow(0 2px 5px rgba(255, 50, 40, 0.35));
		}
	}

	@keyframes ispRecommendBadgeShimmer {
		0% {
			left: -60%;
		}
		45%,
		100% {
			left: 110%;
		}
	}

	@keyframes ispRecommendBadgeStar {
		0%,
		100% {
			opacity: 1;
			transform: scale(1);
		}
		40% {
			opacity: 0.45;
			transform: scale(0.7);
		}
		70% {
			opacity: 1;
			transform: scale(1.15);
		}
	}

	@keyframes ispRecommendBadgeHighlight {
		0%,
		100% {
			opacity: 0.55;
			transform: scale(1);
		}
		50% {
			opacity: 1;
			transform: scale(1.8);
		}
	}

	.isp-product-card.is-selected {
		border-color: #22d3ee;
		background: rgba(8, 47, 73, 0.54);
		box-shadow: 0 0 0 1px rgba(34, 211, 238, 0.25), 0 18px 40px rgba(8, 47, 73, 0.22);
		transform: translateY(-2px);
	}

	.isp-product-card:focus-visible {
		outline: 2px solid rgba(103, 232, 249, 0.78);
		outline-offset: 3px;
	}

	.isp-product-flag {
		width: 42px;
		height: 30px;
		align-self: start;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		overflow: hidden;
		border-radius: 2px;
		background: rgba(15, 23, 42, 0.88);
		box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12);
	}

	.isp-product-flag img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}

	.isp-product-flag span {
		color: #e2e8f0;
		font-size: 0.78rem;
		font-weight: 800;
	}

	.isp-product-body {
		min-width: 0;
		display: flex;
		flex-direction: column;
		gap: 5px;
	}

	.isp-product-country {
		color: #f8fafc;
		font-size: 0.96rem;
		font-weight: 800;
		line-height: 1.25;
	}

	.isp-product-route {
		color: #94a3b8;
		font-size: 0.72rem;
		line-height: 1.25;
	}

	.isp-product-meta {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		gap: 8px;
		color: #64748b;
		font-size: 0.68rem;
		line-height: 1.2;
	}

	.isp-product-status {
		position: relative;
		padding-left: 10px;
		color: #67e8f9;
	}

	.isp-product-status::before {
		content: '';
		position: absolute;
		left: 0;
		top: 50%;
		width: 5px;
		height: 5px;
		border-radius: 50%;
		background: #22d3ee;
		transform: translateY(-50%);
		box-shadow: 0 0 8px rgba(34, 211, 238, 0.7);
	}

	.isp-product-price {
		grid-column: 2;
		display: inline-flex;
		align-items: baseline;
		gap: 4px;
		color: #22d3ee;
	}

	.isp-product-price strong {
		font-size: 1.18rem;
		line-height: 1;
		font-weight: 900;
	}

	.isp-product-price small {
		color: #94a3b8;
		font-size: 0.7rem;
	}

	.isp-order-panel {
		position: static;
		top: auto;
		max-height: none;
		overflow: visible;
		padding: 18px;
		border: 1px solid rgba(148, 163, 184, 0.14);
		border-radius: 18px;
		background: rgba(15, 23, 42, 0.9);
		box-shadow: 0 24px 80px rgba(2, 6, 23, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.03);
	}

	.isp-order-header {
		position: relative;
		display: flex;
		align-items: flex-start;
		justify-content: space-between;
		gap: 16px;
		margin-bottom: 14px;
		padding-left: 13px;
	}

	.isp-order-header::before {
		content: '';
		position: absolute;
		left: 0;
		top: 3px;
		width: 4px;
		height: 20px;
		border-radius: 999px;
		background: #22d3ee;
		box-shadow: 0 0 12px rgba(34, 211, 238, 0.45);
	}

	.isp-order-header h2 {
		margin: 0;
		color: #f8fafc;
		font-size: 1.05rem;
		font-weight: 800;
		line-height: 1.25;
	}

	.isp-order-header p {
		margin: 5px 0 0;
		color: #94a3b8;
		font-size: 0.76rem;
		line-height: 1.35;
	}

	.isp-order-warning {
		display: flex;
		align-items: center;
		gap: 9px;
		margin-bottom: 14px;
		padding: 10px 12px;
		border: 1px solid rgba(245, 158, 11, 0.36);
		border-radius: 8px;
		background: rgba(245, 158, 11, 0.08);
		color: #fde68a;
		font-size: 0.78rem;
		font-weight: 700;
		line-height: 1.5;
	}

	.isp-order-warning svg {
		width: 17px;
		height: 17px;
		flex: 0 0 auto;
		color: #f59e0b;
	}

	.isp-order-body {
		display: grid;
		gap: 12px;
	}

	.isp-order-field label {
		display: block;
		margin-bottom: 7px;
		color: #94a3b8;
		font-size: 0.72rem;
		font-weight: 800;
		line-height: 1;
	}

	.isp-field-label-with-dot {
		display: inline-flex !important;
		align-items: center;
		gap: 8px;
	}

	.isp-field-label-with-dot span {
		width: 13px;
		height: 13px;
		border-radius: 50%;
		background: #22d3ee;
		box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.12), 0 0 12px rgba(34, 211, 238, 0.75);
		animation: ispSegmentDotBreathe 1.8s ease-in-out infinite;
		transform-origin: center;
	}

	@keyframes ispSegmentDotBreathe {
		0%,
		100% {
			transform: scale(0.9);
			box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.12), 0 0 8px rgba(34, 211, 238, 0.55);
		}

		50% {
			transform: scale(1.08);
			box-shadow: 0 0 0 8px rgba(34, 211, 238, 0.04), 0 0 18px rgba(34, 211, 238, 0.9);
		}
	}

	.isp-selected-product {
		min-height: 40px;
		display: flex;
		align-items: center;
		gap: 12px;
		padding: 8px 12px;
		border: 1px solid rgba(226, 232, 240, 0.86);
		border-radius: 8px;
		background: rgba(15, 23, 42, 0.36);
		color: #f8fafc;
	}

	.isp-selected-flag {
		width: 30px;
		height: 22px;
		flex: 0 0 auto;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		overflow: hidden;
		border-radius: 2px;
		background: rgba(2, 6, 23, 0.72);
		box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12);
	}

	.isp-selected-flag img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}

	.isp-selected-flag span {
		color: #e2e8f0;
		font-size: 0.68rem;
		font-weight: 900;
	}

	.isp-selected-product div {
		min-width: 0;
	}

	.isp-selected-product strong,
	.isp-selected-product small {
		display: block;
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
	}

	.isp-selected-product strong {
		color: #f8fafc;
		font-size: 0.86rem;
		font-weight: 700;
		line-height: 1.3;
	}

	.isp-selected-product small {
		margin-top: 2px;
		color: #94a3b8;
		font-size: 0.68rem;
		line-height: 1.2;
	}

	.isp-order-select {
		width: 100%;
		min-height: 38px;
		padding: 0 12px;
		border: 1px solid rgba(148, 163, 184, 0.18);
		border-radius: 8px;
		background: #1a2030;
		color: #f8fafc;
		font-size: 0.86rem;
		outline: none;
		transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
	}

	.isp-order-select:focus {
		border-color: rgba(34, 211, 238, 0.72);
		box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.12);
	}

	.isp-order-select:disabled {
		color: #94a3b8;
		cursor: not-allowed;
		opacity: 0.78;
	}

	.isp-segment-select,
	.isp-purpose-select {
		position: relative;
		width: 100%;
	}

	.isp-segment-trigger {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 10px;
		text-align: left;
		cursor: pointer;
	}

	.isp-segment-trigger:disabled {
		cursor: not-allowed;
	}

	.isp-segment-value {
		min-width: 0;
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
	}

	.isp-segment-arrow {
		width: 7px;
		height: 7px;
		flex: 0 0 auto;
		border-right: 2px solid currentColor;
		border-bottom: 2px solid currentColor;
		transform: rotate(45deg) translateY(-2px);
		transition: transform 0.18s ease;
		opacity: 0.82;
	}

	.isp-segment-select.is-open .isp-segment-arrow {
		transform: rotate(225deg) translate(-2px, -1px);
	}

	.isp-segment-options {
		position: absolute;
		top: calc(100% + 2px);
		left: 0;
		right: 0;
		z-index: 90;
		max-height: 260px;
		overflow-y: auto;
		padding: 4px 0;
		border: 1px solid rgba(34, 211, 238, 0.54);
		border-radius: 0 0 8px 8px;
		background: #1a2030;
		box-shadow: 0 16px 36px rgba(2, 6, 23, 0.46);
		display: none;
		scrollbar-width: thin;
		scrollbar-color: rgba(34, 211, 238, 0.62) rgba(15, 23, 42, 0.82);
	}

	.isp-segment-select.is-open .isp-segment-options {
		display: block;
	}

	.isp-segment-options::-webkit-scrollbar {
		width: 6px;
	}

	.isp-segment-options::-webkit-scrollbar-track {
		border-radius: 999px;
		background: rgba(15, 23, 42, 0.82);
	}

	.isp-segment-options::-webkit-scrollbar-thumb {
		border-radius: 999px;
		background: rgba(34, 211, 238, 0.56);
	}

	.isp-segment-options::-webkit-scrollbar-thumb:hover {
		background: rgba(103, 232, 249, 0.78);
	}

	.isp-segment-options::-webkit-scrollbar-button {
		display: none;
		width: 0;
		height: 0;
	}

	.isp-segment-option {
		width: 100%;
		min-height: 28px;
		padding: 4px 16px;
		border: 0;
		background: transparent;
		color: #f8fafc;
		font: inherit;
		font-size: 0.86rem;
		line-height: 1.25;
		text-align: left;
		cursor: pointer;
	}

	.isp-segment-option:hover,
	.isp-segment-option.is-selected {
		background: #1d6fd5;
		color: #ffffff;
	}

	.isp-duration-grid {
		display: flex;
		flex-wrap: wrap;
		gap: 8px;
	}

	.isp-duration-grid .duration-btn {
		min-width: 56px;
		min-height: 34px;
		border-radius: 7px;
	}

	.isp-duration-grid .c-class-option {
		display: none;
	}

	.isp-qty-row {
		display: inline-grid;
		grid-template-columns: 34px 80px 34px;
		align-items: center;
		gap: 8px;
	}

	.isp-qty-row .qty-input {
		width: 80px;
		height: 37px;
		border: 1px solid rgba(148, 163, 184, 0.16);
		border-radius: 8px;
		background: #1a2030;
	}

	.isp-pay-grid {
		display: flex;
		flex-wrap: wrap;
		gap: 8px;
	}

	.isp-payment-support-note {
		margin-left: 4px;
		color: #67e8f9;
		font-size: 0.75rem;
		font-weight: 700;
		line-height: 1.35;
		white-space: nowrap;
	}

	.isp-pay-grid .pay-option {
		flex: 0 0 auto;
		min-width: 92px;
		min-height: 46px;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		gap: 9px;
		padding: 0 16px;
		border-radius: 8px;
		background: rgba(15, 23, 42, 0.42);
		font-size: 0.9rem;
		font-weight: 700;
	}

	.isp-pay-grid .pay-option .pay-icon {
		display: inline-block;
		margin: 0;
		font-size: 0.94rem;
		line-height: 1;
	}

	.isp-pay-grid .pay-option .payment-brand-icon {
		width: 1.5rem;
		height: 1.5rem;
		margin-right: 0;
	}

	.isp-pay-grid .pay-option[data-pay="balance"] {
		font-size: 0.9rem;
		font-weight: 700;
	}

	.isp-pay-grid .pay-option[data-pay="balance"] .payment-brand-icon {
		width: 1.5rem;
		height: 1.5rem;
	}

	.isp-coupon-hint {
		display: none;
	}

	.isp-order-footer {
		margin-top: 14px;
		padding-top: 14px;
		border-top: 1px solid rgba(148, 163, 184, 0.12);
	}

	.isp-price-line,
	.isp-total-line {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 16px;
	}

	.isp-price-line {
		margin-bottom: 8px;
		color: #94a3b8;
		font-size: 0.82rem;
	}

	.isp-price-line strong {
		color: #e2e8f0;
		font-weight: 700;
	}

	.isp-discount-line {
		display: none;
	}

	.isp-discount-line strong {
		color: #22c55e;
	}

	.isp-total-line {
		margin-top: 14px;
		color: #94a3b8;
		font-size: 0.86rem;
	}

	.isp-total-line strong {
		color: #22d3ee;
		font-size: 1.85rem;
		font-weight: 900;
		line-height: 1;
	}

	.isp-submit-btn {
		width: 100%;
		min-height: 46px;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		gap: 9px;
		margin-top: 14px;
		border: none;
		border-radius: 10px;
		background: linear-gradient(135deg, #22d3ee, #2dd4bf);
		color: #020617;
		font-size: 1rem;
		font-weight: 900;
		cursor: pointer;
		box-shadow: 0 16px 34px rgba(34, 211, 238, 0.24);
		transition: transform 0.2s ease, filter 0.2s ease, opacity 0.2s ease;
	}

	.isp-submit-btn:hover:not(:disabled) {
		filter: brightness(1.06);
		transform: translateY(-1px);
	}

	.isp-submit-btn:disabled {
		cursor: not-allowed;
		opacity: 0.62;
		box-shadow: none;
	}

	@media (max-width: 480px) {
		.drawer-panel {
			max-width: 100%;
		}
	}

	@media (max-width: 1180px) {
		.center-main-content:has(> .isp-buy-page) {
			overflow-y: auto;
		}

		.isp-buy-page {
			grid-template-columns: 1fr;
			height: auto;
			min-height: calc(100vh - 116px);
			overflow: visible;
		}

		.isp-buy-products {
			height: auto;
		}

		.isp-product-grid,
		.ipv4-buy-page .isp-product-grid {
			grid-template-columns: repeat(auto-fill, minmax(188px, 1fr));
			overflow: visible;
			margin-top: 0;
			padding-top: 0;
			padding-right: 0;
			padding-bottom: 0;
		}

		.isp-order-panel {
			position: static;
			max-height: none;
		}

		.ipv4-buy-page .isp-order-panel {
			margin-right: 0;
		}
	}

	@media (max-width: 640px) {
		.isp-buy-page {
			gap: 18px;
		}

		.isp-product-grid {
			grid-template-columns: 1fr;
		}

		.ipv4-buy-page .isp-product-grid {
			grid-template-columns: 1fr;
		}

		.isp-order-panel {
			padding: 16px;
			border-radius: 14px;
		}

		.isp-duration-grid .duration-btn {
			flex: 1 1 calc(33.333% - 8px);
			min-width: 0;
		}

		.isp-pay-grid .pay-option {
			flex: 1 1 calc(50% - 8px);
		}
	}


	/* 动态住宅代理购买 */
	/* 磨砂卡片 */
	.glass-card {
		background: rgba(255, 255, 255, 0.02);
		backdrop-filter: blur(12px);
		-webkit-backdrop-filter: blur(12px);
		border: 1px solid rgba(255, 255, 255, 0.08);
		border-radius: 1rem;
		transition: all 0.4s ease;
	}

	.glass-card:hover {
		background: rgba(255, 255, 255, 0.04);
		border-color: rgba(34, 211, 238, 0.4);
		box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.5), 0 0 25px rgba(34, 211, 238, 0.15);
	}

	/* 套餐卡片选中发光 */
	.plan-card {
		cursor: pointer;
		position: relative;
		transition: transform 0.3s ease, box-shadow 0.4s ease, border-color 0.4s ease;
	}

	.plan-card.selected {
		border-color: #22D3EE;
		box-shadow: 0 0 30px rgba(34, 211, 238, 0.4), 0 10px 25px rgba(0, 0, 0, 0.4);
		transform: translateY(-4px);
		background: rgba(34, 211, 238, 0.05);
	}

	/* HOT 流光边框 */
	.hot-border {
		position: relative;
		overflow: hidden;
	}

	.hot-border::before {
		content: '';
		position: absolute;
		inset: -1px;
		border-radius: inherit;
		padding: 1px;
		background: conic-gradient(from 0deg, transparent 30%, #22D3EE 50%, transparent 70%);
		-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
		-webkit-mask-composite: xor;
		mask-composite: exclude;
		pointer-events: none;
		z-index: -1;
	}

	@keyframes spinBorder {
		to {
			transform: rotate(360deg);
		}
	}

	/* 皇冠图标 */
	.crown-icon {
		color: #fbbf24;
	}

	/* 支付按钮金属光泽 */
	.btn-metallic {
		background: linear-gradient(135deg, #22D3EE 0%, #0ea5e9 100%);
		border: none;
		color: #020617;
		font-weight: 600;
		position: relative;
		overflow: hidden;
		transition: all 0.3s ease;
	}

	.btn-metallic::after {
		content: '';
		position: absolute;
		top: 0;
		left: -100%;
		width: 100%;
		height: 100%;
		background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
		transition: left 0.6s ease;
	}

	.btn-metallic:hover::after {
		left: 100%;
	}

	.btn-metallic:hover {
		box-shadow: 0 0 25px rgba(34, 211, 238, 0.5);
		transform: translateY(-1px);
	}

	/* 优点看板图标底座 */
	.perk-base {
		background: rgba(34, 211, 238, 0.05);
		border: 1px solid rgba(34, 211, 238, 0.15);
		border-radius: 0.75rem;
		padding: 1rem;
		transition: all 0.3s ease;
	}

	.perk-base:hover {
		background: rgba(34, 211, 238, 0.1);
		border-color: rgba(34, 211, 238, 0.4);
	}

	.dynamic-buy-page {
		width: 100%;
		max-width: none;
		margin: 0;
		display: flex;
		flex-direction: column;
		gap: 1.8rem;
		color: #e2e8f0;
	}

	.dynamic-buy-page-header {
		margin-bottom: 0;
	}

	.dynamic-buy-page-header h1 {
		margin: 0;
		color: #fff;
		font-size: 1.6rem;
		font-weight: 700;
		letter-spacing: 0;
		line-height: 1.2;
	}

	.dynamic-buy-page-header p {
		margin-top: 0.2rem;
		color: #475569;
		font-size: 0.85rem;
	}

	.dynamic-buy-perks {
		display: grid;
		grid-template-columns: repeat(4, minmax(0, 1fr));
		gap: 1rem;
		margin-bottom: 0;
	}

	.dynamic-buy-perk {
		display: flex;
		align-items: flex-start;
		gap: 0.8rem;
		min-height: 4.8rem;
		padding: 1.2rem;
		border: 1px solid rgba(255, 255, 255, 0.06);
		border-radius: 1rem;
		background: rgba(15, 23, 42, 0.45);
		transition: border-color 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
	}

	.dynamic-buy-perk:hover {
		border-color: rgba(34, 211, 238, 0.3);
		box-shadow: 0 8px 20px rgba(34, 211, 238, 0.06);
	}

	.dynamic-buy-perk-icon {
		width: 40px;
		height: 40px;
		flex: 0 0 auto;
		display: flex;
		align-items: center;
		justify-content: center;
		border-radius: 0.6rem;
		background: rgba(34, 211, 238, 0.08);
		color: #22d3ee;
	}

	.dynamic-buy-perk-icon svg {
		width: 22px;
		height: 22px;
	}

	.dynamic-buy-perk p {
		margin: 0;
		color: #fff;
		font-size: 0.92rem;
		font-weight: 800;
	}

	.dynamic-buy-perk span {
		display: block;
		margin-top: 0.18rem;
		color: #64748b;
		font-size: 0.76rem;
	}

	.dynamic-buy-section {
		margin-bottom: 0;
	}

	.dynamic-buy-section h2,
	.dynamic-buy-custom h3 {
		margin: 0;
		color: #fff;
		font-size: 1.2rem;
		font-weight: 700;
		line-height: 1.2;
	}

	.dynamic-buy-section > p,
	.dynamic-buy-custom > p {
		margin: 0.3rem 0 1.25rem;
		color: #475569;
		font-size: 0.86rem;
	}

	.dynamic-buy-plan-carousel {
		display: grid;
		grid-template-columns: 2.6rem minmax(0, 1fr) 2.6rem;
		align-items: center;
		gap: 0.75rem;
	}

	.dynamic-buy-plan-grid {
		display: flex;
		gap: 1rem;
		overflow-x: auto;
		overflow-y: hidden;
		padding: 0.25rem 0.05rem 0.7rem;
		scroll-behavior: smooth;
		scroll-snap-type: x mandatory;
		scrollbar-color: rgba(34, 211, 238, 0.65) rgba(15, 23, 42, 0.75);
		scrollbar-width: thin;
	}

	.dynamic-buy-plan-grid::-webkit-scrollbar {
		height: 0.45rem;
	}

	.dynamic-buy-plan-grid::-webkit-scrollbar-track {
		border-radius: 999px;
		background: rgba(15, 23, 42, 0.75);
	}

	.dynamic-buy-plan-grid::-webkit-scrollbar-thumb {
		border-radius: 999px;
		background: rgba(34, 211, 238, 0.65);
	}

	.dynamic-buy-plan-grid::-webkit-scrollbar-thumb:hover {
		background: rgba(56, 227, 247, 0.9);
	}

	.dynamic-buy-plan-arrow {
		width: 2.6rem;
		height: 2.6rem;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		border: 1px solid rgba(34, 211, 238, 0.26);
		border-radius: 999px;
		background: rgba(15, 23, 42, 0.72);
		color: #22d3ee;
		cursor: pointer;
		transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
	}

	.dynamic-buy-plan-arrow svg {
		width: 1.1rem;
		height: 1.1rem;
	}

	.dynamic-buy-plan-arrow:hover {
		border-color: rgba(34, 211, 238, 0.72);
		background: #22d3ee;
		color: #020617;
		transform: translateY(-1px);
	}

	.dynamic-buy-plan-card {
		position: relative;
		flex: 0 0 calc((100% - 4rem) / 5);
		scroll-snap-align: start;
		min-height: 23.2rem;
		display: grid;
		grid-template-rows: 1.45rem 3.05rem 1.35rem 2.65rem 1.45rem minmax(5.4rem, 1fr) 2.4rem;
		align-items: center;
		row-gap: 0.28rem;
		overflow: hidden;
		padding: 1.8rem 1.2rem;
		border: 1px solid rgba(255, 255, 255, 0.08);
		border-radius: 1.2rem;
		background: rgba(15, 23, 42, 0.5);
		text-align: center;
		cursor: pointer;
		transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
	}

	.dynamic-buy-plan-card::after {
		content: "";
		position: absolute;
		bottom: 0;
		left: 0;
		z-index: 2;
		width: 0;
		height: 1.5px;
		background: #22d3ee;
		transition: width 0.4s ease;
		pointer-events: none;
	}

	.dynamic-buy-plan-card:hover {
		transform: translateY(-4px);
		border-color: rgba(34, 211, 238, 0.4);
		box-shadow: 0 16px 40px rgba(34, 211, 238, 0.1);
	}

	.dynamic-buy-plan-card:hover::after {
		width: 100%;
	}

	.dynamic-buy-plan-card.selected,
	.dynamic-buy-plan-card.recommended {
		border-color: rgba(34, 211, 238, 0.45);
		background: rgba(34, 211, 238, 0.04);
		box-shadow: 0 0 35px rgba(34, 211, 238, 0.12);
		animation: dynamicBuyRecommendedGlow 3s ease-in-out infinite;
	}

	.dynamic-buy-plan-card.selected {
		transform: translateY(-4px);
	}

	.dynamic-buy-plan-ribbon {
		position: absolute;
		top: 12px;
		right: -28px;
		z-index: 2;
		padding: 0.2rem 2rem;
		background: #22d3ee;
		color: #020617;
		font-size: 0.6rem;
		font-weight: 700;
		letter-spacing: 0.5px;
		transform: rotate(45deg);
		box-shadow: 0 0 14px rgba(34, 211, 238, 0.4);
	}

	.dynamic-buy-plan-badge {
		grid-row: 1;
		align-self: center;
		min-height: 1.35rem;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		margin-bottom: 0;
		padding: 0.3rem 1rem;
		border-radius: 999px;
		background: #22d3ee;
		color: #020617;
		font-size: 0.7rem;
		font-weight: 700;
		line-height: 1;
		letter-spacing: 0.5px;
		box-shadow: 0 0 16px rgba(34, 211, 238, 0.3);
	}

	.dynamic-buy-plan-gb {
		grid-row: 2;
		display: flex;
		align-items: center;
		justify-content: center;
		font-family: "JetBrains Mono", monospace;
		color: #fff;
		font-size: 2.5rem;
		font-weight: 800;
		line-height: 1;
		margin-bottom: 0;
		white-space: nowrap;
	}

	.dynamic-buy-plan-gb span {
		margin-left: 0.25rem;
		font-size: 0.78em;
	}

	.dynamic-buy-plan-card.is-long-gb .dynamic-buy-plan-gb {
		font-size: 1.65rem;
	}

	.dynamic-buy-plan-card.is-contact-plan .dynamic-buy-plan-gb {
		font-family: inherit;
		font-size: 1.42rem;
		white-space: nowrap;
	}

	.dynamic-buy-plan-label {
		grid-row: 3;
		margin-top: 0;
		margin-bottom: 0;
		color: #94a3b8;
		font-size: 0.9rem;
		font-weight: 600;
		line-height: 1.2;
		white-space: nowrap;
	}

	.dynamic-buy-plan-price {
		grid-row: 4;
		display: flex;
		align-items: center;
		justify-content: center;
		font-family: "JetBrains Mono", monospace;
		margin-top: 0;
		margin-bottom: 0;
		color: #22d3ee;
		font-size: 2.2rem;
		font-weight: 800;
		line-height: 1;
		white-space: nowrap;
	}

	.dynamic-buy-plan-card.is-contact-plan .dynamic-buy-plan-price {
		font-size: 1.42rem;
		white-space: nowrap;
	}

	.dynamic-buy-plan-unit {
		grid-row: 5;
		display: flex;
		align-items: center;
		justify-content: center;
		margin-top: 0;
		margin-bottom: 0;
		color: #fff;
		font-size: 0.95rem;
		font-weight: 700;
		line-height: 1.2;
		white-space: nowrap;
	}

	.dynamic-buy-plan-card.is-contact-plan .dynamic-buy-plan-unit {
		color: #fff;
		font-weight: 700;
	}

	.dynamic-buy-plan-features {
		grid-row: 6;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 0.25rem;
		width: fit-content;
		max-width: 100%;
		margin: 0;
		padding: 0;
		list-style: none;
		text-align: left;
		color: #94a3b8;
		font-size: 0.72rem;
		line-height: 1.35;
		justify-self: center;
	}

	.dynamic-buy-plan-features li {
		display: flex;
		align-items: center;
		justify-content: flex-start;
		gap: 0.4rem;
		width: 100%;
		white-space: nowrap;
	}

	.dynamic-buy-plan-features span {
		color: #22d3ee;
		font-weight: 900;
	}

	.dynamic-buy-plan-btn,
	.dynamic-buy-primary-btn {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		min-height: 2.4rem;
		border: 0;
		border-radius: 0.5rem;
		background: #22d3ee;
		color: #020617;
		font-size: 0.82rem;
		font-weight: 600;
		cursor: pointer;
		transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
	}

	.dynamic-buy-plan-btn {
		grid-row: 7;
		width: 100%;
		align-self: end;
		background: transparent;
		border: 1px solid rgba(255, 255, 255, 0.16);
		color: #e2e8f0;
	}

	.dynamic-buy-plan-card.recommended .dynamic-buy-plan-btn,
	.dynamic-buy-plan-card.selected .dynamic-buy-plan-btn {
		border-color: transparent;
		background: #22d3ee;
		color: #020617;
		box-shadow: 0 0 22px rgba(34, 211, 238, 0.2);
	}

	.dynamic-buy-plan-btn:hover,
	.dynamic-buy-primary-btn:hover {
		background: #38e3f7;
		color: #020617;
		box-shadow: 0 0 28px rgba(34, 211, 238, 0.34);
		transform: translateY(-1px);
	}

	.dynamic-buy-custom {
		display: grid;
		grid-template-columns: minmax(320px, 1fr) minmax(260px, max-content) 160px;
		grid-template-areas:
			"title . unit"
			"desc . unit"
			"input total action";
		align-items: end;
		column-gap: 14px;
		row-gap: 0.75rem;
		padding: 1.6rem;
		margin-bottom: 0;
		border-radius: 1.2rem;
		background: rgba(15, 23, 42, 0.5);
	}

	.dynamic-buy-custom h3 {
		grid-area: title;
	}

	.dynamic-buy-custom > p {
		grid-area: desc;
		margin-bottom: 0.15rem;
	}

	.dynamic-buy-custom-row {
		grid-area: input;
		min-width: 0;
		display: grid;
		grid-template-columns: auto minmax(0, 1fr) auto;
		align-items: center;
		gap: 0.85rem;
		margin-bottom: 0;
		color: #94a3b8;
		font-size: 0.86rem;
	}

	.dynamic-buy-custom-row input {
		width: 100%;
		min-width: 0;
		min-height: 2.65rem;
		border: 1px solid rgba(255, 255, 255, 0.1);
		border-radius: 0.5rem;
		background: rgba(255, 255, 255, 0.04);
		padding: 0 0.85rem;
		color: #e2e8f0;
		font-size: 1.05rem;
		font-weight: 700;
		outline: none;
	}

	.dynamic-buy-custom-row input:focus {
		border-color: rgba(34, 211, 238, 0.65);
		box-shadow: 0 0 0 2px rgba(34, 211, 238, 0.12);
	}

	.dynamic-buy-custom-calc {
		display: contents;
	}

	.dynamic-buy-custom-calc div:first-child {
		grid-area: unit;
		justify-self: end;
		align-self: end;
		min-width: 168px;
		text-align: left;
	}

	.dynamic-buy-custom-calc div:last-child {
		grid-area: total;
		justify-self: end;
		align-self: end;
		min-width: 260px;
		text-align: left;
	}

	.dynamic-buy-custom-calc div {
		display: grid;
		gap: 0.18rem;
	}

	.dynamic-buy-custom-calc div:first-child,
	.dynamic-buy-custom-calc div:last-child {
		display: flex;
		flex-direction: column;
		gap: 0.18rem;
	}

	.dynamic-buy-custom-calc span {
		color: #475569;
		font-size: 0.68rem;
		font-weight: 700;
		letter-spacing: 0.06em;
	}

	.dynamic-buy-custom-calc strong {
		font-family: "JetBrains Mono", monospace;
		color: #fff;
		font-size: 1.3rem;
		font-weight: 700;
	}

	.dynamic-buy-custom-calc strong.accent {
		color: #22d3ee;
		font-size: 1.6rem;
		white-space: nowrap;
	}

	.dynamic-buy-primary-btn {
		grid-area: action;
		justify-self: end;
		align-self: end;
		width: 160px;
		padding: 0.7rem 2.2rem;
		font-size: 0.9rem;
	}

	@keyframes dynamicBuyRecommendedGlow {
		0%,
		100% {
			box-shadow: 0 0 30px rgba(34, 211, 238, 0.1);
		}

		50% {
			box-shadow: 0 0 50px rgba(34, 211, 238, 0.2);
		}
	}

	@media (max-width: 1500px) {
		.dynamic-buy-plan-card {
			flex-basis: calc((100% - 4rem) / 5);
		}
	}

	@media (max-width: 1100px) {
		.dynamic-buy-perks {
			grid-template-columns: repeat(2, minmax(0, 1fr));
		}

		.dynamic-buy-plan-card {
			flex-basis: calc((100% - 1rem) / 2);
		}
	}

	@media (max-width: 900px) {
		.dynamic-buy-custom {
			grid-template-columns: 1fr;
			grid-template-areas:
				"title"
				"desc"
				"input"
				"unit"
				"total"
				"action";
		}

		.dynamic-buy-custom-calc div:first-child,
		.dynamic-buy-custom-calc div:last-child {
			justify-self: start;
		}

		.dynamic-buy-primary-btn {
			justify-self: start;
		}
	}

	@media (max-width: 640px) {
		.dynamic-buy-perks {
			grid-template-columns: 1fr;
		}

		.dynamic-buy-plan-carousel {
			grid-template-columns: 2.2rem minmax(0, 1fr) 2.2rem;
			gap: 0.45rem;
		}

		.dynamic-buy-plan-arrow {
			width: 2.2rem;
			height: 2.2rem;
		}

		.dynamic-buy-plan-card {
			flex-basis: 100%;
		}

		.dynamic-buy-custom-calc,
		.dynamic-buy-custom-row {
			align-items: stretch;
			gap: 0.65rem;
		}

		.dynamic-buy-custom-row,
		.dynamic-buy-custom-calc {
			grid-template-columns: 1fr;
		}

		.dynamic-buy-custom-row input {
			width: 100%;
		}

		.dynamic-buy-primary-btn {
			width: 100%;
		}
	}

	.dynamic-buy-page {
		gap: 2.25rem;
	}

	.dynamic-buy-page-header {
		padding-bottom: 0.35rem;
	}

	.dynamic-buy-page-header h1 {
		font-size: clamp(1.65rem, 2.4vw, 2.15rem);
		font-weight: 800;
	}

	.dynamic-buy-page-header p {
		margin-top: 0.45rem;
		color: #94a3b8;
		font-size: 0.92rem;
	}

	.dynamic-buy-perks {
		gap: 1.1rem;
	}

	.dynamic-buy-perk {
		border-color: rgba(34, 211, 238, 0.12);
		border-radius: 1.1rem;
		background: rgba(7, 17, 31, 0.58);
		backdrop-filter: blur(14px);
		-webkit-backdrop-filter: blur(14px);
	}

	.dynamic-buy-section h2,
	.dynamic-buy-custom h3,
	.dynamic-buy-section-title {
		margin: 0;
		color: #f8fafc;
		font-size: clamp(1.45rem, 2vw, 1.75rem);
		font-weight: 800;
		line-height: 1.2;
	}

	.dynamic-buy-section > p,
	.dynamic-buy-custom > p {
		color: #94a3b8;
	}

	.dynamic-buy-section-label {
		margin-bottom: 0.4rem;
		color: #94a3b8;
		font-size: 0.82rem;
		font-weight: 700;
		letter-spacing: 0;
	}

	.dynamic-buy-plan-carousel {
		position: relative;
		grid-template-columns: minmax(0, 1fr);
	}

	.dynamic-buy-plan-grid {
		gap: 20px;
		padding: 8px 4px 20px;
		scrollbar-color: rgba(34, 211, 238, 0.32) rgba(7, 17, 31, 0.45);
	}

	.dynamic-buy-plan-arrow {
		position: absolute;
		top: 50%;
		z-index: 5;
		width: 44px;
		height: 44px;
		border-color: rgba(34, 211, 238, 0.25);
		background: rgba(11, 23, 39, 0.86);
		box-shadow: 0 4px 20px rgba(0, 0, 0, 0.36);
		transform: translateY(-50%);
	}

	.dynamic-buy-plan-arrow-left {
		left: -6px;
	}

	.dynamic-buy-plan-arrow-right {
		right: -6px;
	}

	.dynamic-buy-plan-arrow:hover {
		background: rgba(18, 35, 59, 0.92);
		color: #22d3ee;
		transform: translateY(-50%) scale(1.05);
	}

	.dynamic-buy-plan-card {
		flex: 0 0 300px;
		min-height: 590px;
		display: grid;
		grid-template-rows: 2.55rem 3.4rem 2.05rem 3.2rem 2.3rem minmax(9rem, 1fr) 46px;
		align-items: start;
		row-gap: 0;
		padding: 32px 24px 28px;
		border: 1px solid rgba(34, 211, 238, 0.12);
		border-radius: 24px;
		background:
			repeating-linear-gradient(0deg, transparent, transparent 3px, rgba(34, 211, 238, 0.006) 3px, rgba(34, 211, 238, 0.006) 4px),
			repeating-linear-gradient(90deg, transparent, transparent 3px, rgba(139, 92, 246, 0.004) 3px, rgba(139, 92, 246, 0.004) 4px),
			radial-gradient(ellipse at 20% 20%, rgba(34, 211, 238, 0.045) 0%, transparent 50%),
			radial-gradient(ellipse at 80% 80%, rgba(139, 92, 246, 0.035) 0%, transparent 50%),
			rgba(7, 17, 31, 0.82);
		background-size: 40px 40px, 40px 40px, 100% 100%, 100% 100%, 100% 100%;
		text-align: left;
		box-shadow: 0 4px 24px rgba(0, 0, 0, 0.28);
	}

	.dynamic-buy-plan-card::before {
		content: "";
		position: absolute;
		top: -2px;
		left: 20%;
		z-index: 2;
		width: 60%;
		height: 3px;
		border-radius: 999px;
		background: linear-gradient(90deg, transparent, rgba(34, 211, 238, 0.72), transparent);
		opacity: 0;
		transition: opacity 0.25s ease;
		pointer-events: none;
	}

	.dynamic-buy-plan-card::after {
		inset: 0;
		width: auto;
		height: auto;
		z-index: 0;
		border-radius: 24px;
		background:
			radial-gradient(ellipse at 50% 0%, rgba(34, 211, 238, 0.07) 0%, transparent 40%),
			radial-gradient(ellipse at 50% 100%, rgba(139, 92, 246, 0.05) 0%, transparent 40%);
		opacity: 0.65;
	}

	.dynamic-buy-plan-card > * {
		position: relative;
		z-index: 1;
	}

	.dynamic-buy-plan-card:hover {
		transform: translateY(-8px);
		border-color: rgba(34, 211, 238, 0.36);
		box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45), 0 0 60px rgba(34, 211, 238, 0.1);
	}

	.dynamic-buy-plan-card:hover::before {
		opacity: 1;
	}

	.dynamic-buy-plan-card.selected,
	.dynamic-buy-plan-card.recommended {
		border-color: rgba(139, 92, 246, 0.42);
		background:
			repeating-linear-gradient(0deg, transparent, transparent 3px, rgba(139, 92, 246, 0.012) 3px, rgba(139, 92, 246, 0.012) 4px),
			repeating-linear-gradient(90deg, transparent, transparent 3px, rgba(34, 211, 238, 0.01) 3px, rgba(34, 211, 238, 0.01) 4px),
			radial-gradient(ellipse at 30% 10%, rgba(139, 92, 246, 0.11) 0%, transparent 45%),
			radial-gradient(ellipse at 70% 90%, rgba(34, 211, 238, 0.07) 0%, transparent 45%),
			linear-gradient(180deg, #0f1028 0%, #0b1426 35%, #0b1727 100%);
		box-shadow: 0 0 40px rgba(139, 92, 246, 0.12), 0 8px 32px rgba(0, 0, 0, 0.35);
		animation: none;
	}

	.dynamic-buy-plan-card.selected {
		transform: none;
	}

	.dynamic-buy-plan-tags {
		grid-row: 1;
		display: flex;
		align-items: center;
		gap: 8px;
		width: 100%;
		min-width: 0;
		min-height: 0;
		margin: 0;
		align-self: start;
	}

	.dynamic-buy-plan-badge,
	.dynamic-buy-plan-ribbon {
		position: static;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		min-width: 0;
		height: 26px;
		padding: 0.38rem 0.82rem;
		border-radius: 999px;
		font-size: 0.68rem;
		font-weight: 800;
		line-height: 1;
		white-space: nowrap;
		transform: none;
	}

	.dynamic-buy-plan-badge {
		flex: 1 1 auto;
		background: rgba(16, 185, 129, 0.14);
		border: 1px solid rgba(16, 185, 129, 0.3);
		color: #34d399;
		box-shadow: none;
	}

	.dynamic-buy-plan-ribbon {
		flex: 0 0 auto;
		padding: 0.38rem 0.86rem;
		background: linear-gradient(135deg, #8b5cf6, #6d28d9);
		color: #fff;
		box-shadow: 0 0 14px rgba(139, 92, 246, 0.26);
	}

	.dynamic-buy-plan-gb {
		grid-row: 2;
		justify-content: flex-start;
		margin: 0;
		font-size: 2.5rem;
		align-self: end;
	}

	.dynamic-buy-plan-gb span {
		font-size: 0.5em;
		font-weight: 600;
		color: #cbd5e1;
	}

	.dynamic-buy-plan-card.is-contact-plan .dynamic-buy-plan-gb {
		justify-content: flex-start;
		font-size: 1.5rem;
	}

	.dynamic-buy-plan-label {
		grid-row: 3;
		margin: 0.28rem 0 0;
		color: #94a3b8;
		font-size: 0.9rem;
		align-self: start;
	}

	.dynamic-buy-plan-price {
		grid-row: 4;
		justify-content: flex-start;
		margin: 0;
		color: #22d3ee;
		font-size: 2rem;
		align-self: center;
	}

	.dynamic-buy-plan-unit {
		grid-row: 5;
		justify-content: flex-start;
		margin: 0;
		color: #94a3b8;
		font-size: 0.9rem;
		align-self: start;
	}

	.dynamic-buy-plan-features {
		grid-row: 6;
		align-items: stretch;
		justify-content: flex-start;
		gap: 0.42rem;
		width: 100%;
		margin: 0;
		color: #94a3b8;
		font-size: 0.82rem;
		line-height: 1.45;
	}

	.dynamic-buy-plan-features li {
		align-items: flex-start;
		white-space: normal;
	}

	.dynamic-buy-plan-features span {
		color: #10b981;
	}

	.dynamic-buy-plan-btn {
		grid-row: 7;
		align-self: end;
		margin-top: 0;
		min-height: 46px;
		border-radius: 12px;
		border-color: rgba(34, 211, 238, 0.3);
		color: #22d3ee;
		font-size: 0.95rem;
		font-weight: 700;
	}

	.dynamic-buy-plan-card.recommended .dynamic-buy-plan-btn,
	.dynamic-buy-plan-card.selected .dynamic-buy-plan-btn {
		background: linear-gradient(135deg, #8b5cf6, #6d28d9);
		color: #fff;
		box-shadow: 0 10px 24px rgba(139, 92, 246, 0.2);
	}

	.dynamic-buy-custom {
		display: grid;
		grid-template-columns: minmax(320px, 1fr) minmax(260px, max-content) 160px;
		grid-template-areas:
			"title . unit"
			"desc . unit"
			"input total action";
		align-items: end;
		column-gap: 14px;
		row-gap: 0.75rem;
		padding: 1.6rem;
		margin-bottom: 0;
		border-radius: 1.2rem;
		background: rgba(15, 23, 42, 0.5);
	}

	.dynamic-buy-custom h3 {
		grid-area: title;
	}

	.dynamic-buy-custom > p {
		grid-area: desc;
	}

	.dynamic-buy-custom-row {
		grid-area: input;
		min-width: 0;
		display: grid;
		grid-template-columns: auto minmax(0, 1fr) auto;
		align-items: center;
		gap: 0.85rem;
		margin-bottom: 0;
		color: #94a3b8;
		font-size: 0.86rem;
	}

	.dynamic-buy-custom-row input {
		width: 100%;
		min-width: 0;
		min-height: 2.65rem;
		border: 1px solid rgba(255, 255, 255, 0.1);
		border-radius: 0.5rem;
		background: rgba(255, 255, 255, 0.04);
		padding: 0 0.85rem;
		color: #e2e8f0;
		font-size: 1.05rem;
		font-weight: 700;
		outline: none;
	}

	.dynamic-buy-custom-calc {
		display: contents;
	}

	.dynamic-buy-custom-calc div:first-child {
		grid-area: unit;
		justify-self: end;
		align-self: end;
		min-width: 168px;
		text-align: left;
	}

	.dynamic-buy-custom-calc div:last-child {
		grid-area: total;
		justify-self: end;
		align-self: end;
		min-width: 260px;
		text-align: left;
	}

	.dynamic-buy-custom-calc div {
		display: grid;
		gap: 0.18rem;
	}

	.dynamic-buy-custom-calc div:first-child,
	.dynamic-buy-custom-calc div:last-child {
		display: flex;
		flex-direction: column;
		gap: 0.18rem;
	}

	.dynamic-buy-custom-calc strong {
		font-family: "JetBrains Mono", monospace;
		color: #fff;
		font-size: 1.3rem;
		font-weight: 700;
	}

	.dynamic-buy-custom-calc strong.accent {
		color: #22d3ee;
		font-size: 1.6rem;
		white-space: nowrap;
	}

	.dynamic-buy-primary-btn {
		grid-area: action;
		justify-self: end;
		align-self: end;
		width: 160px;
		padding: 0.7rem 2.2rem;
		font-size: 0.9rem;
	}

	.dynamic-buy-features-section {
		margin-bottom: 0;
	}

	.dynamic-buy-feature-grid {
		display: grid;
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 16px;
		margin-top: 1.4rem;
	}

	.dynamic-buy-feature-card {
		min-height: 178px;
		padding: 22px;
		border: 1px solid rgba(34, 211, 238, 0.12);
		border-radius: 18px;
		background: rgba(7, 17, 31, 0.62);
		box-shadow: 0 4px 22px rgba(0, 0, 0, 0.22);
		transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
	}

	.dynamic-buy-feature-card:hover {
		border-color: rgba(34, 211, 238, 0.34);
		box-shadow: 0 12px 34px rgba(34, 211, 238, 0.08);
		transform: translateY(-3px);
	}

	.dynamic-buy-feature-icon {
		width: 42px;
		height: 42px;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		margin-bottom: 16px;
		border-radius: 12px;
		background: rgba(34, 211, 238, 0.08);
		color: #22d3ee;
	}

	.dynamic-buy-feature-icon.is-success {
		background: rgba(16, 185, 129, 0.1);
		color: #10b981;
	}

	.dynamic-buy-feature-icon svg {
		width: 22px;
		height: 22px;
	}

	.dynamic-buy-feature-card h4 {
		margin: 0 0 8px;
		color: #f8fafc;
		font-size: 1rem;
		font-weight: 800;
	}

	.dynamic-buy-feature-card p {
		margin: 0;
		color: #94a3b8;
		font-size: 0.86rem;
		line-height: 1.65;
	}

	@media (max-width: 1100px) {
		.dynamic-buy-feature-grid {
			grid-template-columns: repeat(2, minmax(0, 1fr));
		}

	}

	@media (max-width: 640px) {
		.dynamic-buy-plan-card {
			flex-basis: min(300px, 86vw);
		}

		.dynamic-buy-feature-grid {
			grid-template-columns: 1fr;
		}

	}

	body.auth-modal-open {
		overflow: hidden;
	}

	.auth-message-modal {
		position: fixed;
		inset: 0;
		z-index: 10000;
		display: flex;
		align-items: center;
		justify-content: center;
		padding: 24px;
		background: rgba(2, 6, 23, 0.72);
		backdrop-filter: blur(10px);
		-webkit-backdrop-filter: blur(10px);
	}

	.auth-message-modal.is-hidden {
		display: none;
	}

	.auth-message-panel {
		width: min(420px, 100%);
		background: #0F172A;
		border: 1px solid rgba(34, 211, 238, 0.28);
		border-radius: 16px;
		box-shadow: 0 28px 80px rgba(0, 0, 0, 0.58), 0 0 42px rgba(34, 211, 238, 0.1);
		padding: 24px;
		color: #F8FAFC;
	}

	.auth-message-title {
		font-size: 1.05rem;
		font-weight: 700;
		margin-bottom: 12px;
		color: #F8FAFC;
	}

	.auth-message-body {
		min-height: 24px;
		font-size: 0.92rem;
		line-height: 1.6;
		color: #CBD5E1;
		word-break: break-word;
	}

	.auth-message-ok {
		width: 100%;
		margin-top: 22px;
		padding: 0.75rem 1rem;
		border: none;
		border-radius: 10px;
		background: #22D3EE;
		color: #020617;
		font-size: 0.95rem;
		font-weight: 700;
		cursor: pointer;
		box-shadow: 0 12px 28px rgba(34, 211, 238, 0.24);
		transition: all 0.2s ease;
	}

	.auth-message-ok:hover {
		background: #67E8F9;
		transform: translateY(-1px);
	}

	.auth-message-ok:focus {
		outline: 2px solid rgba(103, 232, 249, 0.75);
		outline-offset: 3px;
	}

	.auth-message-actions {
		display: flex;
		gap: 12px;
		margin-top: 22px;
	}

	.auth-message-cancel,
	.auth-message-confirm {
		flex: 1;
		padding: 0.75rem 1rem;
		border-radius: 10px;
		font-size: 0.95rem;
		font-weight: 700;
		cursor: pointer;
		transition: all 0.2s ease;
	}

	.auth-message-cancel {
		border: 1px solid rgba(148, 163, 184, 0.24);
		background: rgba(148, 163, 184, 0.08);
		color: #CBD5E1;
	}

	.auth-message-cancel:hover {
		border-color: rgba(148, 163, 184, 0.45);
		background: rgba(148, 163, 184, 0.14);
		color: #F8FAFC;
	}

	.auth-message-confirm {
		border: none;
		background: #22D3EE;
		color: #020617;
		box-shadow: 0 12px 28px rgba(34, 211, 238, 0.24);
	}

	.auth-message-confirm:hover {
		background: #67E8F9;
		transform: translateY(-1px);
	}

	.auth-message-cancel:focus,
	.auth-message-confirm:focus {
		outline: 2px solid rgba(103, 232, 249, 0.75);
		outline-offset: 3px;
	}

	.isp-pay-modal {
		position: fixed;
		inset: 0;
		z-index: 9999;
		display: flex;
		align-items: center;
		justify-content: center;
		padding: 24px;
		background: rgba(2, 6, 23, 0.72);
		backdrop-filter: blur(10px);
		-webkit-backdrop-filter: blur(10px);
	}

	.isp-pay-modal.is-hidden {
		display: none;
	}

	.isp-pay-panel {
		position: relative;
		width: min(360px, 100%);
		padding: 26px 24px 24px;
		border-radius: 16px;
		border: 1px solid rgba(34, 211, 238, 0.28);
		background: #0F172A;
		box-shadow: 0 28px 80px rgba(0, 0, 0, 0.58), 0 0 42px rgba(34, 211, 238, 0.1);
		color: #F8FAFC;
		text-align: center;
	}

	.isp-pay-close {
		position: absolute;
		top: 12px;
		right: 12px;
		width: 28px;
		height: 28px;
		border: 1px solid rgba(255, 255, 255, 0.12);
		border-radius: 50%;
		background: rgba(255, 255, 255, 0.04);
		color: #94A3B8;
		cursor: pointer;
		line-height: 1;
		transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
	}

	.isp-pay-close:hover {
		border-color: rgba(34, 211, 238, 0.55);
		background: rgba(34, 211, 238, 0.1);
		color: #F8FAFC;
	}

	.isp-pay-title {
		margin: 0 0 8px;
		font-size: 1.08rem;
		font-weight: 700;
	}

	.isp-pay-desc {
		margin: 0 0 18px;
		color: #CBD5E1;
		font-size: 0.88rem;
	}

	.isp-pay-qr-box {
		width: 220px;
		height: 220px;
		margin: 0 auto;
		padding: 10px;
		border-radius: 18px;
		background: #fff;
		box-shadow: 0 0 0 2px rgba(34, 211, 238, 0.3), 0 0 30px rgba(34, 211, 238, 0.15);
	}

	.isp-pay-qr-box img {
		display: block;
		width: 100%;
		height: 100%;
		object-fit: contain;
	}

	.isp-pay-status {
		margin: 18px 0 0;
		color: #22D3EE;
		font-size: 0.86rem;
	}

	.dashboard-pay-option {
		min-height: 56px;
		display: flex;
		align-items: center;
		justify-content: flex-start;
		gap: 0.65rem;
		padding: 0 1.9rem;
		border: 1px solid rgba(255, 255, 255, 0.1);
		border-radius: 12px;
		background: rgba(255, 255, 255, 0.05);
		color: #CBD5E1;
		font-size: 0.92rem;
		font-weight: 700;
		line-height: 1;
		text-align: left;
		cursor: pointer;
		transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
	}

	.dashboard-pay-option:hover {
		border-color: rgba(34, 211, 238, 0.5);
		background: rgba(34, 211, 238, 0.08);
		color: #F8FAFC;
	}

	.dashboard-pay-option.selected {
		border-color: rgba(34, 211, 238, 0.8);
		background: rgba(34, 211, 238, 0.14);
		color: #F8FAFC;
		box-shadow: 0 0 0 1px rgba(34, 211, 238, 0.2), 0 14px 34px rgba(34, 211, 238, 0.12);
	}

	.dashboard-pay-option:disabled {
		opacity: 0.6;
		cursor: not-allowed;
	}

	.dashboard-pay-option .payment-brand-icon {
		width: 1.5rem;
		height: 1.5rem;
	}

	.dashboard-pay-option > span:not(.payment-brand-icon) {
		display: inline-flex;
		align-items: center;
		min-height: 1.5rem;
	}



	/* 动态购买 */
	.bg-glass {
		background: rgba(15, 23, 42, 0.9);
		backdrop-filter: blur(20px);
		-webkit-backdrop-filter: blur(20px);
		border: 1px solid rgba(255, 255, 255, 0.1);
	}

	.shadow-cyan-glow {
		box-shadow: 0 0 30px rgba(34, 211, 238, 0.2), 0 20px 40px -15px rgba(0, 0, 0, 0.6);
	}

	/* 支付方式卡片选中效果 */
	.pay-radio-card {
		border: 1px solid rgba(255, 255, 255, 0.08);
		transition: all 0.3s ease;
	}

	.pay-radio-card.selected {
		border-color: #22D3EE;
		box-shadow: 0 0 12px rgba(34, 211, 238, 0.3), inset 0 0 20px rgba(34, 211, 238, 0.05);
		background: rgba(34, 211, 238, 0.08);
	}

	.pay-radio-card:hover:not(.selected) {
		border-color: rgba(34, 211, 238, 0.4);
		background: rgba(255, 255, 255, 0.02);
	}

	.pay-radio-card .payment-brand-icon {
		width: 2rem;
		height: 2rem;
	}

	/* 优惠券成功动画 */
	.coupon-success {
		transition: all 0.3s;
	}

	/* 按钮加载旋转 */
	@keyframes spin {
		to {
			transform: rotate(360deg);
		}
	}

	.animate-spin-slow {
		animation: spin 1.5s linear infinite;
	}

	/* 订单号复制效果 */
	.order-id {
		transition: color 0.2s;
		cursor: pointer;
	}

	.order-id:active {
		transform: scale(0.98);
	}

	.center-layout {
		display: flex;
		height: 100%;
		overflow: hidden;
	}

	.center-sidebar {
		position: relative;
		z-index: 10;
		width: 280px;
		min-width: 280px;
		height: 100%;
		display: flex;
		flex-direction: column;
		background: rgba(15, 23, 42, 0.72);
		backdrop-filter: blur(20px);
		-webkit-backdrop-filter: blur(20px);
		border-right: 1px solid rgba(255, 255, 255, 0.08);
	}

	.center-sidebar-logo {
		display: flex;
		align-items: center;
		gap: 0.7rem;
		padding: 1.15rem 1.05rem 0.9rem;
		border-bottom: 1px solid rgba(255, 255, 255, 0.06);
		text-decoration: none;
	}

	.center-sidebar-brand-logo {
		display: inline-flex;
		width: 200px;
		margin: 0 auto;
		line-height: 0;
	}

	.center-sidebar-brand-logo img {
		display: block;
		width: 100%;
		height: auto;
	}

	.center-sidebar-logo-icon {
		width: 34px;
		height: 34px;
		color: #22d3ee;
		flex-shrink: 0;
	}

	.center-sidebar-logo-text {
		font-size: 1.9rem;
		font-weight: 800;
		line-height: 1;
		letter-spacing: -0.03em;
		color: #ffffff;
	}

	.center-sidebar-logo-text span {
		color: #22d3ee;
	}

	.center-sidebar-logo-sub {
		margin-top: 0.18rem;
		font-size: 0.62rem;
		font-weight: 600;
		line-height: 1;
		letter-spacing: 0.14em;
		text-transform: uppercase;
		color: #64748b;
	}

	.center-sidebar-nav {
		flex: 1;
		overflow-y: auto;
		padding: 0.6rem 0.6rem 0.9rem;
	}

	.center-sidebar-nav::-webkit-scrollbar {
		width: 3px;
	}

	.center-sidebar-nav::-webkit-scrollbar-thumb {
		background: rgba(255, 255, 255, 0.08);
		border-radius: 999px;
	}

	.center-nav-stack {
		display: flex;
		flex-direction: column;
		gap: 0.32rem;
	}

	.center-nav-item,
	.center-nav-group-header {
		width: 100%;
		border: 0;
		background: transparent;
		font: inherit;
	}

	.center-nav-item {
		position: relative;
		display: flex;
		align-items: center;
		gap: 0.62rem;
		padding: 0.62rem 0.72rem;
		border-radius: 0.8rem;
		color: #94a3b8;
		font-size: 0.86rem;
		font-weight: 500;
		line-height: 1.2;
		text-align: left;
		cursor: pointer;
		transition: color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
	}

	.center-nav-item.is-primary {
		margin-bottom: 0.25rem;
		padding-left: 0.95rem;
		font-size: 0.92rem;
		font-weight: 700;
	}

	.center-nav-item:hover {
		background: rgba(34, 211, 238, 0.04);
		color: #e2e8f0;
	}

	.center-home-link {
		margin-bottom: 0.22rem;
		text-decoration: none;
	}

	.center-home-link:hover {
		background: rgba(34, 211, 238, 0.07);
	}

	.center-home-link .menu-icon {
		color: #22d3ee;
	}

	.center-sidebar .menu-item.active {
		background: rgba(34, 211, 238, 0.08);
		color: #ffffff;
		box-shadow: inset 0 0 0 1px rgba(34, 211, 238, 0.06);
	}

	.center-sidebar .menu-item.active::before {
		content: '';
		position: absolute;
		left: 0;
		top: 20%;
		width: 2px;
		height: 60%;
		border-radius: 0 2px 2px 0;
		background: #22d3ee;
		box-shadow: 0 0 10px rgba(34, 211, 238, 0.5);
	}

	.center-sidebar .menu-icon,
	.center-nav-group-arrow,
	.center-nav-subgroup-icon {
		color: currentColor;
		flex-shrink: 0;
	}

	.center-sidebar .menu-icon {
		width: 18px;
		height: 18px;
		color: #64748b;
		transition: color 0.2s ease;
	}

	.center-sidebar .menu-item:hover .menu-icon {
		color: #cbd5e1;
	}

	.center-sidebar .menu-item.active .menu-icon {
		color: #22d3ee;
	}

	.center-sidebar .menu-text {
		color: inherit;
		transition: color 0.2s ease;
	}

	.center-nav-group {
		display: flex;
		flex-direction: column;
		gap: 0.25rem;
	}

	.center-nav-group-header {
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding: 0.55rem 0.78rem;
		border-radius: 0.72rem;
		color: #64748b;
		font-size: 0.7rem;
		font-weight: 700;
		letter-spacing: 0.08em;
		text-transform: uppercase;
		cursor: pointer;
		transition: background-color 0.2s ease, color 0.2s ease;
	}

	.center-nav-group-header:hover {
		background: rgba(255, 255, 255, 0.03);
		color: #94a3b8;
	}

	.center-nav-group-arrow {
		width: 14px;
		height: 14px;
		transition: transform 0.24s ease;
	}

	.center-nav-group[data-collapsed="true"] .center-nav-group-arrow {
		transform: rotate(-90deg);
	}

	.center-nav-group-body {
		display: flex;
		flex-direction: column;
		gap: 0.24rem;
		max-height: 900px;
		opacity: 1;
		overflow: hidden;
		transition: max-height 0.28s ease, opacity 0.2s ease;
	}

	.center-nav-group[data-collapsed="true"] .center-nav-group-body {
		max-height: 0;
		opacity: 0;
		pointer-events: none;
	}

	.center-nav-subgroup {
		display: flex;
		flex-direction: column;
		gap: 0.2rem;
		padding-left: 0.15rem;
	}

	.center-nav-subgroup-title {
		display: flex;
		align-items: center;
		gap: 0.7rem;
		padding: 0.45rem 0.8rem;
		color: #cbd5e1;
		font-size: 0.83rem;
		font-weight: 600;
		line-height: 1.2;
	}

	.center-nav-subgroup-entry {
		padding-top: 0.55rem;
		padding-bottom: 0.55rem;
		font-size: 0.83rem;
		font-weight: 600;
	}

	.center-nav-subgroup-icon {
		width: 17px;
		height: 17px;
		color: #94a3b8;
	}

	.center-nav-subitems {
		display: flex;
		flex-direction: column;
		gap: 0.14rem;
		padding-left: 1.85rem;
	}

	.center-nav-subitems .center-nav-item {
		padding: 0.58rem 0.82rem;
		font-size: 0.8rem;
		border-radius: 0.7rem;
	}

	.center-sidebar-footer {
		padding: 1rem;
		border-top: 1px solid rgba(255, 255, 255, 0.06);
		background: linear-gradient(180deg, rgba(15, 23, 42, 0.2) 0%, rgba(15, 23, 42, 0.72) 100%);
	}

	.center-sidebar-user-card {
		display: flex;
		flex-direction: column;
		gap: 0;
		padding: 0.95rem 1rem 1rem;
		border-radius: 1rem;
		border: 1px solid rgba(255, 255, 255, 0.08);
		background: linear-gradient(135deg, rgba(18, 28, 54, 0.94) 0%, rgba(10, 18, 40, 0.94) 100%);
		box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 18px 28px rgba(2, 6, 23, 0.28);
	}

	.center-sidebar-user {
		min-width: 0;
		display: flex;
		align-items: center;
		gap: 0.85rem;
		justify-content: space-between;
	}

	.center-sidebar-avatar {
		width: 46px;
		height: 46px;
		border-radius: 999px;
		display: flex;
		align-items: center;
		justify-content: center;
		background: linear-gradient(135deg, #1dd3f8 0%, #0ea5e9 55%, #2563eb 100%);
		color: #020617;
		font-size: 0.92rem;
		font-weight: 800;
		flex-shrink: 0;
		box-shadow: 0 10px 24px rgba(14, 165, 233, 0.28);
	}

	.center-sidebar-avatar.has-image {
		overflow: hidden;
		background: transparent;
	}

	.center-sidebar-avatar img {
		width: 100%;
		height: 100%;
		display: block;
		object-fit: cover;
		border-radius: inherit;
	}

	.center-sidebar-user-meta {
		min-width: 0;
		flex: 1;
		display: flex;
		flex-direction: column;
		gap: 0.18rem;
	}

	.center-sidebar-user-name {
		margin: 0;
		font-size: 0.96rem;
		font-weight: 700;
		line-height: 1.2;
		color: #ffffff;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
	}

	.center-sidebar-balance-hidden {
		display: none;
	}

	.center-sidebar-user-balance {
		margin: 0;
		display: flex;
		align-items: center;
		gap: 0.42rem;
		font-size: 0.76rem;
		font-weight: 600;
		color: #dbeafe;
	}

	.center-sidebar-user-dot {
		width: 7px;
		height: 7px;
		border-radius: 999px;
		background: #22d3ee;
		box-shadow: 0 0 8px rgba(34, 211, 238, 0.55);
		flex-shrink: 0;
	}

	.center-sidebar-logout {
		min-width: 0;
		height: 34px;
		padding: 0 0.9rem;
		margin-left: auto;
		border: 1px solid rgba(248, 113, 113, 0.18);
		border-radius: 999px;
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 0.45rem;
		background: rgba(239, 68, 68, 0.06);
		color: #fca5a5;
		cursor: pointer;
		flex-shrink: 0;
		transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
	}

	.center-sidebar-logout:hover {
		background: rgba(239, 68, 68, 0.12);
		border-color: rgba(248, 113, 113, 0.32);
		color: #fecaca;
		transform: translateY(-1px);
	}

	.center-sidebar-logout svg {
		width: 15px;
		height: 15px;
	}

	.center-sidebar-logout-text {
		font-size: 0.74rem;
		font-weight: 700;
		letter-spacing: 0.02em;
	}

	.center-main-shell {
		flex: 1;
		min-width: 0;
		display: flex;
		flex-direction: column;
		background: #020617;
	}

	.center-main-topbar {
		position: relative;
		z-index: 80;
		display: flex;
		align-items: center;
		justify-content: flex-end;
		gap: 0.8rem;
		padding: 0.72rem 1rem;
		border-bottom: 1px solid rgba(255, 255, 255, 0.06);
		background: rgba(2, 6, 23, 0.72);
		backdrop-filter: blur(16px);
		-webkit-backdrop-filter: blur(16px);
		overflow: visible;
	}

	.center-main-current-page {
		padding: 0.45rem 0.82rem;
		border-radius: 999px;
		border: 1px solid rgba(255, 255, 255, 0.08);
		background: rgba(255, 255, 255, 0.03);
		color: #cbd5e1;
		font-size: 0.74rem;
		font-weight: 700;
		line-height: 1;
		letter-spacing: 0.04em;
		white-space: nowrap;
	}

	.center-main-toolbar {
		position: relative;
		z-index: 81;
		display: flex;
		align-items: center;
		justify-content: flex-end;
		gap: 0.5rem;
		min-width: 0;
		overflow: visible;
	}

	.center-lang-switch {
		position: relative;
		display: inline-flex;
		align-items: center;
		flex-shrink: 0;
	}

	.center-lang-trigger {
		min-width: 126px;
		height: 36px;
		display: inline-flex;
		align-items: center;
		justify-content: space-between;
		gap: 0.5rem;
		padding: 0 0.75rem;
		border: 1px solid rgba(255, 255, 255, 0.08);
		border-radius: 0.85rem;
		background: rgba(255, 255, 255, 0.03);
		color: #cbd5e1;
		cursor: pointer;
		font-size: 0.76rem;
		font-weight: 800;
		line-height: 1;
		white-space: nowrap;
		transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
	}

	.center-lang-trigger [data-center-lang-current] {
		display: inline-flex;
		align-items: center;
		gap: 0.5rem;
		min-width: 0;
		flex: 1 1 auto;
	}

	.center-lang-icon {
		width: 22px;
		height: 22px;
		flex: 0 0 22px;
		display: block;
		object-fit: cover;
		border-radius: 6px;
		overflow: hidden;
	}

	.center-lang-text {
		display: inline-block;
		min-width: 0;
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
	}

	.center-lang-trigger::after {
		content: '';
		width: 7px;
		height: 7px;
		border-right: 1.5px solid currentColor;
		border-bottom: 1.5px solid currentColor;
		transform: rotate(45deg) translateY(-1px);
		transition: transform 0.2s ease;
		opacity: 0.8;
	}

	.center-lang-switch.is-open .center-lang-trigger::after {
		transform: rotate(225deg) translateY(-1px);
	}

	.center-lang-trigger:hover,
	.center-lang-switch.is-open .center-lang-trigger {
		color: #f8fafc;
		border-color: rgba(34, 211, 238, 0.28);
		background: rgba(34, 211, 238, 0.1);
		box-shadow: 0 0 0 1px rgba(34, 211, 238, 0.1);
	}

	.center-lang-menu {
		position: absolute;
		top: calc(100% + 8px);
		right: 0;
		z-index: 120;
		min-width: 220px;
		padding: 0.35rem;
		border: 1px solid rgba(34, 211, 238, 0.18);
		border-radius: 0.75rem;
		background: rgba(15, 23, 42, 0.96);
		box-shadow: 0 18px 44px rgba(0, 0, 0, 0.42), 0 0 0 1px rgba(255, 255, 255, 0.04);
		backdrop-filter: blur(16px);
		-webkit-backdrop-filter: blur(16px);
		opacity: 0;
		visibility: hidden;
		transform: translateY(-4px);
		transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
	}

	.center-lang-switch.is-open .center-lang-menu {
		opacity: 1;
		visibility: visible;
		transform: translateY(0);
	}

	.center-lang-menu button {
		width: 100%;
		height: 36px;
		display: flex;
		align-items: center;
		gap: 0.55rem;
		padding: 0 0.65rem;
		border: 0;
		border-radius: 0.55rem;
		background: transparent;
		color: #94a3b8;
		cursor: pointer;
		font-size: 0.74rem;
		font-weight: 800;
		line-height: 1;
		white-space: nowrap;
		text-align: left;
		transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
	}

	.center-lang-menu button:hover {
		color: #e2e8f0;
		background: rgba(255, 255, 255, 0.05);
	}

	.center-lang-menu button.active {
		background: rgba(34, 211, 238, 0.16);
		color: #f8fafc;
		box-shadow: 0 0 0 1px rgba(34, 211, 238, 0.18);
	}

	#toastContainer {
		position: fixed;
		top: 80px;
		right: 24px;
		z-index: 200;
		display: flex;
		flex-direction: column;
		align-items: flex-end;
		gap: 0.75rem;
		pointer-events: none;
	}

	#toastContainer > * {
		max-width: min(360px, calc(100vw - 32px));
		pointer-events: auto;
	}

	@media (max-width: 768px) {
		#toastContainer {
			top: 72px;
			right: 16px;
			left: 16px;
			align-items: stretch;
		}

		#toastContainer > * {
			max-width: none;
		}
	}

	.center-top-icon-btn,
	.center-top-avatar-btn,
	.center-top-plan,
	.center-top-balance {
		position: relative;
	}

	.center-top-icon-btn,
	.center-top-avatar-btn {
		width: 36px;
		height: 36px;
		border: 1px solid rgba(255, 255, 255, 0.08);
		border-radius: 0.85rem;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		background: rgba(255, 255, 255, 0.02);
		color: #cbd5e1;
		cursor: pointer;
		transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
	}

	.center-top-icon-btn:hover,
	.center-top-avatar-btn:hover {
		border-color: rgba(34, 211, 238, 0.26);
		background: rgba(34, 211, 238, 0.08);
		color: #f8fafc;
		transform: translateY(-1px);
	}

	.center-top-icon-btn svg,
	.center-top-avatar-btn svg {
		width: 16px;
		height: 16px;
	}

	.center-top-avatar-btn.has-image {
		padding: 0;
		overflow: hidden;
		background: transparent;
	}

	.center-top-avatar-btn.has-image svg {
		display: none;
	}

	.center-top-avatar-btn img {
		width: 100%;
		height: 100%;
		display: block;
		object-fit: cover;
		border-radius: inherit;
	}

	.center-top-indicator {
		position: absolute;
		top: 7px;
		right: 7px;
		width: 7px;
		height: 7px;
		border-radius: 999px;
		background: #22d3ee;
		box-shadow: 0 0 8px rgba(34, 211, 238, 0.52);
	}

	.center-top-plan,
	.center-top-balance {
		height: 36px;
		padding: 0 0.95rem;
		border-radius: 999px;
		display: inline-flex;
		align-items: center;
		gap: 0.42rem;
		border: 1px solid rgba(255, 255, 255, 0.08);
		background: rgba(255, 255, 255, 0.03);
		color: #e2e8f0;
		font-size: 0.78rem;
		font-weight: 700;
		line-height: 1;
		white-space: nowrap;
	}

	.center-top-plan {
		color: #67e8f9;
	}

	.center-top-plan-dot,
	.center-top-balance-dot {
		width: 8px;
		height: 8px;
		border-radius: 999px;
		flex-shrink: 0;
	}

	.center-top-plan-dot {
		background: #22d3ee;
		box-shadow: 0 0 10px rgba(34, 211, 238, 0.48);
	}

	.center-top-balance-dot {
		background: #38bdf8;
		box-shadow: 0 0 10px rgba(56, 189, 248, 0.44);
	}

	.center-top-balance-symbol {
		color: #67e8f9;
	}

	.center-tooltip-host::before,
	.center-tooltip-host::after {
		position: absolute;
		left: 50%;
		opacity: 0;
		pointer-events: none;
		visibility: hidden;
		transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
		z-index: 120;
	}

	.center-tooltip-host::before {
		content: '';
		top: calc(100% + 4px);
		border-left: 6px solid transparent;
		border-right: 6px solid transparent;
		border-bottom: 6px solid rgba(15, 23, 42, 0.96);
		transform: translateX(-50%) translateY(-4px);
	}

	.center-tooltip-host::after {
		content: attr(data-tooltip);
		top: calc(100% + 10px);
		padding: 0.48rem 0.78rem;
		border-radius: 0.75rem;
		border: 1px solid rgba(148, 163, 184, 0.16);
		background: rgba(15, 23, 42, 0.96);
		color: #e2e8f0;
		font-size: 0.72rem;
		font-weight: 600;
		line-height: 1;
		white-space: nowrap;
		word-break: keep-all;
		max-width: calc(100vw - 32px);
		text-align: center;
		box-sizing: border-box;
		overflow: hidden;
		text-overflow: ellipsis;
		box-shadow: 0 16px 28px rgba(2, 6, 23, 0.36);
		transform: translateX(-50%) translateY(-4px);
	}

	.center-tooltip-host:hover::before,
	.center-tooltip-host:hover::after {
		opacity: 1;
		visibility: visible;
		transform: translateX(-50%) translateY(0);
	}

	.center-main-content {
		--center-bottom-safe-space: 9rem;
		flex: 1;
		min-height: 0;
		overflow-y: auto;
		padding: 20px 20px var(--center-bottom-safe-space);
		padding-bottom: calc(var(--center-bottom-safe-space) + env(safe-area-inset-bottom, 0px));
		position: relative;
		scroll-padding-bottom: var(--center-bottom-safe-space);
		scroll-padding-bottom: calc(var(--center-bottom-safe-space) + env(safe-area-inset-bottom, 0px));
	}

	.center-main-content:has(> .isp-buy-page) {
		overflow-y: auto;
		overflow-x: hidden;
	}

	.center-main-content:has(> .profile-page) {
		overflow-x: hidden;
	}

	.center-main-content:has(> .isp-buy-page) .isp-order-panel {
		max-height: none;
	}

	.center-main-content > *:not(.drawer-overlay):not(.drawer-panel):not(.isp-pay-modal) {
		width: 100% !important;
		max-width: none !important;
		margin-left: 0 !important;
		margin-right: 0 !important;
	}

	.center-main-content::-webkit-scrollbar {
		width: 4px;
	}

	.center-main-content::-webkit-scrollbar-thumb {
		background: rgba(255, 255, 255, 0.08);
		border-radius: 999px;
	}

	.center-page-placeholder {
		min-height: calc(100vh - 180px);
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.center-page-placeholder-card {
		width: min(100%, 720px);
		padding: 2.25rem 1.8rem;
		text-align: center;
		border-radius: 1.25rem;
		background: rgba(255, 255, 255, 0.02);
		border: 1px solid rgba(255, 255, 255, 0.08);
		backdrop-filter: blur(14px);
		-webkit-backdrop-filter: blur(14px);
	}

	.center-page-placeholder-icon {
		width: 64px;
		height: 64px;
		margin: 0 auto 1.2rem;
		color: rgba(34, 211, 238, 0.78);
	}

	.center-page-placeholder-title {
		margin: 0;
		font-size: 1.8rem;
		font-weight: 800;
		line-height: 1.2;
		color: #ffffff;
	}

	.center-page-placeholder-desc {
		margin: 0.8rem auto 0;
		max-width: 420px;
		font-size: 0.95rem;
		line-height: 1.75;
		color: #94a3b8;
	}

	@media (max-width: 1200px) {
		.center-sidebar {
			width: 264px;
			min-width: 264px;
		}
	}

	@media (max-width: 900px) {
		.center-main-topbar {
			padding: 0.72rem 0.8rem;
			flex-wrap: wrap;
		}

		.center-main-content {
			padding: 20px 20px var(--center-bottom-safe-space);
			padding-bottom: calc(var(--center-bottom-safe-space) + env(safe-area-inset-bottom, 0px));
		}

		.center-main-toolbar {
			width: 100%;
			justify-content: space-between;
			flex-wrap: wrap;
		}

		.center-main-current-page {
			order: -1;
		}

		.center-top-plan,
		.center-top-balance {
			padding: 0 0.8rem;
		}

		.center-sidebar-logout {
			margin-left: 0;
		}
	}
