        /* --- 全局重置 --- */
        * {
        	box-sizing: border-box;
        	margin: 0;
        	padding: 0;
        	-webkit-tap-highlight-color: transparent;
        }

        body {
        	background-color: #193175;
        	font-family: Arial, sans-serif;
        	color: #fff;
        	display: flex;
        	justify-content: center;
        	min-height: 100vh;
        }

        /* 模拟手机容器 */
        .app-container {
        	width: 100%;
        	max-width: 480px;
        	background-color: #193175;
        	position: relative;
        	padding-bottom: 30px;
        	box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
        	overflow-x: hidden;
        }

        /* --- 顶部 Header --- */
        .header {
        	display: flex;
        	justify-content: space-between;
        	align-items: center;
        	padding: 10px 15px;
        	background-color: #1e3a8a;
        }

        /* Logo 图片样式 */
        .logo-img {
        	height: 40px;
        	/* 根据实际logo调整高度 */
        	width: auto;
        	object-fit: contain;
        }

        .cs-icon {
        	height: 24px;
        	color: #ffcc00;
        	/* 金色 */
        	cursor: pointer;
        }

        /* --- 顶部轮播图 (Banner) --- */
        .carousel {
        	width: calc(100%);
        	margin: 0;
        	/* 居中显示 */

        	/* 尺寸控制：根据您提供的 686*240 像素锁定比例 */
        	/* 这样无论屏幕多宽，高度都会自动适应，图片不拉伸 */
        	/* aspect-ratio: 686 / 240; */
        	overflow: hidden;
        	position: relative;
        	background-color: #10286b;
        	/* 图片未加载时的背景色 */

        	/* 交互 */
        	touch-action: pan-y;
        	transform: translateZ(0);
        	/* 开启硬件加速，圆角裁剪更顺滑 */
        }

        .carousel-inner {
        	display: flex;
        	transition: transform 0.4s ease-out;
        	width: 100%;
        	height: 100%;
        }

        .carousel-item {
        	width: 100%;
        	height: 100%;
        	flex-shrink: 0;
        }

        .carousel-item img {
        	width: 100%;
        	height: 100%;
        	object-fit: cover;
        	/* 填满容器 */
        	display: block;
        	/* 消除底部微小间隙 */
        }

        /* --- 跑马灯 --- */
        .marquee-container {
        	background: #10286b;
        	padding: 8px 10px;
        	display: flex;
        	align-items: center;
        	font-size: 12px;
        	margin-bottom: 15px;
        }

        .marquee-icon {
        	color: #ffcc00;
        	margin-right: 8px;
        }

        marquee {
        	color: #f0f0f0;
        }

        /* --- 标题栏 --- */
        .section-title {
        	display: flex;
        	align-items: center;
        	color: #f8e13e;
        	font-size: 16px;
        	font-weight: bold;
        	padding: 0 15px;
        	margin-bottom: 10px;
        	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
        }

        .section-title i {
        	margin-right: 8px;
        	font-size: 20px;
        }

        .section-title .arrows {
        	margin-left: auto;
        	font-size: 12px;
        	color: #ffcc00;
        	opacity: 0.7;
        }

        /* --- 域名列表 --- */
        .link-grid {
        	display: grid;
        	grid-template-columns: 1fr 1fr;
        	gap: 10px;
        	padding: 0 15px;
        	margin-bottom: 20px;
        }

        .link-item {
        	/* 按钮背景调亮 */
        	border: 1px solid #7294f8;
        	background-image: linear-gradient(0deg,
        			#23439f 0%,
        			#3159ca 100%),
        		linear-gradient(#f8e13e,
        			#f8e13e);
        	border-radius: 30px;
        	padding: 6px 6px 6px 15px;
        	display: flex;
        	align-items: center;
        	justify-content: space-between;
        	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        }

        .link-text-group {
        	display: flex;
        	align-items: center;
        	font-size: 13px;
        	color: #fff;
        	font-weight: 500;
        }

        .link-text-group i {
        	color: #ffcc00;
        	margin-right: 6px;
        }

        .btn-visit {
        	background-image: linear-gradient(0deg,
        			#ffd119 0%,
        			#ffeba5 100%),
        		linear-gradient(#f8e13e,
        			#f8e13e);
        	color: #0936b5;
        	border: none;
        	padding: 6px 14px;
        	border-radius: 20px;
        	font-size: 12px;
        	font-weight: bold;
        	text-decoration: none;
        	display: flex;
        	align-items: center;
        }

        .btn-visit i {
        	margin-right: 3px;
        }

        .center-text {
        	text-align: center;
        	font-size: 14px;
        	color: #f8e13e;
        	margin: 15px 0;
        	font-weight: bold;
        }

        /* --- 社交媒体 --- */
        .social-grid {
        	display: grid;
        	grid-template-columns: repeat(4, 1fr);
        	gap: 10px;
        	padding: 0 15px;
        	margin-bottom: 25px;
        }

        .social-box {
        	/* 保持原有的背景设置 */
        	background-image: linear-gradient(0deg,
        			#23439f 0%,
        			#3159ca 100%),
        		linear-gradient(#0936b5,
        			#0936b5);
        	border: 1px solid #7294f8;
        	border-radius: 10px;
        	padding: 12px 5px;
        	text-align: center;
        	display: flex;
        	flex-direction: column;
        	align-items: center;
        	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        	text-decoration: none !important;
        	color: #fff !important;
        	cursor: pointer;
        }

        .social-box * {
        	text-decoration: none !important;
        }

        .social-box:active {
        	opacity: 0.8;
        	transform: scale(0.98);
        }

        .social-icon {
        	width: 40px;
        	height: 40px;
        	border-radius: 50%;
        	display: flex;
        	align-items: center;
        	justify-content: center;
        	font-size: 20px;
        	color: #fff;
        	margin-bottom: 6px;
        }

        .icon-fb {
        	background: #1877f2;
        }

        .icon-tg {
        	background: #229ed9;
        }

        .icon-wa {
        	background: #25d366;
        }

        .icon-cs {
        	background: #ff5252;
        }

        .social-title {
        	font-size: 11px;
        	color: #fff;
        	margin-bottom: 2px;
        	font-weight: bold;
        }

        .social-subtitle {
        	font-size: 10px;
        	color: #ddd;
        	margin-bottom: 8px;
        }

        .btn-mini {
        	background-image: linear-gradient(0deg,
        			#ffd119 0%,
        			#ffeba5 100%),
        		linear-gradient(#0936b5,
        			#0936b5);
        	color: #0936b5;
        	border: none;
        	padding: 4px 15px;
        	border-radius: 4px;
        	font-size: 11px;
        	font-weight: bold;
        	cursor: pointer;
        }

        .footer-notice {
        	padding: 0 20px 20px 20px;
        	font-size: 12px;
        	color: #fff;
        	text-align: center;
        	line-height: 1.4;
        	opacity: 0.9;
        }

        .latest-winners {
        	background-color: #10286b;
        	margin: 0 15px;
        	border-radius: 12px;
        	padding: 12px;
        }

        .winner-title {
        	text-align: center;
        	color: #fff;
        	margin-bottom: 12px;
        	font-size: 16px;
        	font-weight: bold;
        	text-shadow: 0 2px 2px rgba(0, 0, 0, 0.5);
        }

        .winner-title i {
        	color: #ffcc00;
        	margin: 0 5px;
        }

        .winner-scroll-container {
        	display: flex;
        	overflow-x: auto;
        	gap: 12px;
        	padding-bottom: 5px;
        	scroll-behavior: smooth;
        	/* 平滑滚动 */

        	scrollbar-width: none;
        	-ms-overflow-style: none;
        }

        .winner-scroll-container::-webkit-scrollbar {
        	display: none;
        }

        .winner-card {
        	background: #2648a9;
        	/* 卡片背景调亮 */
        	border-radius: 8px;
        	overflow: hidden;
        	text-align: center;
        	padding-bottom: 8px;
        	flex-shrink: 0;
        	width: 105px;
        	/* 卡片宽度 */
        	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
        }

        .winner-img {
        	width: 100%;
        	height: 100px;
        	background-color: #102359;
        	object-fit: cover;
        }

        .winner-info {
        	padding: 5px;
        }

        .winner-name {
        	font-size: 11px;
        	color: #fff;
        	font-weight: bold;
        }

        /* 截图中的灰色小字 */
        .winner-game-name {
        	font-size: 9px;
        	color: #b0b0b0;
        	/* 灰色 */
        	margin: 2px 0 4px 0;
        	white-space: nowrap;
        	overflow: hidden;
        	text-overflow: ellipsis;
        }

        .winner-amount {
        	font-size: 12px;
        	color: #ffcc00;
        	font-weight: bold;
        }

        .service-img {
        	height: 100%;
        }

        .notice-img {
        	height: 12px;
        }

        .section-img {
        	height: 20px;
        	width: 20px;
        	margin-bottom: -2px;
        }

        .link-img {
        	height: 13px;
        	width: 13px;
        }

        .winners-img {
        	height: 16px;
        	width: 16px;
        }

        .social-icon img {
        	height: 100%;
        	width: 100%;
        }