        /* ===== 设计变量（白色主题） ===== */
        :root {
            --color-panel-bg: #ffffff;
            --color-card-bg: #f7f8fa;
            --color-text-primary: #1a1a2e;
            --color-text-secondary: #4a4a5e;
            --color-text-heading: #0a0a1a;
            --color-accent: #c42e4a;
            --color-accent-soft: #e94560;
            --color-gold: #b07b2b;
            --color-border-light: rgba(0, 0, 0, 0.08);
            --color-border-accent: rgba(196, 46, 74, 0.3);
            --color-table-header: rgba(196, 46, 74, 0.06);
            --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.06);
            --shadow-md: 0 6px 24px rgba(0, 0, 0, 0.1);
            --shadow-hover: 0 10px 32px rgba(0, 0, 0, 0.13);
            --radius-xl: 18px;
            --radius-lg: 14px;
            --radius-md: 10px;
            --radius-sm: 6px;
            --transition-soft: 0.25s ease;
        }

        /* ========== 背景直接设置在body上，确保页头页脚全覆盖 ========== */
        .page-background {
            background-image: url('../static/tp/xuanchuantu/beijing.png');
            background-repeat: repeat-y;
            background-size: 100% auto;
            margin: 0;
            padding: 0;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        /* ========== 原容器改为透明，仅作布局 ========== */
        .container {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: flex-start;
            padding: 0;
            margin: 0;
            box-sizing: border-box;
            background: transparent;
        }

        /* ========== 主内容区 ========== */
        .main-wrapper {
            width: 100%;
            max-width: 1400px;
            display: flex;
            flex-direction: column;
            gap: 22px;
            padding: 20px 16px;
            box-sizing: border-box;
        }

        /* ========== 通用面板 ========== */
        .panel {
            background: var(--color-panel-bg);
            border: 1px solid var(--color-border-light);
            border-radius: var(--radius-xl);
            padding: 28px 32px;
            box-shadow: var(--shadow-sm);
            transition: box-shadow 0.3s ease, border-color 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        .panel:hover {
            box-shadow: var(--shadow-hover);
            border-color: var(--color-border-accent);
        }
        .panel .panel-title {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--color-text-heading);
            margin: 0 0 16px;
            padding-bottom: 10px;
            border-bottom: 1px solid rgba(0, 0, 0, 0.08);
            display: flex;
            align-items: center;
            gap: 10px;
            letter-spacing: 1px;
            font-family: "Microsoft YaHei", "PingFang SC", "Helvetica Neue", sans-serif;
        }
        .panel .panel-title .title-icon {
            font-size: 1.35rem;
            display: inline-block;
        }

        /* ========== 标题横幅盒子 ========== */
        .header-panel {
            text-align: center;
            padding: 32px 28px 20px;
            background: #ffffff;
            border: 1px solid rgba(0, 0, 0, 0.08);
            border-radius: var(--radius-xl);
            box-shadow: var(--shadow-sm);
            position: relative;
            overflow: hidden;
            transition: box-shadow 0.3s ease, border-color 0.3s ease;
        }
        .header-panel:hover {
            box-shadow: var(--shadow-hover);
            border-color: var(--color-border-accent);
        }
        .header-panel .icon-row {
            font-size: 44px;
            letter-spacing: 10px;
            margin-bottom: 8px;
            filter: drop-shadow(0 2px 4px rgba(0,0,0,0.08));
        }
        .header-panel .main-title {
            font-size: clamp(1.8rem, 4.5vw, 2.4rem);
            font-weight: 700;
            color: #0a0a1a;
            letter-spacing: 3px;
            margin: 0 0 6px;
            font-family: "Microsoft YaHei", "PingFang SC", "Helvetica Neue", sans-serif;
        }
        .header-panel .sub-title {
            font-size: 0.95rem;
            color: #4a4a5e;
            letter-spacing: 4px;
            margin: 0;
            font-weight: 400;
        }
        .header-panel .divider-line {
            width: 160px;
            height: 3px;
            background: linear-gradient(90deg, transparent, var(--color-accent), var(--color-gold), var(--color-accent), transparent);
            margin: 14px auto 0;
            border-radius: 2px;
        }

        /* ========== 简介板块 ========== */
        .intro-layout {
            display: flex;
            gap: 30px;
            align-items: flex-start;
            flex-wrap: wrap;
        }
        .intro-avatar-area {
            flex: 0 0 150px;
            text-align: center;
            flex-shrink: 0;
        }
        .intro-avatar {
            width: 130px;
            height: 130px;
            border-radius: 50%;
            border: 3px solid var(--color-accent);
            box-shadow: 0 6px 20px rgba(196, 46, 74, 0.15);
            object-fit: cover;
            display: block;
            margin: 0 auto;
            background: #f0f0f5;
        }
        .intro-avatar-area .player-tag {
            display: inline-block;
            margin-top: 10px;
            background: var(--color-accent);
            color: #fff;
            font-size: 0.78rem;
            padding: 4px 14px;
            border-radius: 20px;
            letter-spacing: 2px;
            font-weight: 600;
        }
        .intro-text-area {
            flex: 1;
            min-width: 280px;
        }
        .intro-text-area .player-name {
            font-size: 1.5rem;
            font-weight: 700;
            color: #0a0a1a;
            margin: 0 0 4px;
            letter-spacing: 1px;
        }
        .intro-text-area .player-name .verified-badge {
            display: inline-block;
            color: #b07b2b;
            font-size: 0.95rem;
            margin-left: 4px;
        }
        .intro-text-area .player-alias {
            font-size: 0.85rem;
            color: #5a5a72;
            margin: 0 0 12px;
            letter-spacing: 2px;
        }
        .intro-text-area .bio-text {
            color: #2e2e40;
            line-height: 1.85;
            font-size: 0.93rem;
            margin: 0;
        }
        .intro-text-area .bio-text .highlight {
            color: var(--color-accent);
            font-weight: 700;
        }

        /* ========== 荣誉表格 ========== */
        .table-wrapper {
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            border-radius: var(--radius-md);
            border: 1px solid rgba(0, 0, 0, 0.06);
        }
        .honor-table {
            width: 100%;
            border-collapse: collapse;
            min-width: 680px;
            font-size: 0.88rem;
        }
        .honor-table thead th {
            background: var(--color-table-header);
            color: #0a0a1a;
            font-weight: 700;
            padding: 14px 12px;
            text-align: center;
            letter-spacing: 1px;
            border-bottom: 2px solid var(--color-accent);
            font-size: 0.83rem;
            white-space: nowrap;
        }
        .honor-table tbody td {
            padding: 13px 12px;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            color: #2e2e40;
            vertical-align: middle;
            text-align: center;
            font-weight: bold;
            transition: background 0.25s;
        }
        .honor-table tbody tr:hover {
            background: rgba(196, 46, 74, 0.03);
        }
        .honor-table tbody tr:nth-child(even) {
            background: rgba(0, 0, 0, 0.015);
        }
        .honor-table tbody tr:nth-child(even):hover {
            background: rgba(196, 46, 74, 0.04);
        }
        .rank-badge {
            display: inline-block;
            padding: 3px 12px;
            border-radius: 14px;
            font-weight: 700;
            font-size: 0.76rem;
            letter-spacing: 1px;
        }
        .rank-gold { background: #fdf3d0; color: #6b4a1b; border: 1px solid #e6c880; }
        .rank-silver { background: #eef0f5; color: #3a3a4e; border: 1px solid #c0c0d0; }
        .rank-bronze { background: #f8ece0; color: #5e3a22; border: 1px solid #d6a87c; }
        .rank-4th { background: #e8f0fe; color: #2a4a6e; border: 1px solid #b0c8e0; }
        .rank-8 { background: rgba(176, 123, 43, 0.1); color: #7a5a2e; border: 1px solid rgba(176, 123, 43, 0.3); }
        .rank-16 { background: #f0f0f5; color: #505068; border: 1px solid #c0c0d0; }
        .rank-24 { background: #f5f5f5; color: #606060; border: 1px solid #d0d0d0; }
        .rank-32 { background: #fafafa; color: #707070; border: 1px solid #e0e0e0; }

        /* ========== 弹幕/梗板块 ========== */
        .danmaku-grid {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .danmaku-card {
            background: var(--color-card-bg);
            border: 1px solid rgba(0, 0, 0, 0.06);
            border-radius: var(--radius-md);
            padding: 16px 20px;
            transition: box-shadow 0.3s ease, border-color 0.3s ease;
            box-shadow: 0 2px 6px rgba(0,0,0,0.04);
            position: relative;
        }
        .danmaku-card:hover {
            border-color: var(--color-border-accent);
            box-shadow: 0 6px 20px rgba(0,0,0,0.1);
        }
        .danmaku-card .danmaku-phrase {
            font-weight: 700;
            color: #0a0a1a;
            font-size: 0.98rem;
            margin: 0 0 6px;
            letter-spacing: 0.8px;
        }
        .danmaku-card .danmaku-meaning {
            font-size: 0.92rem;
            color: #2a2a3c;
            line-height: 1.6;
            margin: 0;
        }
        .danmaku-card .danmaku-inline-link {
            color: var(--color-accent);
            font-weight: 600;
            text-decoration: none;
            border-bottom: 1px solid transparent;
            transition: border-color 0.2s ease, color 0.2s ease;
            margin-left: 4px;
            cursor: pointer;
        }
        .danmaku-card .danmaku-inline-link:hover {
            border-bottom-color: var(--color-accent);
            color: #a02030;
        }
        .danmaku-card .danmaku-tag {
            position: absolute;
            top: 10px;
            right: 14px;
            font-size: 0.7rem;
            color: #999;
            letter-spacing: 1px;
            background: rgba(0,0,0,0.03);
            padding: 2px 8px;
            border-radius: 10px;
        }

        /* ========== 板块A：经典战役 ========== */
        .battle-list {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .battle-item {
            display: flex;
            align-items: center;
            gap: 20px;
            background: var(--color-card-bg);
            border-radius: var(--radius-md);
            padding: 16px 20px;
            border: 1px solid rgba(0, 0, 0, 0.05);
            transition: box-shadow 0.3s ease, border-color 0.3s ease;
            flex-wrap: wrap;
        }
        .battle-item:hover {
            border-color: rgba(0, 0, 0, 0.12);
            box-shadow: 0 6px 18px rgba(0,0,0,0.08);
        }
        .battle-info {
            flex: 1;
            min-width: 200px;
        }
        .battle-info .battle-title {
            font-weight: 700;
            color: #1a1a2e;
            margin: 0 0 4px;
            font-size: 0.95rem;
        }
        .battle-info .battle-meta {
            font-size: 0.78rem;
            color: #606076;
            margin: 0;
        }
        .battle-badge {
            background: var(--color-accent);
            color: #fff;
            font-size: 0.7rem;
            padding: 5px 12px;
            border-radius: 16px;
            letter-spacing: 1px;
            font-weight: 600;
            white-space: nowrap;
            flex-shrink: 0;
        }
        .battle-video-link {
            color: var(--color-accent);
            font-weight: 600;
            text-decoration: none;
            border-bottom: 1px solid transparent;
            transition: border-color 0.2s ease, color 0.2s ease;
            font-size: 0.85rem;
            white-space: nowrap;
            flex-shrink: 0;
            cursor: pointer;
        }
        .battle-video-link:hover {
            border-bottom-color: var(--color-accent);
            color: #a02030;
        }

        /* ========== 纯文本板块 ========== */
        .article-content {
            color: #2a2a3c;
            line-height: 1.9;
            font-size: 0.92rem;
        }
        .article-content p { margin: 0 0 14px; }
        .article-content .article-highlight {
            font-weight: 700;
            color: var(--color-accent);
            background: rgba(196, 46, 74, 0.05);
            padding: 0 4px;
            border-radius: 3px;
        }
        .article-content blockquote {
            margin: 14px 0;
            padding: 12px 18px;
            border-left: 4px solid var(--color-accent);
            background: rgba(196, 46, 74, 0.03);
            border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
            font-weight: bold;
            color: #3e3e52;
        }
        .article-link {
            display: inline-block;
            margin-top: 4px;
            color: var(--color-accent);
            font-weight: 600;
            text-decoration: none;
            border-bottom: 1px solid transparent;
            transition: border-color 0.2s ease, color 0.2s ease;
            cursor: pointer;
        }
        .article-link:hover { border-bottom-color: var(--color-accent); color: #a02030; }

        /* ========== 来源声明盒子 ========== */
        .source-box {
            text-align: center;
            padding: 18px 24px;
            background: #ffffff;
            border: 1px solid rgba(0, 0, 0, 0.06);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-sm);
            font-size: 0.88rem;
            color: #5a5a72;
            letter-spacing: 1px;
            transition: box-shadow 0.3s ease;
        }
        .source-box:hover { box-shadow: var(--shadow-hover); }

        /* ========== 视频弹窗样式 ========== */
        .video-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.8);
            z-index: 1000;
            justify-content: center;
            align-items: center;
            flex-direction: column;
        }
        .video-overlay.active {
            display: flex;
        }
        .video-container {
            position: relative;
            width: 80%;
            max-width: 900px;
            background: #000;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0,0,0,0.5);
            transition: all 0.3s ease;
        }
        .video-container.widescreen {
            width: 92%;
            max-width: 1200px;
            height: 700px;
            border-radius: 12px;
        }
        .video-container iframe {
            width: 100%;
            height: 500px;
            border: none;
            display: block;
        }
        .video-container.widescreen iframe {
            height: 100%;
        }
        .video-controls {
            display: flex;
            justify-content: flex-end;
            padding: 10px;
            background: rgba(0,0,0,0.7);
            flex-wrap: wrap;
            gap: 8px;
        }
        .video-btn {
            background: var(--color-accent);
            color: #fff;
            border: none;
            padding: 8px 16px;
            border-radius: 6px;
            cursor: pointer;
            font-weight: 600;
            font-size: 0.85rem;
            transition: background 0.2s;
            white-space: nowrap;
        }
        .video-btn:hover {
            background: #a02030;
        }
        .video-close {
            background: #555;
        }
        .video-close:hover {
            background: #333;
        }

        /* ========== 去除页头、页脚所有链接下划线 ========== */
        .new-head a,
        .new-foot a,
        .site-footer a,
        .footer a,
        .header a,
        .head a,
        .foot a,
        .footer-policy-link,
        .icp-link,
        .gongan-link,
        .max.nav a,
        .max.nav a:hover,
        .max.nav a:active,
        .max.nav a:focus,
        .max.nav a:visited {
            text-decoration: none !important;
        }

        /* ========== 压缩页脚顶部空白 ========== */
        .site-footer,
        .footer,
        .new-foot {
            padding-top: 12px !important; /* 原为32px，大幅减小 */
            margin-top: 0 !important;
        }
        .footer-policy-section {
            margin-top: 0 !important;
            padding-top: 0 !important;
        }

        /* ========== 响应式适配 ========== */
        @media (max-width: 1024px) {
            .main-wrapper { max-width: 100%; padding: 16px 12px; }
            .panel { padding: 24px 22px; }
            .header-panel { padding: 26px 20px 16px; }
            .honor-table { min-width: 600px; }
        }

        @media (max-width: 768px) {
            .main-wrapper { padding: 12px 8px; gap: 16px; }
            .panel { padding: 18px 14px; border-radius: var(--radius-lg); }
            .header-panel { padding: 20px 14px 14px; border-radius: var(--radius-lg); }
            .source-box { padding: 14px 16px; border-radius: var(--radius-md); }
            .danmaku-card { padding: 14px 16px; }
            .battle-item { flex-direction: column; align-items: flex-start; gap: 12px; }
            .battle-badge, .battle-video-link { align-self: flex-start; }
            .intro-layout { flex-direction: column; align-items: center; text-align: center; }
            .intro-avatar-area { flex: 0 0 auto; }
            .intro-text-area .player-name { font-size: 1.3rem; }
            .header-panel .main-title { font-size: 1.7rem; }
            .table-wrapper { margin: 0 -6px; border-radius: 8px; }
            .honor-table { font-size: 0.76rem; min-width: 520px; }
            .honor-table thead th, .honor-table tbody td { padding: 10px 8px; }
            .header-panel .icon-row { font-size: 36px; }
            .video-container { width: 95%; }
            .video-container iframe { height: 300px; }
            .video-container.widescreen { width: 96%; height: 450px; }
            .video-btn { padding: 6px 12px; font-size: 0.8rem; }
        }

        @media (max-width: 480px) {
            .main-wrapper { padding: 8px 6px; gap: 12px; }
            .panel { padding: 14px 10px; }
            .header-panel { padding: 16px 10px 12px; }
            .source-box { padding: 12px 10px; font-size: 0.8rem; }
            .danmaku-card .danmaku-phrase { font-size: 0.85rem; }
            .danmaku-card .danmaku-meaning { font-size: 0.85rem; }
            .intro-avatar { width: 110px; height: 110px; }
            .header-panel .main-title { font-size: 1.4rem; letter-spacing: 2px; }
            .honor-table { min-width: 460px; }
            .video-container { width: 96%; }
            .video-container iframe { height: 220px; }
            .video-container.widescreen { width: 98%; height: 320px; }
            .video-controls { justify-content: center; }
            .video-btn { padding: 5px 10px; font-size: 0.75rem; }
            .battle-video-link { font-size: 0.78rem; }
            .site-footer,
            .footer,
            .new-foot {
                padding-top: 8px !important;
            }
        }