 /* --- 卡片布局核心 CSS --- */
        @font-face {
            font-family: 'GlowSansSC-Compressed-ExtraBold';
            src: url('./fonts/GlowSansSC-Compressed-ExtraBold.otf') format('opentype');
            font-weight: normal;
            font-style: normal;
            font-display: swap;
        }
        @font-face {
            font-family: 'SourceHanSansCN';
            src: url('./fonts/Source Han Sans CN.ttf') format('opentype');
            font-weight: normal;
            font-style: normal;
            font-display: swap;
        }
        .ranking-area {
            max-width: 1000px;
            margin: 40px auto;
            padding: 0 15px;
        }

        #rank-list-grid {
            display: grid;
            /* 1 2 / 3 4 的横向排列靠这个定义 */
            grid-template-columns: repeat(2, 1fr); 
            gap: 15px 25px;
        }

        .card-container {
            display: flex;
            height: 90px;
            background-color: #002b41;
            box-shadow: 0 4px 15px rgba(0,0,0,0.4);
            overflow: hidden;
            transition: transform 0.2s;
            border: 1px solid rgba(255,255,255,0.05);
        }

        /* 左侧数字 */
        .card-index {
            background-color: #ffffff;
            width: 85px;
            min-width: 85px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #002b41;
            font-size: 48px;
            font-weight: 900;
            font-family: 'GlowSansSC-Compressed-ExtraBold', sans-serif;
        }

        /* 右侧容器 */
        .card-content {
            flex: 1;
            padding: 10px 15px;
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .card-name {
            color: #fff;
            font-size: 24px;
            font-weight: 500;
            margin: 0;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            max-width: 280px;
        }

        .card-btn {
            color: #fff;
            font-size: 13px;
            text-decoration: underline;
            opacity: 0.8;
            margin-top: 5px;
        }

        /* 右上角日期 */
        .card-date {
            position: absolute;
            top: 10px;
            right: 15px;
            color: #8899a6;
            font-size: 10px;
            font-family: 'SourceHanSansCN', monospace;
        }

        /* 右下角分数 */
        .card-score {
            position: absolute;
            bottom: 5px;
            right: 15px;
            color: #fff;
            font-size: 36px;
            font-weight: bold;
            font-family: 'GlowSansSC-Compressed-ExtraBold', sans-serif;
        }

        /* 移动端自动转一列 */
        @media (max-width: 850px) {
            #rank-list-grid { grid-template-columns: 1fr; }
        }

        .status-msg { text-align: center; color: #8899a6; margin: 100px 0; }

        .page-subtitle {
            font-size: 1.2rem;
            opacity: 0.7;
        }

        .page-header {
            margin-bottom: 60px;
        }

        .page-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        @media (max-width: 768px) {

            .page-subtitle {
                font-size: 0.7rem;
                text-align: right;
                line-height: 1.0;

            }

            .subtitle-time::before {
                content: '\A';
                white-space: pre;
            }
            .card-container {
                height: 60px;
            }

            .card-content{
                padding: 5px 12px;
            }

            .card-index{
                width: 60px;
                min-width: 60px;
                font-size: 36px;
            }

            .card-name{
                font-size: 18px;
                margin-top: -2px;
            }

            .card-btn
            {
                font-size: 10px;
            }

            .card-date{
                margin-top: -4px;
            }

            .card-score{
                font-size: 24px;
                margin-bottom: -4px;
            }
        }