/* 结果页特有样式 */
        .lovelang-bar-card {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 12px;
            padding: 16px;
            margin-bottom: 12px;
            border: 1px solid var(--glass-border);
        }

        .lang-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 8px;
            font-size: 14px;
        }

        .lang-name {
            font-weight: bold;
            color: var(--text-primary);
        }

        .lang-score {
            color: var(--primary-color);
            font-weight: bold;
        }

        .lang-progress-bg {
            width: 100%;
            height: 8px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 4px;
            overflow: hidden;
        }

        .lang-progress-fill {
            height: 100%;
            background: var(--primary-color);
            transition: width 1s ease-out;
        }
