        /* --- 全局重置 --- */
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            -webkit-tap-highlight-color: transparent;
        }

        body {
            background-color: #2b0505; /* 背景稍微调亮一点，不再是纯黑 */
            font-family: Arial, sans-serif;
            color: #fff;
            display: flex;
            justify-content: center;
            min-height: 100vh;
        }

        /* 模拟手机容器 */
        .app-container {
            width: 100%;
            max-width: 480px;
            /* 背景渐变调亮，更接近鲜红色 */
            background: linear-gradient(180deg, #8a0000 0%, #4a0000 100%);
            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: rgba(0,0,0,0.1); /*以此让背景色透出来*/
        }

        /* Logo 图片样式 */
        .logo-img {
            height: 40px; /* 根据实际logo调整高度 */
            width: auto;
            object-fit: contain;
        }

        .cs-icon {
            font-size: 24px;
            color: #ffcc00; /* 金色 */
            cursor: pointer;
        }

/* --- 顶部轮播图 (Banner) --- */
        .carousel {
            /* 布局限制 */
            width: calc(100% - 30px); /* 左右各留 15px 边距，与下方对齐 */
            margin: 10px auto;        /* 居中显示 */
            
            /* 尺寸控制：根据您提供的 686*240 像素锁定比例 */
            /* 这样无论屏幕多宽，高度都会自动适应，图片不拉伸 */
            aspect-ratio: 686 / 240; 
            
            /* 美化 */
            border-radius: 12px;       /* 圆角 */
            overflow: hidden;          /* 裁剪超出圆角的内容 */
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4); /* 添加立体阴影 */
            position: relative;
            background-color: #330000; /* 图片未加载时的背景色 */
            
            /* 交互 */
            touch-action: pan-y;
            transform: translateZ(0);  /* 开启硬件加速，圆角裁剪更顺滑 */
        }

        .carousel-inner {
            display: flex;
            transition: transform 0.4s ease-out; 
            width: 100%; 
            height: 100%;
        }

        .carousel-item {
            min-width: 100%;
            height: 100%;
            flex-shrink: 0;
        }

        .carousel-item img {
            width: 100%;
            height: 100%;
            object-fit: cover; /* 填满容器 */
            display: block;    /* 消除底部微小间隙 */
        }

        /* --- 跑马灯 --- */
        .marquee-container {
            background: rgba(0,0,0,0.25);
            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: #ffcc00;
            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 {
            /* 按钮背景调亮 */
            background: #6b1010; 
            border: 1px solid #8c2020;
            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: linear-gradient(180deg, #ffeeb0 0%, #ffcc00 100%);
            color: #5e0000;
            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: #ffcc00;
            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: linear-gradient(180deg, #7a1515 0%, #540a0a 100%);
            border: 1px solid #912323;
            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: linear-gradient(180deg, #ffeeb0 0%, #ffcc00 100%);
            color: #5e0000;
            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: #ffcc00;
            text-align: center;
            line-height: 1.4;
            opacity: 0.9;
        }
        .latest-winners {
            background: rgba(0,0,0,0.15);
            margin: 0 15px;
            border-radius: 12px;
            padding: 12px;
            border: 1px solid rgba(255,204,0,0.1);
        }
        
        .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: #591010; /* 卡片背景调亮 */
            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: #330000;
            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; 
        }
