        /* ===== 全局重置 ===== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
            background: #f5f7fa;
            color: #1e293b;
            line-height: 1.6;
        }
        a {
            text-decoration: none;
            color: inherit;
        }
        ul {
            list-style: none;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* ===== 头部 ===== */
        .site-header {
            background: linear-gradient(145deg, #0f172a, #1e293b);
            padding: 28px 0 20px;
            border-bottom: 4px solid #eab308;
        }
        .header-inner {
            display: flex;
            flex-wrap: wrap;
            align-items: baseline;
            justify-content: space-between;
        }
        .site-title {
            font-size: 2.4rem;
            font-weight: 700;
            color: #facc15;
            letter-spacing: 2px;
            text-shadow: 0 2px 6px rgba(0,0,0,0.5);
        }
        .site-title h1 {
            display: inline;
            font-size: inherit;
            font-weight: inherit;
            color: inherit;
        }
        .site-title span {
            color: #fbbf24;
            font-weight: 300;
        }
        .header-meta {
            color: #94a3b8;
            font-size: 0.9rem;
            background: rgba(255,255,255,0.06);
            padding: 6px 16px;
            border-radius: 30px;
            backdrop-filter: blur(2px);
        }
        .header-meta strong {
            color: #fde047;
        }

        /* ===== 导航 ===== */
        .main-nav {
            background: #1e293b;
            box-shadow: 0 4px 10px rgba(0,0,0,0.08);
            position: sticky;
            top: 0;
            z-index: 99;
        }
        .nav-list {
            display: flex;
            flex-wrap: wrap;
            gap: 4px 0;
        }
        .nav-list li {
            margin-right: 2px;
        }
        .nav-list a {
            display: inline-block;
            padding: 12px 22px;
            color: #e2e8f0;
            font-weight: 500;
            font-size: 1rem;
            border-bottom: 3px solid transparent;
            transition: 0.25s;
        }
        .nav-list a:hover,
        .nav-list .active {
            color: #facc15;
            border-bottom-color: #facc15;
            background: rgba(250,204,21,0.04);
        }
        .nav-right {
            margin-left: auto;
            color: #94a3b8;
            font-size: 0.9rem;
            padding: 12px 0;
        }
        .nav-right span {
            background: #334155;
            padding: 2px 12px;
            border-radius: 20px;
            color: #facc15;
        }

        /* ===== 主区域 ===== */
        .main-content {
            padding: 40px 0;
        }

        /* ===== 开服表 ===== */
        .section-title {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 24px;
            border-left: 6px solid #eab308;
            padding-left: 18px;
            color: #0f172a;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .section-title small {
            font-size: 1rem;
            font-weight: 400;
            color: #64748b;
        }
        .server-table {
            background: #ffffff;
            border-radius: 24px;
            box-shadow: 0 12px 30px rgba(0,0,0,0.06);
            overflow: hidden;
            margin-bottom: 48px;
        }
        .table-header {
            display: grid;
            grid-template-columns: 1fr 1.2fr 0.9fr 0.9fr 0.7fr;
            background: #1e293b;
            color: #f1f5f9;
            font-weight: 600;
            padding: 14px 20px;
            font-size: 0.95rem;
            letter-spacing: 0.5px;
        }
        .table-row {
            display: grid;
            grid-template-columns: 1fr 1.2fr 0.9fr 0.9fr 0.7fr;
            padding: 14px 20px;
            border-bottom: 1px solid #e9edf2;
            align-items: center;
            transition: background 0.2s;
        }
        .table-row:last-child {
            border-bottom: none;
        }
        .table-row:hover {
            background: #f8fafc;
        }
        .game-name {
            font-weight: 600;
            color: #0f172a;
        }
        .game-name i {
            color: #eab308;
            margin-right: 6px;
        }
        .game-info {
            color: #334155;
        }
        .game-date {
            color: #475569;
        }
        .game-status {
            display: inline-block;
            background: #dcfce7;
            color: #166534;
            padding: 2px 12px;
            border-radius: 30px;
            font-size: 0.8rem;
            font-weight: 500;
        }
        .game-status.hot {
            background: #fee2e2;
            color: #991b1b;
        }
        .game-btn {
            background: #eab308;
            color: #0f172a;
            font-weight: 600;
            padding: 6px 12px;
            border-radius: 40px;
            font-size: 0.8rem;
            text-align: center;
            display: inline-block;
            transition: 0.2s;
            width: fit-content;
        }
        .game-btn:hover {
            background: #facc15;
            transform: scale(1.02);
        }

        /* ===== 攻略卡片 ===== */
        .guide-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
            gap: 24px;
            margin-bottom: 48px;
        }
        .guide-card {
            background: #ffffff;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 6px 18px rgba(0,0,0,0.04);
            transition: all 0.25s;
            border: 1px solid #f1f5f9;
        }
        .guide-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 30px -10px rgba(0,0,0,0.12);
            border-color: #eab308;
        }
        .guide-thumb {
            background: #e2e8f0;
            height: 150px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.9rem;
            color: #475569;
            overflow: hidden;
        }
        .guide-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        .guide-body {
            padding: 16px 14px 18px;
        }
        .guide-body h3 {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 8px;
            color: #0f172a;
            line-height: 1.4;
        }
        .guide-meta {
            display: flex;
            justify-content: space-between;
            font-size: 0.8rem;
            color: #64748b;
            border-top: 1px solid #f1f5f9;
            padding-top: 10px;
            margin-top: 4px;
        }
        .guide-meta span {
            display: flex;
            align-items: center;
            gap: 4px;
        }
        .guide-meta i {
            font-style: normal;
        }

        /* ===== 友情链接 ===== */
        .friend-links {
            background: #ffffff;
            border-radius: 24px;
            padding: 24px 28px;
            box-shadow: 0 6px 16px rgba(0,0,0,0.03);
            margin-top: 12px;
            margin-bottom: 30px;
        }
        .friend-links h3 {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 18px;
            color: #0f172a;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .friend-links h3:before {
            content: "🔗";
            font-size: 1.2rem;
        }
        .link-list {
            display: flex;
            flex-wrap: wrap;
            gap: 10px 20px;
        }
        .link-list a {
            color: #1e293b;
            padding: 4px 0;
            border-bottom: 1px solid transparent;
            transition: 0.15s;
            font-size: 0.95rem;
        }
        .link-list a:hover {
            color: #eab308;
            border-bottom-color: #eab308;
        }

        /* ===== 底部 ===== */
        .site-footer {
            background: #0f172a;
            color: #cbd5e1;
            padding: 28px 0 24px;
            text-align: center;
            border-top: 3px solid #eab308;
        }
        .footer-inner p {
            margin: 6px 0;
            font-size: 0.9rem;
        }
        .footer-inner .footer-domain {
            color: #facc15;
            font-weight: 600;
        }
        .footer-inner small {
            opacity: 0.7;
        }

        /* ===== 响应式 ===== */
        @media (max-width: 768px) {
            .site-title {
                font-size: 1.8rem;
            }
            .header-inner {
                flex-direction: column;
                gap: 6px;
            }
            .nav-list a {
                padding: 10px 14px;
                font-size: 0.9rem;
            }
            .table-header, .table-row {
                grid-template-columns: 1fr 1fr 0.8fr 0.8fr 0.6fr;
                font-size: 0.8rem;
                padding: 10px 12px;
            }
            .guide-grid {
                grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
                gap: 16px;
            }
            .section-title {
                font-size: 1.4rem;
            }
        }
        @media (max-width: 480px) {
            .table-header, .table-row {
                grid-template-columns: 1fr 1fr 0.7fr 0.7fr 0.5fr;
                font-size: 0.7rem;
                padding: 8px 6px;
                gap: 2px;
            }
            .game-btn {
                font-size: 0.65rem;
                padding: 4px 8px;
            }
        }