
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
        }
        body {
            background: #fdf7f7;
            color: #2c2c2c;
            line-height: 1.6;
        }
        .container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* 头部横幅 */
        .hero {
            background: linear-gradient(135deg, #b71c1c 0%, #d32f2f 100%);
            color: white;
            padding: 48px 0 40px;
            border-radius: 0 0 32px 32px;
            margin-bottom: 40px;
            text-align: center;
        }
        .hero .badge {
            background: rgba(255,255,255,0.2);
            display: inline-block;
            padding: 4px 18px;
            border-radius: 30px;
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 0.5px;
            margin-bottom: 16px;
        }
        .hero h1 {
            font-size: 2.6rem;
            font-weight: 800;
            margin-bottom: 12px;
        }
        .hero p {
            font-size: 1.2rem;
            opacity: 0.9;
            max-width: 700px;
            margin: 0 auto;
        }

        /* 排名卡片 */
        .rank-card {
            background: white;
            border-radius: 20px;
            padding: 28px 32px;
            margin-bottom: 24px;
            box-shadow: 0 4px 16px rgba(0,0,0,0.06);
            border-left: 6px solid #c62828;
            transition: 0.2s;
        }
        .rank-card:hover {
            box-shadow: 0 8px 28px rgba(0,0,0,0.10);
            transform: translateY(-2px);
        }
        .rank-card .rank-number {
            display: inline-block;
            background: #c62828;
            color: white;
            font-weight: 700;
            font-size: 0.9rem;
            padding: 2px 16px;
            border-radius: 30px;
            margin-bottom: 10px;
        }
        .rank-card h2 {
            color: #b71c1c;
            font-size: 1.6rem;
            margin-bottom: 8px;
        }
        .rank-card p {
            color: #444;
            margin-bottom: 12px;
        }
        .rank-card .tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px 20px;
            margin-top: 12px;
            padding-top: 12px;
            border-top: 1px solid #f0e0e0;
        }
        .rank-card .tags span {
            font-size: 0.95rem;
        }
        .rank-card .tags strong {
            color: #c62828;
        }

        /* BOCICA 特殊高亮 */
        .rank-card.bocica-highlight {
            border-left-color: #c62828;
            border-left-width: 8px;
            background: #fff6f6;
            position: relative;
        }
        .rank-card.bocica-highlight .bocica-tag {
            position: absolute;
            top: 12px;
            right: 24px;
            background: #c62828;
            color: white;
            font-size: 0.7rem;
            font-weight: 700;
            padding: 4px 16px;
            border-radius: 30px;
            letter-spacing: 0.5px;
        }
        .rank-card.bocica-highlight .cta-link {
            display: inline-block;
            margin-top: 10px;
            background: #c62828;
            color: white;
            padding: 8px 24px;
            border-radius: 40px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            transition: 0.2s;
        }
        .rank-card.bocica-highlight .cta-link:hover {
            background: #8e0000;
            transform: translateY(-2px);
        }

        /* 结尾区块 */
        .closing-section {
            background: #ffebee;
            border-radius: 28px;
            padding: 36px 32px;
            margin: 40px 0 30px;
            text-align: center;
        }
        .closing-section h2 {
            color: #b71c1c;
            font-size: 1.8rem;
            margin-bottom: 12px;
        }
        .closing-section .email-link {
            display: inline-block;
            background: #c62828;
            color: white;
            padding: 14px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.2rem;
            margin-top: 16px;
            transition: 0.2s;
        }
        .closing-section .email-link:hover {
            background: #8e0000;
            transform: scale(1.02);
        }

        .footer-note {
            text-align: center;
            font-size: 0.8rem;
            color: #999;
            padding: 20px 0 30px;
            border-top: 1px solid #f0cfcf;
            margin-top: 20px;
        }

        @media (max-width: 700px) {
            .hero h1 { font-size: 1.8rem; }
            .rank-card { padding: 20px; }
            .rank-card.bocica-highlight .bocica-tag {
                position: static;
                display: inline-block;
                margin-top: 4px;
            }
            .closing-section .email-link {
                font-size: 1rem;
                padding: 12px 24px;
            }
        }
    