        :root {
            --primary-color: #8B0000;
            --secondary-color: #FFD700;
            --accent-color: #FFFFFF;
            --highlight-color: #FFD700;
            --background-color: rgba(0, 0, 0, 0.7);
            --border-color: #333;
            --text-color: #fff;
            --shadow-color: rgba(0, 0, 0, 0.8);
            --transition-time: 0.3s;
        }
        
        * {
            box-sizing: border-box;
        }
        
        body {
            background: #000 url('images/bj.jpg') center/cover fixed;
            color: var(--text-color);
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 20px;
            min-height: 100vh;
            line-height: 1.6;
        }
        
        .container {
            background-color: var(--background-color);
            padding: 20px;
            border-radius: 10px;
            width: 1200px;
            margin: 0 auto;
            box-shadow: 0 0 20px var(--shadow-color);
        }
        
        .logo {
            text-align: center;
            margin-bottom: 20px;
        }
        
        .logo img {
            max-width: 100%;
            height: auto;
            filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
        }
        
        /* 导航菜单样式 */
        .nav-menu {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 20px;
            padding: 8px 0;
            border-bottom: 1px solid rgba(255, 215, 0, 0.2);
        }
        
        .nav-menu a {
            color: #FFA500;
            text-decoration: none;
            font-size: 14px;
            padding: 6px 15px;
            border-radius: 4px;
            transition: all var(--transition-time) ease;
            background: rgba(139, 0, 0, 0.3);
            border: 1px solid rgba(255, 215, 0, 0.3);
        }
        
        .nav-menu a:hover {
            background: rgba(139, 0, 0, 0.5);
            color: var(--secondary-color);
            transform: translateY(-2px);
            box-shadow: 0 3px 8px rgba(255, 215, 0, 0.2);
        }
        
        .nav-menu a.active {
            background: linear-gradient(45deg, #8B0000, #FF8C00);
            color: white;
            font-weight: bold;
        }
        
        /* 按钮区域 */
        .buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 20px;
        }
        
        .buttons a {
            display: inline-block;
            transition: transform var(--transition-time) ease;
            border-radius: 8px;
            overflow: hidden;
        }
        
        .buttons a:hover {
            transform: scale(1.05);
        }
        
        .buttons img {
            display: block;
        }
        
        .announcement {
            background: linear-gradient(90deg, var(--primary-color) 0%, rgba(178,34,34,0.7) 100%);
            padding: 12px;
            border: 1px solid var(--primary-color);
            border-radius: 5px;
            margin-bottom: 20px;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }
        
        .announcement::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s;
        }
        
        .announcement:hover::before {
            left: 100%;
        }
        
        .marquee {
            overflow: hidden;
            white-space: nowrap;
        }
        
        .marquee span {
            display: inline-block;
            padding-left: 100%;
            animation: marquee 50s linear infinite;
            color: var(--secondary-color);
            font-weight: bold;
            text-shadow: 0 0 5px rgba(0,0,0,0.5);
        }
        
        .announcement.paused .marquee span {
            animation-play-state: paused;
        }
        
        @keyframes marquee {
            0%   { transform: translate(0, 0); }
            100% { transform: translate(-100%, 0); }
        }
        
        .server-list {
            margin-bottom: 20px;
        }
        
        .server-item {
            background-color: rgba(0, 0, 0, 0.8);
            border: 1px solid var(--border-color);
            border-radius: 5px;
            padding: 15px;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            transition: all var(--transition-time) ease;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }
        
        /* 置顶服务器样式 */
        .server-item.sticky-item {
            background: linear-gradient(135deg, rgba(200, 0, 0, 0.8) 0%, rgba(255, 0, 0, 1) 100%);
            border-left: 4px solid #FF4500;
            border-top: 1px solid rgba(255, 69, 0, 0.5);
            border-bottom: 1px solid rgba(255, 69, 0, 0.5);
            box-shadow: 0 0 10px rgba(255, 69, 0, 0.2);
        }
        
        .server-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
            opacity: 0;
            transition: opacity var(--transition-time);
        }
        
        .server-item:hover {
            background-color: rgba(50, 50, 50, 0.8);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
        }
        
        .server-item.sticky-item:hover {
            background: linear-gradient(135deg, rgba(139, 0, 0, 0.3) 0%, rgba(178, 34, 34, 0.4) 100%);
            box-shadow: 0 5px 15px rgba(255, 69, 0, 0.4);
            transform: translateY(-3px);
        }
        
        .server-item:hover::before {
            opacity: 1;
        }
        
        .server-name {
            width: 150px;
            color: var(--secondary-color);
            display: flex;
            align-items: center;
            gap: 5px;
        }
        
        /* 置顶图标样式 */
        .sticky-icon {
            color: #FFFFFF;
            font-weight: bold;
            font-size: 12px;
            background: linear-gradient(45deg, #FF4500, #FF8C00);
            padding: 2px 8px;
            border-radius: 3px;
            border: 1px solid rgba(255, 255, 255, 0.3);
            text-shadow: 0 1px 1px rgba(0,0,0,0.5);
            box-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }
        
        .server-ip {
            width: 150px;
            color: var(--accent-color);
			text-align: center; /* 文本水平居中 */
        }
        
        .server-reward {
            flex: 1;
            min-width: 300px;
            color: var(--highlight-color);
        }
        
        .server-link {
            margin: 0 5px;
        }
        
        /* 按钮样式 */
        .server-link a {
            display: inline-block;
            background: linear-gradient(to bottom, var(--primary-color), #660000);
            color: white;
            padding: 6px 12px;
            text-decoration: none;
            border-radius: 3px;
            transition: all var(--transition-time);
            font-weight: normal;
            border: 1px solid rgba(255,255,255,0.1);
            font-size: 13px;
        }
        
        .server-link a:hover {
            background: linear-gradient(to bottom, #FF0000, var(--primary-color));
            transform: scale(1.05);
            box-shadow: 0 0 8px rgba(255, 0, 0, 0.5);
        }
        
        .qq-group {
            text-align: center;
            margin: 20px 0;
        }
        
        .qq-group img {
            transition: transform var(--transition-time);
        }
        
        .qq-group:hover img {
            transform: scale(1.05);
        }
        
        .footer {
            text-align: center;
            margin-top: 30px;
            color: #AAA;
            font-size: 12px;
            border-top: 1px solid var(--border-color);
            padding-top: 15px;
        }
        
        .error-message {
            text-align: center;
            padding: 20px;
            color: #FF6347;
            background: rgba(139, 0, 0, 0.2);
            border-radius: 5px;
        }