       /* ===== 佛力等级系统样式 ===== */
        .fo-li-page {
            background: linear-gradient(135deg, #1a0a00 0%, #3d1f00 50%, #5a2d0c 100%);
            min-height: 100vh;
            padding: 20px 0 40px;
        }

        /* 佛力主卡片 */
        .fo-li-main {
            background: linear-gradient(135deg, rgba(255,215,0,0.1), rgba(255,140,0,0.1));
            border-radius: 24px;
            padding: 40px;
            margin-bottom: 30px;
            border: 2px solid rgba(255,215,0,0.3);
            box-shadow: 0 0 60px rgba(255,165,0,0.2);
            position: relative;
            overflow: hidden;
        }
        .fo-li-main::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,215,0,0.05) 0%, transparent 50%);
            animation: rotate 20s linear infinite;
        }
        @keyframes rotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        /* 用户头像区域 */
        .user-section {
            text-align: center;
            position: relative;
            z-index: 1;
            margin-bottom: 30px;
        }
        .user-avatar-large {
            width: 120px;
            height: 120px;
            background: linear-gradient(135deg, #FFD700, #ff8c00);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 50px;
            color: #fff;
            border: 4px solid rgba(255,215,0,0.5);
            box-shadow: 0 0 30px rgba(255,165,0,0.4);
            position: relative;
        }
        .user-avatar-large::after {
            content: '';
            position: absolute;
            top: -10px; left: -10px; right: -10px; bottom: -10px;
            border-radius: 50%;
            border: 2px solid rgba(255,215,0,0.3);
            animation: pulse 2s ease-in-out infinite;
        }
        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 1; }
            50% { transform: scale(1.05); opacity: 0.7; }
        }
        .user-name-large {
            font-size: 24px;
            color: #FFD700;
            font-weight: 700;
            margin-bottom: 10px;
        }
        .user-rank {
            display: inline-block;
            padding: 6px 20px;
            background: rgba(255,215,0,0.2);
            border-radius: 20px;
            color: #FFD700;
            font-size: 14px;
            border: 1px solid rgba(255,215,0,0.3);
        }

        /* 佛力等级展示 */
        .level-display {
            text-align: center;
            position: relative;
            z-index: 1;
            margin-bottom: 30px;
        }
        .level-number {
            font-size: 72px;
            font-weight: 900;
            color: #FFD700;
            text-shadow: 0 0 30px rgba(255,165,0,0.5);
            line-height: 1;
            margin-bottom: 10px;
        }
        .level-name {
            font-size: 28px;
            color: #fff;
            font-weight: 700;
            margin-bottom: 8px;
        }
        .level-title {
            font-size: 16px;
            color: rgba(255,255,255,0.7);
            margin-bottom: 20px;
        }

        /* 进度条 */
        .progress-section {
            max-width: 500px;
            margin: 0 auto 20px;
        }
        .progress-bar {
            height: 12px;
            background: rgba(255,255,255,0.1);
            border-radius: 6px;
            overflow: hidden;
            margin-bottom: 10px;
        }
        .progress-fill {
            height: 100%;
            background: linear-gradient(90deg, #FFD700, #ff8c00);
            border-radius: 6px;
            transition: width 0.5s ease;
            box-shadow: 0 0 10px rgba(255,165,0,0.5);
        }
        .progress-text {
            display: flex;
            justify-content: space-between;
            color: rgba(255,255,255,0.6);
            font-size: 13px;
        }
        .progress-text span {
            color: #FFD700;
            font-weight: 600;
        }

        /* 祝福语文本 */
        .blessing-box {
            background: rgba(255,255,255,0.05);
            border-radius: 16px;
            padding: 20px;
            text-align: center;
            border: 1px solid rgba(255,215,0,0.2);
            position: relative;
            z-index: 1;
        }
        .blessing-box i {
            color: #FFD700;
            font-size: 24px;
            margin-bottom: 10px;
        }
        .blessing-text {
            color: rgba(255,255,255,0.8);
            font-size: 15px;
            line-height: 1.8;
            font-style: italic;
        }

        /* 统计卡片 */
        .stats-row {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin-bottom: 30px;
        }
        .stat-card {
            background: rgba(255,255,255,0.05);
            border-radius: 16px;
            padding: 25px;
            text-align: center;
            border: 1px solid rgba(255,215,0,0.15);
            transition: all 0.3s;
        }
        .stat-card:hover {
            background: rgba(255,255,255,0.08);
            transform: translateY(-5px);
            border-color: rgba(255,215,0,0.4);
        }
        .stat-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, rgba(255,215,0,0.2), rgba(255,140,0,0.2));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px;
            color: #FFD700;
            font-size: 22px;
            border: 1px solid rgba(255,215,0,0.3);
        }
        .stat-num {
            font-size: 28px;
            font-weight: 700;
            color: #FFD700;
            margin-bottom: 5px;
        }
        .stat-label {
            font-size: 14px;
            color: rgba(255,255,255,0.6);
        }

        /* 等级体系 */
        .level-system {
            background: rgba(255,255,255,0.05);
            border-radius: 20px;
            padding: 30px;
            margin-bottom: 30px;
            border: 1px solid rgba(255,215,0,0.15);
        }
        .section-title {
            font-size: 20px;
            color: #FFD700;
            margin-bottom: 25px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .section-title i {
            font-size: 24px;
        }
        .level-list {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
        }
        .level-item {
            background: rgba(255,255,255,0.03);
            border-radius: 12px;
            padding: 15px;
            border: 1px solid rgba(255,255,255,0.05);
            transition: all 0.3s;
            position: relative;
        }
        .level-item.active {
            background: rgba(255,215,0,0.1);
            border-color: rgba(255,215,0,0.4);
        }
        .level-item.active::before {
            content: '当前';
            position: absolute;
            top: -8px;
            right: 10px;
            background: linear-gradient(135deg, #FFD700, #ff8c00);
            color: #5a3a1a;
            padding: 2px 10px;
            border-radius: 10px;
            font-size: 11px;
            font-weight: 600;
        }
        .level-item:hover {
            background: rgba(255,255,255,0.08);
        }
        .level-item-num {
            font-size: 14px;
            color: #FFD700;
            font-weight: 600;
            margin-bottom: 5px;
        }
        .level-item-name {
            font-size: 16px;
            color: #fff;
            font-weight: 600;
            margin-bottom: 3px;
        }
        .level-item-title {
            font-size: 13px;
            color: rgba(255,255,255,0.5);
        }

        /* 排行榜 */
        .rank-section {
            background: rgba(255,255,255,0.05);
            border-radius: 20px;
            padding: 30px;
            margin-bottom: 30px;
            border: 1px solid rgba(255,215,0,0.15);
        }
        .rank-list {
            max-height: 500px;
            overflow-y: auto;
        }
        .rank-item {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 12px 0;
            border-bottom: 1px solid rgba(255,255,255,0.05);
            transition: all 0.3s;
        }
        .rank-item:hover {
            background: rgba(255,255,255,0.03);
            margin: 0 -15px;
            padding: 12px 15px;
            border-radius: 10px;
        }
        .rank-item:last-child {
            border-bottom: none;
        }
        .rank-num {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 14px;
            flex-shrink: 0;
        }
        .rank-num.top1 {
            background: linear-gradient(135deg, #FFD700, #ff8c00);
            color: #5a3a1a;
        }
        .rank-num.top2 {
            background: linear-gradient(135deg, #c0c0c0, #e0e0e0);
            color: #5a3a1a;
        }
        .rank-num.top3 {
            background: linear-gradient(135deg, #cd7f32, #daa520);
            color: #fff;
        }
        .rank-num.normal {
            background: rgba(255,255,255,0.1);
            color: rgba(255,255,255,0.6);
        }
        .rank-avatar {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #FFD700, #ff8c00);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 16px;
            flex-shrink: 0;
        }
        .rank-info {
            flex: 1;
        }
        .rank-name {
            font-size: 15px;
            color: #fff;
            font-weight: 500;
            margin-bottom: 3px;
        }
        .rank-level {
            font-size: 12px;
            color: rgba(255,255,255,0.5);
        }
        .rank-score {
            font-size: 18px;
            color: #FFD700;
            font-weight: 700;
            flex-shrink: 0;
        }

        /* 动态 */
        .activity-section {
            background: rgba(255,255,255,0.05);
            border-radius: 20px;
            padding: 30px;
            border: 1px solid rgba(255,215,0,0.15);
        }
        .activity-list {
            max-height: 400px;
            overflow-y: auto;
        }
        .activity-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 10px 0;
            border-bottom: 1px solid rgba(255,255,255,0.05);
        }
        .activity-item:last-child {
            border-bottom: none;
        }
        .activity-icon {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            flex-shrink: 0;
        }
        .activity-icon.lifo {
            background: rgba(255,107,107,0.2);
            color: #ff6b6b;
        }
        .activity-icon.xuyuan {
            background: rgba(255,215,0,0.2);
            color: #FFD700;
        }
        .activity-icon.juanzeng {
            background: rgba(255,105,180,0.2);
            color: #FF69B4;
        }
        .activity-content {
            flex: 1;
        }
        .activity-text {
            font-size: 14px;
            color: rgba(255,255,255,0.8);
            line-height: 1.5;
        }
        .activity-text strong {
            color: #FFD700;
        }
        .activity-text a {
            color: #FFD700;
            text-decoration: none;
        }
        .activity-text a:hover {
            text-decoration: underline;
        }
        .activity-time {
            font-size: 12px;
            color: rgba(255,255,255,0.4);
            flex-shrink: 0;
        }

        /* 操作按钮 */
        .action-section {
            display: flex;
            gap: 15px;
            justify-content: center;
            margin-top: 30px;
        }
        .btn-fo {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 14px 35px;
            border-radius: 30px;
            font-size: 16px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.4s;
            cursor: pointer;
            border: none;
        }
        .btn-fo-primary {
            background: linear-gradient(135deg, #FFD700, #ff8c00);
            color: #5a3a1a;
            box-shadow: 0 4px 20px rgba(255, 165, 0, 0.4);
        }
        .btn-fo-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(255, 165, 0, 0.6);
        }
        .btn-fo-secondary {
            background: rgba(255,255,255,0.1);
            color: #FFD700;
            border: 2px solid rgba(255,215,0,0.4);
        }
        .btn-fo-secondary:hover {
            background: rgba(255,215,0,0.1);
            border-color: #FFD700;
        }

        /* 响应式 */
        @media (max-width: 992px) {
            .stats-row { grid-template-columns: repeat(2, 1fr); }
            .level-list { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 768px) {
            .fo-li-main { padding: 25px; }
            .level-number { font-size: 56px; }
            .stats-row { grid-template-columns: repeat(2, 1fr); gap: 10px; }
            .stat-card { padding: 15px; }
            .level-list { grid-template-columns: 1fr; }
            .action-section { flex-direction: column; }
            .btn-fo { width: 100%; justify-content: center; }
        }